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: 

How to make parameter field readonly in selection-screen?

Former Member
0 Kudos

Hello friends,

I want to display one field as read only on the selection-screen.

How can we do this?

Regards,

RH

1 ACCEPTED SOLUTION

JozsefSzikszai
Active Contributor
0 Kudos

hi Ronny,

something like this:

PARAMETERS : para TYPE ... 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

2 REPLIES 2

JozsefSzikszai
Active Contributor
0 Kudos

hi Ronny,

something like this:

PARAMETERS : para TYPE ... 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

0 Kudos

Hi

On the event of entering a value in the field in my selection screen I want other fields to be grayed out.

I have implemented MODIF ID but my fields are grayed out on immediately after execution of program, whereas I want the fields to be gray out only when user is entering some value in other field.