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

Reg:Submit statement Return Internal Table

karthik_snair
Participant
0 Likes
2,176

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

2 REPLIES 2
Read only

former_member202771
Contributor
0 Likes
591

Hi karthik,

SUBMIT .... AND RETURN EXPORTING LIST TO MEMORY.

Then use FM LIST_FROM_MEMORY.


Thanks,

Anil

Read only

Former Member
0 Likes
591

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