‎2013 Jul 17 10:18 AM
Hi All,
I have a requirement that would need to update process order operation/activity. For example, if a certain material is valid for order split which currently have operation number 0040, the second part of the split should be 0041. Do you know an exit applicable to perform this change?
Thanks,
Trixa
‎2013 Jul 17 1:36 PM
Hi,
Declare two internal tables one contains filtered value, and another one containing all the values.
Once user updates the filtered values update in the main table.
You can try this approach.
‎2013 Jul 18 2:48 AM
I'm still investigating where should I put my code. Do you happen to know an enhancement or exit for this?
Thanks,
Trixa
‎2013 Jul 18 8:53 AM
Trixa,
Use WORKORDER_UPDATE BADI and with BEFORE_UPDATE Interface; put your desired code.inside it. To do that create a New Classic BADI Implementation thru SE19 with BAPI Definition Name as 'Workorder_Update'. Also create new implementing class with Interface 'IF_EX_WORKORDER_UPDATE'.
It will work.
With Regards,
Ritwik
‎2013 Jul 19 8:15 AM
Hi Ritwik,
The code to be implemented inside the BADI will only be triggered after clicking SAVE, right? The requirement that I'm working on is to create a new menu button that if clicked will trigger process order update. Is it still applicable to use same BADI?
Thanks,
Gibi