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

EWM - BAdi needed to implement my code

Former Member
0 Likes
2,441

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. 

2 REPLIES 2
Read only

jhilden
Explorer
0 Likes
1,022

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.

Read only

Former Member
0 Likes
1,022

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.