‎2006 Oct 24 7:51 AM
Hi everybody,
in which table can I found the abap sourcecode? I need this information for writing an abap parser. The parser should read some special information out of the source code.
Or is there something else that already exists?
Thanks in advance
‎2006 Oct 24 8:10 AM
Hi,
there is no simple "table" that contain the source code. You will need to use special function of SAP to retrieve all the information of the abap code.
Have a look in the transaction ABAPDOCU, in ABAP -> special techniq -> dynamic creation ..
Fred
‎2006 Oct 24 8:10 AM
Hi
U can use statament READ REPORT to load all abap code of a program.
Max
‎2006 Oct 24 10:00 AM
The report information is stored in table TRDIR and you can use the command READ REPORT zprog INTO itab, to read the report content(source code)into table itab.