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

radio button on application tool bar

Former Member
0 Likes
428

In the application tool bar there should be three buttons and should be changed based on the radio button selection

If PO radio button selection, Application tool bar should contain buttons like follows

Items

Show Document

Show Vendor Details

If SO radio button selected, Application tool bar should contain buttons like follows

Items

Show Document

Show Customer Details

If user Click on Item, it should show the items of PO / SO based on radio button selection in the secondary list

If user Click on Show document, we need to call the respective transaction either PO ( ME23 ) or SO (VA03)

If user clicks on Show Vendor / Show Customer we need display either Customer / Vendor details in the secondary list. (KNA1 / LFA1)

If user clicked on Items button, the secondary list should display the line item of either PO / SO based on selection. Each line should have a check box in the beginning of the line. This interactive list should have one button in the application tool bar. If user clicked on this button, only check box selected line items should display to the next interactive list

While displaying the line items in the interactive reports, if user double click on the material number, it should lead to the MM03 transaction for that material.

In the application tool bar there should be three buttons and should be changed based on the radio button selection

If PO radio button selection, Application tool bar should contain buttons like follows

Items

Show Document

Show Vendor Details

If SO radio button selected, Application tool bar should contain buttons like follows

Items

Show Document

Show Customer Details

If user Click on Item, it should show the items of PO / SO based on radio button selection in the secondary list

If user Click on Show document, we need to call the respective transaction either PO ( ME23 ) or SO (VA03)

If user clicks on Show Vendor / Show Customer we need display either Customer / Vendor details in the secondary list. (KNA1 / LFA1)

If user clicked on Items button, the secondary list should display the line item of either PO / SO based on selection. Each line should have a check box in the beginning of the line. This interactive list should have one button in the application tool bar. If user clicked on this button, only check box selected line items should display to the next interactive list

While displaying the line items in the interactive reports, if user double click on the material number, it should lead to the MM03 transaction for that material.

1 REPLY 1
Read only

Former Member
0 Likes
362

you have to use the set-pfstatus command for ur requrement. before that create a appicatio tool bar with all the buttons .

ex:

data: i_ucomm type table of sy-ucomm.

Add all the fctcodes in capital letters to sy-ucomm. Based on the radio button selected add noly those fctcode that u dont want.

now use....

set pf-stauts 'PF_NAME' excluding i_ucomm.

remeber that this pf-stauts will now show only those buttons whose fctcodes are not htere in the table i_ucomm.