cancel
Showing results for 
Search instead for 
Did you mean: 

BADI that triggers when click on "Create shopping cart" button

Former Member
0 Kudos

Hi friends,

I am looking for a BADI, which will get triggered as soon as the users click's on "Create Shopping Cart" button or as soon he login to the webgui.

My requirement is to give a pop-up message to the user as soon as he enter webgui or atleast when he clicks on "create shopping cart" button.

thanks..

Accepted Solutions (0)

Answers (1)

Answers (1)

Former Member
0 Kudos

Hi,

You can implement the BADI "BBP_DOC_CHANGE_BADI" which gets triggered when you click on any button on the SC screen.

You can write your code for the pop up message by checking on the condition that the user has clicked the button "ORDER" in the foll way:

if sy-ucomm = 'SC_ORDER' .

*code for displaying the POP UP message.

endif.

BR,

Disha,