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

Hiding screen fields

TimMuchena
Participant
0 Likes
600

Hi all,

I want to hide some screen fields on transaction BP's address tab. How do I go about it.

Thank you all

3 REPLIES 3
Read only

Former Member
0 Likes
483

Hi,

Use Transaction variant to hide fields. Tcode SHD0.

Regards,

Ashok.

Read only

Former Member
0 Likes
482

Hai try Transaction variant SHD0 or use enhancement for that particular screen.

search enhancement point in PBO of that screen and give this code.

Loop at screen

if screen-name = 'Tabname-fieldname'.

screen-hide = 'X'. Check in screen structure for hide exactly and use.

modify screen.

endif.

endloop.

Regards,

Prabu S

Read only

0 Likes
482

Actually it's screen-invisible and not hide and values are 0 (false) and 1 (true).