Application Development 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: 

User Exit working in Developement server But not working in Quality server

Former Member
0 Kudos

Hi ABAPers,

I have used user exit to trigger alter if no goods issue is availalbe against production order while confirming. The problem is it is working fine in Development server but not even it is not triggered in Quality server. What will be the problem?

Pls guide me.

I put break point in include (user exit). But the control is not going there.

Yours,

s.guna

10 REPLIES 10

Former Member
0 Kudos

Hello, if this is a user-exit of the type SMOD/CMOD, you must create a "project" in txn CMOD, activate it and then transport it. In theory it should be automatically activated in the target system.

0 Kudos

I activated and transported already but not working

0 Kudos

Set the break point into your code in User Exit and try to debug it.

You will have a better idea of what is going wrong.

Regards,

Naimesh Patel

0 Kudos

I set break point the control is not going there.

0 Kudos

you can not debug the user-exit..

instead try printing the values via message...

0 Kudos

what i want to say here is even the user exit is not triggered.

former_member1345686
Active Participant
0 Kudos

Dear Guna,

It is possible that both servers have different configuration,

or the user exit is not active for some conditions,

therefore the program does not flow into that particular user exit of yours .

It is traceable, though, if you're debugging the transaction from the first action ( i.e for SO save user exit , enter /h before press button Save ).

Rgds,

TSW

0 Kudos

That is what i am trying. i tried to find out the position of line which calls that user exit by searching the string 'CALL CUSTOMER' i could not find out respective line

0 Kudos

oh sorry, i forgot to mention it before,

you have to debug BOTH of the server to compare the logic,

because it seems that in testing server the user exit is not called.

The best way is to compare both configuration first .

Former Member
0 Kudos

Hi All,

I solved the problem myself. I activated the include again ( before that it was acitve ) . Now it is working.