|
ERPGenie.COM -> SAP Technical -> ABAP -> Tips and Tricks -> Implementing BADIs (By Renier Walters) Business Add In Some of us have been called on to implement BADI's for the different modules and I have noticed other people attempting to implement BADI's incorrectly. Please ensure that when implementing BADI's you use the Z or Y naming convention. Following is a short guide on how to implement. 1) In transaction SE18 enter the Definition that will be implemented. 2) Select IMPLEMENTATION then CREATE.
3) Enter the implementation name starting with Z. For long names the last character will be truncated (you can of course name it anything as long as you prefix with a Z). This will then take you into SE19.
4) Enter the same description from the Definition or any useful short text. Then save in a package or as a local object.
5) Add code based on instructions to the Methods from within the INTERFACE tab (to get into code double-click Method) 6) Save and Activate
|
|