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

Reg: Select options

Former Member
0 Likes
307

Hi

I am having a select options like this:

SO_BSART FOR EKKO-BSART NO INTERVALS DEFAULT 'ZTP'.

I have given ZTP AS DEFAULT..I WANT TO GREY OUT THAT FIELD SO THAT USER CAN NOT CHANGE IT..

Can one help me out how to do this??

Arun

1 ACCEPTED SOLUTION
Read only

JozsefSzikszai
Active Contributor
0 Likes
284

hi Arun,

that is the way to do it:

SO_BSART FOR EKKO-BSART NO INTERVALS DEFAULT 'ZTP' MODIF ID 001 .

AT SELECTION-SCREEN OUTPUT.

LOOP AT screen.

CHECK screen-group1 EQ '001'.

screen-input = '0'.

MODIFY screen.

ENDLOOP.

hope this helps

ec

1 REPLY 1
Read only

JozsefSzikszai
Active Contributor
0 Likes
285

hi Arun,

that is the way to do it:

SO_BSART FOR EKKO-BSART NO INTERVALS DEFAULT 'ZTP' MODIF ID 001 .

AT SELECTION-SCREEN OUTPUT.

LOOP AT screen.

CHECK screen-group1 EQ '001'.

screen-input = '0'.

MODIFY screen.

ENDLOOP.

hope this helps

ec