‎2006 May 01 10:43 PM
How to send values in SELECT-OPTION fields to calling program using submit.
‎2006 May 01 10:50 PM
‎2006 May 01 10:57 PM
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.
‎2006 May 01 11:00 PM
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.
‎2006 May 01 11:10 PM
‎2009 Apr 28 7:40 PM