‎2016 Mar 11 11:41 AM
I am in a situation where i should update a field in a warehouse task at the time of creation. When a pick task is created, i wanted to update my date from a custom table to a field in warehouse task. So i was searching for a BAdi where i can update a field before TO(warehouse Task) creation. I couldn't find any because all the BAdi inside the process has no changing parameter with the task details. Now i decided to use implicit enhancement inside FM ehich creates warehouse task.
But it will be helpful if someone provide me the BAdi name which i can use for this purpose.
‎2016 Mar 11 3:32 PM
You may have some luck by placing a breakpoint in the GET_INSTANCE (CL_EXITHANDLER).
Try this:
Goto SE24 (Display class cl_exithandler)
Double click on the method GET_INSTANCE.
Put a break point at (in my instance) line 28 (CASE sy-subrc).
Then...
Execute your standard transaction
You may have to F8 in the debugger several times to get to the button which you are talking about.
You should be able to see the values of variable 'exit_name', it will give you the BADI name called at that time.
‎2016 Mar 12 5:13 PM
Hello Jeremy,
Thank you.
I know how to find a Badi in general. I tried all the method. But in my case, i could not find a Badi with which a changing parameter should have warehouse task structure. So that i can change a field.
Somebody who worked on EWM Warehouse Task creation can help me here.