Hi Mohan,
I think it is possible to pass the data for the (Parameters, Dropdowns, Check boxes)..
*--- Declarations---*
DATA : it_TAB TYPE RANGE OF selopt,
wa_tab TYPE selopt.
*--- Populating Data ---*
wa_tab-SIGN = 'I'.
wa_tab-OPTION = 'I'.
wa_tab-LOW = '60003525'.
APPEND wa_tab TO it_TAB.
*--- Calling Target Program---*
SUBMIT ppio_entry WITH P_AUTYP = '99' " For drop down lists
WITH S_AUFNR IN it_TAB[] " Select-options
WITH p_msvdis = 'X'. " For check boxs
In Debugging i can see these values are being passing to the target program "ppio_entry"
All the fields of selections screen can be find in the screen 1000.
I think there might be miss-match while passing to the target program.
Thanks and Regards,
Girish Kumar V
