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: 

Screen enhancement

Former Member
0 Kudos
85

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

1 REPLY 1

Former Member
0 Kudos
47

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