2007 Jan 22 9:37 AM
Hi ,
I have GUI with 4 push buttons , If i select 1 ppush button , The 4 th push button must become invisible how to do this
Hi ,
I have GUI with 4 push buttons , If i select 1 ppush button , The 4 th push button must become invisible how to do this
2007 Jan 22 9:39 AM
AT SELECTION-SCREEN.
if sy-ucomm eq 'PUSH1'.
loop at screen.
if screen-name eq 'PUSH4'.
screen-invisible = 1.
modify screen.
endif.
endloop.
endif.
2007 Jan 22 9:46 AM
2007 Jan 22 9:47 AM
hi Kumar,
do this way ..
AT SELECTION-SCREEN.
if sy-ucomm eq 'BUTT4'.
loop at screen.
if screen-name eq 'BUTT4'.
screen-invisible = 1.
modify screen.
endif.
endloop.
endif.Regards,
Santosh
2007 Jan 22 9:48 AM
do this way...
<b>AT SELECTION-SCREEN.
if sy-ucomm eq 'PUSHBUTTON1'.
loop at screen.
if screen-name eq 'PUSHBUTTON4'.
screen-invisible = 1.
modify screen.
endif.
endloop.
endif.</b>
2007 Jan 22 10:26 AM
Where should i write this code .
1. Before PBO in Global part .
2. Within PBO or Within PAI .
2007 Jan 22 10:33 AM
in PAI.
MODULE PAI.
MODULE USER_COMMAND.
in the module user_command write ur code
| User | Count |
|---|---|
| 4 | |
| 2 | |
| 2 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 |