2007 Dec 21 7:16 AM
Hi all,
I want to disable a custom defined field in additional screen of standard transaction when opened in the display mode.
Thanks,
GV.
Edited by: Venkata Rao Gude on Dec 21, 2007 8:22 AM
2007 Dec 21 9:16 AM
hi
Go to screen layout and double lick on that field, you will get one sub screen. There give group name for that field(ex AAA)
and come back.
go to flow logic for that screen and add
MODULE Modify_screen..
Inside the module, write below code
IF sy-tcode EQ "opend in displaymode"
LOOP AT SCREEN.
IF screen-group1 EQ 'AAA'.
screen-input = 0.
MODIFY SCREEN.
ENDIF.
ENDLOOP.
ENDIF.
REWARD IF IT IS USEFUL.
Thanks
Siva kumar