Application Development 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: 

SUBMIT Keyword

Former Member
0 Kudos

How to send values in SELECT-OPTION fields to calling program using submit.

5 REPLIES 5

Former Member
0 Kudos

For submit, use IN for select options like = for parameters.

Former Member
0 Kudos

Hi,

Check this syntax,

Report <program1>

select-options : sel1 for ...,

sel2 for ....

SUBMIT <program1> WITH sel1 IN r_sel1

WITH sel2 IN r_sel2.

You should define r_sel1 and r_sel2 with the range of values that needs to be passed to the fields on selection screen.

0 Kudos

Hi,

I missed few line by mistake. Here is the complete example.

Check this syntax,

Report <program1>

select-options : sel1 for ...,

sel2 for ....

Report <program2>.

SUBMIT <program1> WITH sel1 IN r_sel1

WITH sel2 IN r_sel2.

You should define r_sel1 and r_sel2 with the range of values that needs to be passed to the fields on selection screen.

0 Kudos

Hi,

It is working fine, Thanks a lot.

Former Member
0 Kudos

resolved