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

module pool

Former Member
0 Likes
398

hI ALL,

USING SUBMIT IS THERE ANY WAY TO PASS tHE I/O FIELDS (NOT SELECTION SCREEN) TO A REPORT PROGRAM.sAMPLE CODES WILL BE PREFERABLE.

3 REPLIES 3
Read only

Former Member
0 Likes
370

By using SET PARAMETER & GET PARAMETERS also its possible.

but for that field you have mention that parameter id.

before calling you have to use SET Paramter id... to place the value in the memory.

automatically that value will appear in that field of calling program.

Regards

srikanth

Read only

Former Member
0 Likes
370

If you want to pass data from one pgm to another without using selection-screen than use EXPORT and IMPORT.

Calling Pgm.

EXPORT ITAB TO MEMORY.

SUBMIT ZXYZ AND RETURN.

Called Pgm.

IMPORT ITAB FROM MEMORY.

--Please note to define ITAB in both pgms.

--Variation is there for Export/Import to be sending it to a specificy memory id.

Regards

Anurag

Read only

Former Member
0 Likes
370

Hi,

Check the sample in the thread.

Regards

vijay