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

getting the selections in the submitted program

Former Member
0 Likes
540

hi all abapers,

i was doing a program where i submitting a report to the in another report program by submit statement .

but i want the pernrs which user has selected on that other programs selection screen how can i get those se

lection in my main program.

its like following.

report zyx.

submit /zyyyyy and return.

here i want the pernrs which user has entered in the selection screen of /zyyyyy.

how to get those .

please help in this.

thanks.

hi all abapers,

i was doing a program where i submitting a report to the in another report program by submit statement .

but i want the pernrs which user has selected on that other programs selection screen how can i get those se

lection in my main program.

its like following.

report zyx.

submit /zyyyyy and return.

here i want the pernrs which user has entered in the selection screen of /zyyyyy.

how to get those .

please help in this.

thanks.

3 REPLIES 3
Read only

gautam_totekar
Active Participant
0 Likes
511

Declare parameter ID .

set parameter ID statement in the called program..

Use Get parmater ID in the Main program..

You can also set memory ID if necessary. I feel parameter ID would be enough.

Read only

Former Member
0 Likes
511

submit report2 with p_test eq 's_text '

and return

-> p_test is a selection scr parameter in report2 passing the selection screen parameter of report 1 to this.

Read only

Former Member
0 Likes
511

thx friends.i used use selection set of program addition of submit statement.