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

Need menu painter help!!

Former Member
0 Likes
793

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 ?

sorry Rakesh I didn't get u!

6 REPLIES 6
Read only

Former Member
0 Likes
774

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

Read only

Former Member
0 Likes
774

Use screen table to control the dispaly of the buttons

by setting to active to 1 and 0 accordingly

Read only

0 Likes
774

sorry Rakesh I didn't get u!

Read only

0 Likes
774

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.

Read only

Former Member
0 Likes
774

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.

Read only

santhosh_patil
Contributor
0 Likes
774

Hi nau,

Do u want it in selection screen or in the list display(like alv)

-santhosh