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

BAdI ME_PROCESS_REQ_CUST

Former Member
0 Likes
1,106

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!

2 REPLIES 2
Read only

Former Member
0 Likes
714

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..

Read only

Former Member
0 Likes
714

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