‎2008 Jul 18 5:57 AM
hi all....
i have pbm with submit....
pbm is:
one pgm displays report using some write statements.
whats the pbm is that
i want to diaplay that report in separate pgm using submit.....
is it possible while using submit?
‎2008 Jul 18 5:59 AM
Hi
Yes it is possible to display the result of one report in another report by using submit statement all you have to do is use the function modules
LIST_FROM_MEMORY
WRITE_LIST
DISPLAY_LIST
Regards
Pavan
‎2008 Jul 18 6:09 AM
Hello Mohan,
Instead of displaying a list on the screen, you can store it in ABAP memory using the EXPORTING LIST TO MEMORY addition in the SUBMIT statement:
SUBMIT... AND RETURN EXPORTING LIST TO MEMORY.
This statement stores the list in ABAP memory, allowing the calling program to access it once the called program has finished. You must use the AND RETURN addition in this case. You cannot use the additions EXPORTING LIST TO MEMORY and TO SAP-SPOOL together.
The function group SLST provides function modules for accessing the saved list, including for example:
LIST_FROM_MEMORY
WRITE_LIST
DISPLAY_LIST
Hope you find it useful
Regards
Indu.
‎2008 Jul 18 6:25 AM
Hi,
Check this link,it may help you,
http://www.sapdevelopment.co.uk/reporting/rep_submit.htm
Regards,
Sujit
‎2008 Jul 18 6:34 AM
Hi,
its possible to decalre the submit statement.
SUBMIT 'PROGRAM NAME' VIA SELECTION-SCREEN.
thanks
sriram.