‎2014 Sep 02 1:08 PM
Hi Team,
I have a query to return the internal table from the called program via SUBMIT statement to the calling statement ??
Example : Thing is that consider reports A and B , Report B is getting called from report A where in B we have one internal table full of data that i need to pull to report A and there i need to process it.
How can i achieve this?
Please let me know the possible ways.
--
Karthik.S
‎2014 Sep 02 1:56 PM
Hi karthik,
SUBMIT .... AND RETURN EXPORTING LIST TO MEMORY.
Then use FM LIST_FROM_MEMORY.
Thanks,
Anil
‎2014 Sep 02 2:05 PM
Hi
Probably the easier solution is to use IMPORT/EXPORT statament, but it'll mean to change the calling and called report.
You can export the data of an internal table of the called report in memory and so you can export them from memory by calling report
Max