2006 Nov 02 10:23 AM
I have created five buttons, and i have two options in my selection screen one for ACTIVE and one for DISPLAY, when i check the DISPLAY option i want only three buttons active, how should i go ?
I have created five buttons, and i have two options in my selection screen one for ACTIVE and one for DISPLAY, when i check the DISPLAY option i want only three buttons active, how should i go ?
2006 Nov 02 10:27 AM
Have a look at below link. It may help you.
http://help.sap.com/saphelp_nw2004s/helpdata/en/83/7a18cbde6e11d195460000e82de14a/content.htm
Best Regards,
Vibha
*Please mark all the helpful answers
2006 Nov 02 10:33 AM
Use screen table to control the dispaly of the buttons
by setting to active to 1 and 0 accordingly
2006 Nov 02 10:37 AM
2006 Nov 02 11:12 AM
you can write in the PBO of the screen
chk for the menu item fn code and
Loop at screen.
IF screen-name = 'INPUT1'.
screen-active = '1'.
ENDIF.
modify screen.
Endloop.
2006 Nov 02 11:17 AM
Hi Nau,
This disappears ur group1 'FSL' buttons.
IF p_fidoc = 'X'.
LOOP AT SCREEN.
IF screen-group1 = 'FI'.
screen-input = '1'.
screen-invisible = '0'.
MODIFY SCREEN.
ELSEIF ( screen-group1 = 'FSL' ).
screen-input = '0'.
screen-invisible = '1'.
MODIFY SCREEN.
ENDIF.
endloop.
endif.
-Anu.
2006 Nov 02 11:27 AM
Hi nau,
Do u want it in selection screen or in the list display(like alv)
-santhosh
| User | Count |
|---|---|
| 3 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 |