Application Development and Automation 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: 
Read only

Info type screen change

Former Member
0 Likes
598

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

3 REPLIES 3
Read only

Former Member
0 Likes
526

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

Read only

Former Member
0 Likes
526

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

Read only

Former Member
0 Likes
526

This cannot be done thru coding. Maintain the field required based on the subtype in V_T591C.