‎2010 Nov 10 9:47 AM
i have a selection screen parameter s_yywrpc. For this s_yywrpc i have to set some range of values as default values.
Can u tell me how can i do that .
select-options:s_yywrpc for vbak-yywrpc.
for this parameter i have to set MSPG, MSP, FMP, FMPG, CFEG, FCFG, CMSG, CMSP as the default values in selection screen
can anybody tell me how can i code this
thanks
pavan
‎2010 Nov 10 9:55 AM
>
> i have a selection screen parameter s_yywrpc. For this s_yywrpc i have to set some range of values as default values.
> Can u tell me how can i do that .
>
> select-options:s_yywrpc for vbak-yywrpc.
> for this parameter i have to set MSPG, MSP, FMP, FMPG, CFEG, FCFG, CMSG, CMSP as the default values in selection screen
>
> can anybody tell me how can i code this
>
>
> thanks
> pavan
in the intialization event.
INTIALIZATION.
s_yywrpc-low = 'MSPG'.
s_yywrpc-sign = 'I'.
s_yywrpc-option = 'EQ'.
append s_yywrpc.
s_yywrpc-low = 'MSP'.
append s_yywrpc.
do it all for the values.
‎2010 Nov 10 9:55 AM
>
> i have a selection screen parameter s_yywrpc. For this s_yywrpc i have to set some range of values as default values.
> Can u tell me how can i do that .
>
> select-options:s_yywrpc for vbak-yywrpc.
> for this parameter i have to set MSPG, MSP, FMP, FMPG, CFEG, FCFG, CMSG, CMSP as the default values in selection screen
>
> can anybody tell me how can i code this
>
>
> thanks
> pavan
in the intialization event.
INTIALIZATION.
s_yywrpc-low = 'MSPG'.
s_yywrpc-sign = 'I'.
s_yywrpc-option = 'EQ'.
append s_yywrpc.
s_yywrpc-low = 'MSP'.
append s_yywrpc.
do it all for the values.