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

select-option with input greyed

Former Member
0 Likes
795

Hi ,

I have to create the select option with default values and that field must be greyed i.e. user should not enter any values other than default values.

For this any option in select-option i.e.to gery the field any option without coding.

Thanks and regards,

shyla

Hi ,

I have to create the select option with default values and that field must be greyed i.e. user should not enter any values other than default values.

For this any option in select-option i.e.to gery the field any option without coding.

Thanks and regards,

shyla

5 REPLIES 5
Read only

Former Member
0 Likes
776

Hi,

It is not possible without coding(AT SELECTION SCREEN OUTPUT)

Regards,

Atish

Read only

Former Member
0 Likes
776

at selection screen.

modify the select-option screen

screen-input = invisiable.

Read only

former_member404244
Active Contributor
0 Likes
776

Hi,

U have write the coding for it...Otherwise try to create a screen and then in the attributes ,specify it as output only and then call that screen in ur program as selection screen,this way u can do it..

Reward if helpful.

Regards,

Nagaraj

Read only

Former Member
0 Likes
776

select-options: s_so1 for c modif id 001.

at selection-screen output.

loop at screen.

screen-active = '0'.

modify screen.

endloop.

<b>reward points if useful</b>

Read only

Former Member
0 Likes
776

Hi

when your declaring the select-option use MODIF id key word for that like this

SELECT-OPTIONS : S_EBELN FOR EKKO-EBELN NO INTERVALS MODIF ID S2.

enetr values like this

NITIALIZATION.

S_EBELN-LOW = '4500016926'.

S_EBELN-OPTION = 'EQ'.

S_EBELN-SIGN = 'I'.

APPEND S_EBELN.

CLEAR S_EBELN.

and write the code to disable that filed like this

AT SELECTION-SCREEN OUTPUT.

LOOP AT SCREEN.

SCREEN-GROUP1 EQ 'S2'.

SCREEN-INPUT = 0.

MODIFY SCREEN.

ENDIF.

ENDLOOP.

<b>Reward if usefull</b>