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: 

BADI or User Exit for VL09 after Reversing

sivag_s
Explorer
0 Kudos
642

Hi Experts,

I have a requirement that updating certain values in Custom Table after Reversing a Delivery. Is there any BADI or User Exit which trigger After Reversing a Delivery in VL09.

Thanks in Advance.

5 REPLIES 5

former_member201275
Active Contributor
0 Kudos
165

1) Goto se24 (Display class cl_exithandler)

2) Double click on the method GET_INSTANCE.

3) Put a break point at Line no.25 (CASE sy-subrc).

Now

4) Execute your SAP standard transaction

5) Press the required button for which you need to write an exit logic, the execution will stop at the break point.

6) Check the values of variable 'exit_name', it will give you the BADI name called at that time.

7) This way you will find all the BADIs called on click of any button in any transaction

Lakshmipathi
Active Contributor
0 Kudos
165

Try with USEREXIT_DELETE_DOCUMENT in include MV50AFZ1

G. Lakshmipathi

former_member183424
Active Contributor
0 Kudos
165

Try to find a suitable badi or exit with help of this document

former_member201275
Active Contributor
0 Kudos
165

Hi,

Is your question resolved?

nairharsha
Participant
0 Kudos
165

Did you find a resolution for this. I have a similar requirment