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

Sorting of Kernel BAdi implementations

rthoodi
Active Participant
0 Likes
766

Hello All,

I have implemented a Kernel BAdi; BADI_PDT which has standard implementation as well, I want to sort these two implementations according to my requirement:

For Example: my implementation is always calling first and then standard implementation is being called and overwriting custom functionality, I want to call my implementation to be called last

I have gone through the following link, but I am missing somewhere, I believe this one is not clearly descriptive.

http://www.sdn.sap.com/irj/scn/go/portal/prtroot/docs/library/uuid/e0d2f214-b1a5-2a10-f3a0-98c95afcf...

Please help.

Regards

RK

Hello All,

I have implemented a Kernel BAdi; BADI_PDT which has standard implementation as well, I want to sort these two implementations according to my requirement:

For Example: my implementation is always calling first and then standard implementation is being called and overwriting custom functionality, I want to call my implementation to be called last

I have gone through the following link, but I am missing somewhere, I believe this one is not clearly descriptive.

http://www.sdn.sap.com/irj/scn/go/portal/prtroot/docs/library/uuid/e0d2f214-b1a5-2a10-f3a0-98c95afcf...

Please help.

Regards

RK

1 REPLY 1
Read only

former_member1716
Active Contributor
0 Likes
628

Hi,

We had the same issue, we had around 4 implementations and all these four should execute in certain sequence.

To Acheive we did it with mere naming like below,

BADI_IMPLEMENTATION1

BADI_IMPLEMENTATION2

BADI_IMPLEMENTATION3

BADI_IMPLEMENTATION4

Now based on the Nubering in the BADI names they were called, it worked for us. Check from your end.

Regards