‎2006 Jul 17 12:25 PM
when I submitted the report RM06BA00 in other program using
SUBMIT (REPORT)
USING SELECTION-SET VARIANT
EXPORTING LIST TO MEMORY AND RETURN.
It's not coming to program from where I called...it's displaying the report
so when I used FM LIST_FROM_MEMORY for further process like emailing this report...I am not getting any data.
Could you pls. let me know why this is displaying report instead of coming back to the program from where it's submitted?
Reply ASAP.
Regards,
Sreedevi P
‎2006 Jul 17 12:31 PM
Becuase you have used the RETURN clause its displaying the report and then when you exit out of it its coming to your program.
If you want to display the selection screen, you can use the clause VIA SELECTION SCREEN.
Regards,
Ravi
Note : Please mark all the helpful answers
‎2006 Jul 17 12:32 PM
Hi,
Try this
SUBMIT (REPORT)
via selection-screen
USING SELECTION-SET VARIANT
EXPORTING LIST TO MEMORY AND RETURN.
by,
krithika
‎2006 Jul 17 12:33 PM
Hi,
Refer the following link that has more examples on how to use SUBMIT report,
http://www.sapdevelopment.co.uk/reporting/rep_submit.htm
Hope this helps,
Rgds,
‎2006 Jul 17 12:33 PM
‎2006 Jul 17 12:38 PM
HI
check out the report which you are calling?
check the GUI status. did you assign ENTER to any GUI status.
regards
kishore
‎2006 Jul 17 1:06 PM
i guess ur problem is that u submitted report2 from report1 and but u are not able to get the values back in report1.
create a Z copy of RM06BA00 and see which is the final internal table used to display the report data. Export that internal table to a memory id and in the calling program import the internal table from the memory id.
rgds,
Dinu..