2008 Oct 02 1:01 PM
Hello friends,
I want to display one field as read only on the selection-screen.
How can we do this?
Regards,
RH
2008 Oct 02 1:04 PM
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
2008 Oct 02 1:04 PM
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
2008 Dec 09 7:26 AM
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.