cancel
Showing results for 
Search instead for 
Did you mean: 

User Exit is activated but not calling when executing

vkumara
Explorer
0 Kudos

Hi,

I have created a project in CMOD for user exit M61X0001(Components : EXIT_SAPLM61C_001, EXIT_SAPMM61X_001) and activated the same i.e. EXIT_SAPLM61C_001 and EXIT_SAPMM61X_001 is shown as implemented.But while performing MRP Run for material through tcode MD01, none of the above EXIT's are called.

Data passed in tcode MD01 is as shown below.


Can any one help in resolving this?

Thanks in advance.

Rgds,

VKumar

Accepted Solutions (0)

Answers (1)

Answers (1)

Amit_SAP
Active Contributor
0 Kudos

Hello,

Please check with your Abap Consultant, There might be some problem in code.

For reference please check the below links

https://scn.sap.com/thread/2071218

http://scn.sap.com/message/6627414#6627414

http://scn.sap.com/thread/3609329

Regards,

Amit Sharma

Caetano
Product and Topic Expert
Product and Topic Expert

Hello

You are running MRP in parallel, which means that each package is called on a different server by means of RFC. In this case, if you set a break-point on the user-exit, the debugger will be called, as it cannot be called on the RFC.

Therefore, the fact that your break-point is not working does not mean that the exit does not work. You must find another way to test if the exit is actually working, for example, saving the processed records on a custom table or checking the MRP lists after the MRP run.

BR
Caetano