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

setting ranges as default values for a selection screen value

Former Member
0 Likes
2,541

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

1 ACCEPTED SOLUTION
Read only

Former Member
0 Likes
1,030

>

> 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.

1 REPLY 1
Read only

Former Member
0 Likes
1,031

>

> 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.