Video 16: Data Dictionary - TMG Events

preview_player
Показать описание
Explained the TMG concept and its events.
Рекомендации по теме
Комментарии
Автор

Hi Ganesh, actually i'm also facing this LAYOUT issue for 6 months. I'm not able to practise module pool programming because LAYOUT is the main thing for MPP right. It will be very much helpful for me if you try to sort it and guide me to overcome this, please help me on this one.

sumanthinavolu
Автор

Please make some video on ABAP on Cloud and RAP. Your Odata tutorial helps me a lot to learn and work...

biswajitnag
Автор

Thank you, this is so helpfull. I have a question please. I have this code and I want to store the new randomly generated data in some table to be able to display this new data ( table ) in an alv report. I have to select the new data first to display them, and when I write select p_fieldname random_value FROM, it have to be some table where I select data from How to make this, can you help me please? FORM generate_random_data USING p_fieldname TYPE DFIES-FIELDNAME p_datatype TYPE DFIES-DATATYPE p_records TYPE I. DATA: random_value TYPE STRING, counter TYPE I. LOOP AT INTTAB WHERE FIELDNAME = p_fieldname AND DATATYPE = p_datatype. DO p_records TIMES. " Create unique values based on field name and counter counter = counter + 1. random_value = |{ p_fieldname }_{ counter }|. WRITE: / p_fieldname, random_value. ENDDO. ENDLOOP. ENDFORM.

xxcc
Автор

Hello sir could you please make videos on sap clouds?

GauravSingh-lzmb
Автор

Hi Ganesh,
TMG itself is a very big and complex and deep topic. Can you please some more videso highlighting on TMG handling some complex requirement. It will really be very helpful for all of us.

pushpajha