2008 Feb 20 11:59 AM
Hi guru's,
Can you please tell me the Database table which stores all the reports source code.
I mean table should contain all the lines of code in a report .
thanks & regards,
Hemanth
2008 Feb 20 12:24 PM
Hi guru's,
Can you please tell me the Database table which stores all the reports source code.
I mean table should contain all the lines of code in a report .
thanks & regards,
Hemanth
2008 Feb 20 12:21 PM
Hi Hemanth,
I am not sure of the exact table name where the program source code are stored.
But you can get the code by using the READ REPORT statement.
Try the below code:
DATA prog TYPE c LENGTH 30.
DATA itab TYPE TABLE OF string.
prog = 'YGBTEST06'. "Put in your program name
READ REPORT prog INTO itab.
Reward points if helpful.
Thanks,
Balaji
2008 Feb 20 12:24 PM