Hi Experts,
I would like to download my source coding of Web Dynpro Methods to a local file. But I don't know how to do that. The download to a .txt-file is not the problem. I need help with a step before. Where lies the source code of Web Dynpro ABAP methods? For "normal" ABAP Objects class-method I would use the following code to get it:
DATA: itab_trdir TYPE TABLE OF trdir. DATA: wa_trdir LIKE LINE OF itab_trdir. SELECT * FROM trdir INTO TABLE itab_trdir. LOOP AT itab_trdir INTO wa_trdir. READ REPORT wa_trdir-name INTO itab_source. ENDLOOP.
But in the database table TRDIR there are not the Web Dynpro methods included I think! I would be enough for me to know, how to get filled an internal table like itab_source above with the coding. But can I do that similar with READ REPORT? And which database table have I to use? I tried to use the table wdy_ctlr_compo (methods/events of a web dynpro controller). I wanted to do a READ REPORT with the method names of this table. But that wasn't successful.
Can someone help? I do not want to use SAP Link.
Thanks a lot.
Best regards,
Ingmar