‎2007 Jul 12 10:31 PM
How do I activate this badi in 4.7? Is it using IMG ( tcode SPRO) or can I just go into SE19 and create a new implementation for it?
Thanks in advance!
‎2007 Jul 12 10:53 PM
Hi
Go to transaction se19 , create ZME_PROCESS_REQ_CUST , in the next screen it will ask for definition name , enter ME_PROCESS_REQ_CUST.
and write the code for the method u are looking for :
INITIALIZE
OPEN
PROCESS_HEADER
PROCESS_ITEM
PROCESS_ACCOUNT
CHECK
POST etc..
‎2007 Jul 12 10:58 PM
Hello,
To create an implementation, proceed as follows:
Choose ABAP Workbench -> Utilities -> Business Add-Ins (transaction SE19) from
the SAP menu
Enter a name for the implementation and choose Create.
Enter the name of the BAdI you want to create an implementation for in the dialog box that appears.
- During implementation creation, a class for implementing the enhancement's interface is also created
- Navigate to the Class Builder by double-clicking the method.
Insert the source code between the method and endmethod statements and activated.
- Exception handling for the method can be handled in this section
Hope this helps!!
Gabriel