Hiding field on Module Pool screen
Hi,
I have following code to hide screen field.
I have inactivated the screen field and disabled the input.
Still fields are visible.
Please let me know what is the solution to hide this field on module Pool screen.
LOOP AT SCREEN.
IF screen-name EQ c_lastchangedby.
MOVE c_zero TO screen-input.
MOVE c_zero TO screen-active.
MODIFY SCREEN.
ENDIF.
ENDLOOP.