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: 

Module Pool

Former Member
0 Kudos

How can i hide a column and colored a field in table control?

2 REPLIES 2

Former Member
0 Kudos

Hi,

in you PBO-event you have to do a loop to the screen and then you can alter the characteristics of the objects that appear on it.

LOOP AT SCREEN.

SCREEN-INVISIBLE = 'X'.

SCREEN-COLOR = ' '.

MODIFY SCREEN.

ENDLOOP.

in SE16 look at the structure SCREEN for the possible fields.

Former Member
0 Kudos

Hi,

If durinn run time you want to hide it for some user action.

Use Following code in any module of PBO Event

LOOP AT SCREEN.

SCREEN-ACTIVE = 0

SCREEN-COLOR = 6.

MODIFY SCREEN.

ENDLOOP.

If you want any field to be fro output display or hide completly them in the attributes of fild in SE51 you can set them as required.

<b>Reward Points for helpfull answers</b>Thanks

Tanweer

Message was edited by:

Tanweer Zaki