‎2009 Jun 04 12:17 PM
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
‎2009 Jun 04 12:19 PM
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
‎2009 Jun 04 12:19 PM
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
‎2009 Jun 04 12:19 PM
Hi,
SUBMIT progname EXPORTING LIST TO MEMORY AND RETURN.
Regards
Sumana
‎2009 Jun 04 12:21 PM
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.
‎2009 Jun 04 3:44 PM
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
‎2022 Jan 03 11:19 AM