First i have created a report program.
Now i m changing it to module pool program.
I know that, first when we create a module pool program it asks for topinclude for global declaration.
Now i want to minimize the coding using top include. Since i m changing the type of program from report to module in middle is it possible for me to create top include. If yes means how to create it.
Thanks in advance.
Dear Kalpana,
If the module pool program you'll be creating for e.g. is SAPM_KALP.
Then the Top Include Program for the above Pgm. will be --> SAPM_KALPTOP
The Module Pool Pgm. should always start with <b>SAPM</b>
Regards,
Abir
************************************
Don't forget to award Points *
Hi,
You can create a top include in a report program also...
Also you can make a report program a module program..
Example
-
REPORT ZREPORT1.
INCLUDE ZREPORT1_TOP. "TOP INCLUDE..
INCLUDE ZREPOR11_PAI. " PAI MODULES.
START-OF-SELECTION.
CALL THE FIRST SCREEN ...
CALL SCREEN '0100'.
Thanks,
Naren
Add a comment