‎2005 May 02 6:51 PM
‎2005 May 02 7:22 PM
In the event AT SELECTION SCREEN OUTPUT you can do a LOOP AT SCREEN and turn off the ACTIVE indicator. Use the debugger to determine what the name of the field is that you want to hide.
So something like
LOOP AT SCREEN.
IF SCREEN-FIELDNAME = 'the name'.
SCREEN-ACTIVE = '0'.
MODIFY SCREEN.
ENDLOOP.
‎2005 May 02 7:22 PM
In the event AT SELECTION SCREEN OUTPUT you can do a LOOP AT SCREEN and turn off the ACTIVE indicator. Use the debugger to determine what the name of the field is that you want to hide.
So something like
LOOP AT SCREEN.
IF SCREEN-FIELDNAME = 'the name'.
SCREEN-ACTIVE = '0'.
MODIFY SCREEN.
ENDLOOP.
‎2005 Jul 28 5:03 AM
Hi,
You can also do it by using a variant in the selection screen.Save the select scrren options as a varaint and there you can hide a field.Please tell for what purpose you want to do it.At selection-screen output is also used but it is without varaints..