2008 Jun 24 11:02 PM
Hi Experts,
Which table has the source code of Module pool programs and Function Modules?
Thanks in advance.
2008 Jun 24 11:32 PM
Hi Hari,
Use READ REPORT <program_name> statment to get source code as follow:
"// Internal Table
DATA t_source TYPE TABLE OF string.
START-OF-SELECTION.
"// Read Source Code of program / Function Group / Include ....
READ REPORT 'SAPLSALV' INTO t_source.
Greetings,
Marcelo Ramos
2008 Jun 24 11:32 PM
Hi Hari,
Use READ REPORT <program_name> statment to get source code as follow:
"// Internal Table
DATA t_source TYPE TABLE OF string.
START-OF-SELECTION.
"// Read Source Code of program / Function Group / Include ....
READ REPORT 'SAPLSALV' INTO t_source.
Greetings,
Marcelo Ramos
2008 Jun 26 2:43 PM