‎2009 Feb 10 10:42 AM
Hi,
I have to make changes in the screen of 0105 (Communication) Infotype for subtyp MAIL. There are 2 fields USRID & USRID_LONG in 0105 IT, by default USRID field is being displayed on the screen instead I want to make USRID_LONG field to be displayed on the screen.
Is this possible through configuration
‎2009 Feb 10 10:50 AM
Hi,
just do like this...
data:
USRID like tabname-USRID,
USRID_LONG like tabname-USRID_LONG.
at selection-screen output.
if USRID_LONG is initial.
loop at screen.
if screen-name CS 'USRID'.
screen-active = 0.
modify screen.
endif.
endloop.
endif.
This code will result in hide the usrid on the screen...initially the field USRID_LONG will visible
Edited by: Kiran Saka on Feb 10, 2009 11:50 AM
‎2009 Feb 10 11:01 AM
Hi ,
You can do it in AT SELECTION-SCREEN OUTPUT event looping at SCREEN table.
AT SELECTION-SCREEN OUTPUT.
Loop at screen.
if screen-name EQ 'USRID'.
Screen-active = 0.
Modify screen.
endif.
endloop.Regards
Pinaki
‎2009 Aug 25 3:00 PM
This cannot be done thru coding. Maintain the field required based on the subtype in V_T591C.