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: 
SAP Community Downtime Scheduled for This Weekend

user exit

Former Member
0 Kudos
99

hi

why am i not able to hit the userexit_move_field_to_vbap

when iam changing a sales order line item field.

( i set the breakpoint in one of teh includes in that exit.)

7 REPLIES 7

RichHeilman
Developer Advocate
Developer Advocate
0 Kudos
69

Put your breakpoint on one of the statements in the FORM userexit_move_field_to_vbap. Does it stop there? Do you have to click save to fire this FORM?

Regards,

Rich Heilman

0 Kudos
69

Can you please post your code for this routine? I think, all you have in this code is include statement. Is that correct? If so, your first include may have a check statement at the very begining and may be that check statement condition is failing. Double click on the include and put your breakpoint on the first executable line of that include.

If you have check statements in includes, and the condition fails, the control will not go any further. It will come out of the routine.

Srinivas

Former Member
0 Kudos
69

HI,

I have a stupid question,

have you restart the transactin VA01 or VA02 after you put the break point?

0 Kudos
69

yes i did,

i dont know whats happening..

may be i will try hard coding the break point and try.

0 Kudos
69

in change mode that is in va02

i believe that the exit is not triggered when u change a line item field.

0 Kudos
69

Hi KP;

It should. Can you check something for me? Could you go to SE38 and type in the program name MV45AFZZ - the include program that owns the form?

Once you do that, try the "where used" function to see if it is included in the main program SAPMV45A. That needs to be the case for the user exit to work. If it is not there, there is a program you can run to put it there. I am looking for that program right now, but maybe you could check that in the meantime.

Cheers,

John

0 Kudos
69

Put a break-point in this include 'FV45PFAP_VBAP_FUELLEN' in the form 'form vbap_fuellen.' on this statement

  • Userexit

perform userexit_move_field_to_vbap(sapmv45a).

This is almost at the end of the above form.

Then go through it step by step.

Srinivas