Application Development 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: 

Reg: Select options

Former Member
0 Kudos

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

JozsefSzikszai
Active Contributor
0 Kudos

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

JozsefSzikszai
Active Contributor
0 Kudos

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