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

SUBMIT Keyword

Former Member
0 Likes
659

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

5 REPLIES 5
Read only

Former Member
0 Likes
620

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

Read only

Former Member
0 Likes
620

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.

Read only

0 Likes
620

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.

Read only

0 Likes
620

Hi,

It is working fine, Thanks a lot.

Read only

Former Member
0 Likes
620

resolved