Application Development and Automation Discussions
Join the discussions or start your own on all things application development, including tools and APIs, programming models, and keeping your skills sharp.
cancel
Showing results for 
Search instead for 
Did you mean: 
Read only

SUBMIT report probs

Former Member
0 Likes
901

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

6 REPLIES 6
Read only

Former Member
0 Likes
844

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

Read only

Former Member
0 Likes
844

Hi,

Try this

SUBMIT (REPORT)

via selection-screen

USING SELECTION-SET VARIANT

EXPORTING LIST TO MEMORY AND RETURN.

by,

krithika

Read only

Former Member
0 Likes
844

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,

Read only

Former Member
0 Likes
844

Hi Sreedevi,

Refer to the codes in this link.

Regards,

Arun Sambargi.

Read only

Former Member
0 Likes
844

HI

check out the report which you are calling?

check the GUI status. did you assign ENTER to any GUI status.

regards

kishore

Read only

Former Member
0 Likes
844

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..