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 without displaying called program's output

Former Member
0 Likes
14,136

Dear Experts,

I Have 2 programs

1. Calling program 2. Called Program

My called program has a ALV output......but when I call from my first program I want to avoid the output display and just need to get the data (itab) from Pgm2.

How can I achieve this?

Thanks in advance.

Regards

Sathya

1 ACCEPTED SOLUTION
Read only

Former Member
5,795

Hi,

Please make us of

SUBMIT program name

EXPORTING LIST TO MEMORY

AND RETURN.

After that make use of FM LIST_FROM_MEMORY to get the list details in an internal table.

Regards,

Ankur Parab

5 REPLIES 5
Read only

Former Member
5,796

Hi,

Please make us of

SUBMIT program name

EXPORTING LIST TO MEMORY

AND RETURN.

After that make use of FM LIST_FROM_MEMORY to get the list details in an internal table.

Regards,

Ankur Parab

Read only

Former Member
0 Likes
5,795

Hi,

SUBMIT progname EXPORTING LIST TO MEMORY AND RETURN.

Regards

Sumana

Read only

naveen_kumar116
Active Participant
0 Likes
5,795

Hi,

Please Try with EXPORTING LIST TO MEMORY

OR,

If the Called Program is Z.....Then use the Parameter some Flag and dont display in selection screen....

While SUBMIT the program from calling program Pass X to Flag so that you can Restric the ALV output when FLAG = 'X'.

Hope this will help you,

Cheers,

Naveen.

Read only

0 Likes
5,795

acutally the output ALV we got is from the call screen 9000,

any way we need only the final output internal table of the screen 9000.

what can we do

please help me out in this regard.

thanks and regards

sathya

Read only

0 Likes
5,795

Its too old but did you find the exact solution for this?