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

Brake point is not triggering

Former Member
0 Likes
3,213

Hi All,

I am implementing logic in USEREXIT_BATCH_DETERMINATION of MV50AFZZ include and i put the brake point it is not triggering. even though i hard coded the brak point .

Could any one let me know when the brake point will trigger for  USEREXIT_BATCH_DETERMINATION of MV50AFZZ include.

please find the below image for more clarity.

Regards,

Mohammed Quddus.

1 ACCEPTED SOLUTION
Read only

former_member202771
Contributor
0 Likes
3,146

Hi Quddus,

we have this exit within an IF condition.

if ls_dlfld-flag_change eq space or

          likp-verursys is initial.

         perform userexit_batch_determination(sapmv50a).

       endif.


Especially ls_dlfld-flag_change.


Thanks,

Anil

9 REPLIES 9
Read only

matt
Active Contributor
0 Likes
3,146

The break point will trigger when the code is executed. Since it isn't triggering, your code isn't executing. That could mean you're just running the wrong transaction, or you've not activated something.

Read only

Former Member
0 Likes
3,146

Hi Matthew,

it is related to vl01n/2n/3n and USEREXIT_BATCH_DETERMINATION of MV50AFZZ include is related to this tcodes. and my enhancement is in activated mode.

please find the below image.

Regards,

Mohammed Quddus.

Read only

matt
Active Contributor
0 Likes
3,146

Change the break point statement to a message type X. If you don't get a dump, then you know your code isn't getting executed.

Read only

Former Member
0 Likes
3,146

Hi Matthew,

Could you please let me know when this MV50AFZZ include will trigger. i.e, in which situation it will trigger.

Regards,

Mohammed Quddus.

Read only

0 Likes
3,146
  • This particular user exit is called during item creation within the routine LIPS_BEARBEITEN (program SAPFV50P).
  • We can use this routine to determine the batch  which is to be assigned to the delivery item, in accordance with our own criteria.

Regards,

Philip

Read only

Former Member
0 Likes
3,146

Hi Philip,

Could you please brief out the steps. How you have recognized the user exit called during item creation and i would like to know the program SAPFV50P is related to Vl01n/2n/3n Tcode.

Regards,

Mohammed Quddus.

Read only

former_member202771
Contributor
0 Likes
3,147

Hi Quddus,

we have this exit within an IF condition.

if ls_dlfld-flag_change eq space or

          likp-verursys is initial.

         perform userexit_batch_determination(sapmv50a).

       endif.


Especially ls_dlfld-flag_change.


Thanks,

Anil

Read only

0 Likes
3,146

Hi Anil,

Thanks you...

Read only

Former Member
0 Likes
3,146

If you are sure about the USEREXIT which you have implemented.

Then you just Regenerate the Source code of MV50AFZZ , it has worked for me many a times.