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

To hide custom control

Former Member
0 Likes
687

Hi,

I need to hide custom control (contains alv-oo) in module pool.

I try with the following code, but it is not well.

In PBO:



  IF (sel_8 EQ 'X')
    LOOP AT SCREEN.
      IF screen-name EQ 'CC_ALV_1'.
        screen-invisible = 0.
**        screen-active = 0.
        MODIFY SCREEN.
      ENDIF.
    ENDLOOP.

  ENDIF.

Can you help me please?

Thanks...

Hi,

I need to hide custom control (contains alv-oo) in module pool.

I try with the following code, but it is not well.

In PBO:



  IF (sel_8 EQ 'X')
    LOOP AT SCREEN.
      IF screen-name EQ 'CC_ALV_1'.
        screen-invisible = 0.
**        screen-active = 0.
        MODIFY SCREEN.
      ENDIF.
    ENDLOOP.

  ENDIF.

Can you help me please?

Thanks...

1 REPLY 1
Read only

Former Member
0 Likes
436

Hi,

Did you achieve this? I am also facing the same problem. I have TEXT EDITOR Control in the custom control. I wanted to hide that control while user changes the TAB.

Plz Help.

Thanks.