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

Avoid ALV output screen in submit statement

Former Member
2,400

hello,

I have created one FM.in that FM i am calling one zreport using submit statement as i want to access that zreport's internal table.so i have done that using IMPORT and EXPORT statement and i am getting values in my FM.

but my problem is when i execute that FM it stops and display the ALV output of zreport and then when i press back button it gives me FM's output.i dont want that ALV output.can anybody help me that how to omit this output screen?

regards

soniya s.

4 REPLIES 4
Read only

Former Member
1,285

Hi,

Use option EXPORTING LIST TO MEMORY with statement SUBMIT.

Issa

Read only

Former Member
1,285

SUBMIT progname EXPORTING LIST TO MEMORY AND RETURN.

Read only

Former Member
0 Likes
1,285

Hi,

Use option EXPORTING LIST TO MEMORY with statement SUBMIT.

Regards,

Nikhil

Edited by: Nikhil Kayal on May 13, 2009 1:32 PM

Read only

Former Member
0 Likes
1,285

i used if sy-tocode = 'program's tcode' then only alv display or else no.its working fine.

thanks.