Application Development 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: 

BAPI: LE_SHP_DELIVERY_PROC - after save

vallamuthu_madheswaran2
Active Contributor
0 Kudos

Hi Friends,

BAPI: LE_SHP_DELIVERY_PROC

After inbound delivery created. I have to change the characteristics classification. I’ve validated the batch while creating IBD in the above mentioned BADI.

My requirement is that is there any method for after save.? or Is there any badi/userexit for PGR for inbound delivery.

Thanks with Regards,

Vallamuthu M

1 ACCEPTED SOLUTION

former_member201275
Active Contributor
0 Kudos

i am not familiar with any badis/exits myself, but you can find out yourself by following the next steps:

1. Go to the TCode SE24 and enter CL_EXITHANDLER as object type.

2. In 'Display' mode, go to 'Methods' tab.

3. Double click the method 'Get Instance' to display it source code.

4. Set a breakpoint on 'CALL METHOD cl_exithandler=>get_class_name_by_interface'.

5. Then run your transaction.

6. The screen will stop at this method.

7. Check the value of parameter 'EXIT_NAME'. It will show you the BADI/EXIT for that transaction.

2 REPLIES 2

former_member201275
Active Contributor
0 Kudos

i am not familiar with any badis/exits myself, but you can find out yourself by following the next steps:

1. Go to the TCode SE24 and enter CL_EXITHANDLER as object type.

2. In 'Display' mode, go to 'Methods' tab.

3. Double click the method 'Get Instance' to display it source code.

4. Set a breakpoint on 'CALL METHOD cl_exithandler=>get_class_name_by_interface'.

5. Then run your transaction.

6. The screen will stop at this method.

7. Check the value of parameter 'EXIT_NAME'. It will show you the BADI/EXIT for that transaction.

0 Kudos

Hi Glen Anthony,

I have got LE_SHP_GOODSMOVEMENT BADI using CL_EXITHANDLER. I have implemented the enhancemen. The BADI is triggered but the implemented enhancement is not triggered.

Thanks with Regards,

Vallamuthu M.