2008 Nov 17 6:31 AM
Hi,
As we move report program code to the internal table thru READ REPORT statement,
How to move the Module Pool program code to the internal table?
Regards,
K.Tharani.
2008 Nov 17 6:50 AM
REPORT ZSRK_056 .
DATA : BEGIN OF ITAB OCCURS 0,
TEXT(255),
END OF ITAB.
READ REPORT 'ZSRK_055' INTO ITAB.
LOOP AT ITAB.
WRITE : / ITAB-TEXT.
ENDLOOP.
Here ZSRK_055 is a module pool program
Hi,
As we move report program code to the internal table thru READ REPORT statement,
How to move the Module Pool program code to the internal table?
Regards,
K.Tharani.
2008 Nov 17 6:50 AM
REPORT ZSRK_056 .
DATA : BEGIN OF ITAB OCCURS 0,
TEXT(255),
END OF ITAB.
READ REPORT 'ZSRK_055' INTO ITAB.
LOOP AT ITAB.
WRITE : / ITAB-TEXT.
ENDLOOP.
Here ZSRK_055 is a module pool program
2008 Nov 17 7:07 AM
Hi..
I have tried it using READ REPORT but,
Module Pool Program is not read into internal table thru READ REPORT Statement..
2008 Nov 17 6:56 AM
| User | Count |
|---|---|
| 6 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 |