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

User-exit for Sales Order create with reference

Former Member
0 Likes
2,890

Hello all,

Our current sales process is to create a Quotation first and then create a Sales Order with reference to it. During the copying process I have to add some coding to modify the data.

I would like to ask in the Module Pool SAPMV45A, in which include program I can add this code for the modification.

As I have checked the include program MV45AFZZ but couldn't find any suitable place for adding the custom coding.

Thanks a lot.

1 ACCEPTED SOLUTION
Read only

Former Member
0 Likes
1,256

hi,

i tried to replicate your process but i guess my system is not configured for that...BUT here is what i tried to do so that u can try it on your system....

go to the program of transaction va01 i.e to create a sales order...

now in the program all the sap given enhancement points or user exits will be in the form like..

ENHANCEMENT-POINT xyz

PERFORM userexit xyz

CALL CUSTOMER

now search the progrm based on the ABOVE TEXTS one by one and set break points there and repeat the process of creating the SO using a quotation ......the point at which the debugger will start when you press the COPY button while creating will give you the exact point where u can place ur code.

it is a bit laborious process but

i hope it will help u....

Hello all,

Our current sales process is to create a Quotation first and then create a Sales Order with reference to it. During the copying process I have to add some coding to modify the data.

I would like to ask in the Module Pool SAPMV45A, in which include program I can add this code for the modification.

As I have checked the include program MV45AFZZ but couldn't find any suitable place for adding the custom coding.

Thanks a lot.

1 REPLY 1
Read only

Former Member
0 Likes
1,257

hi,

i tried to replicate your process but i guess my system is not configured for that...BUT here is what i tried to do so that u can try it on your system....

go to the program of transaction va01 i.e to create a sales order...

now in the program all the sap given enhancement points or user exits will be in the form like..

ENHANCEMENT-POINT xyz

PERFORM userexit xyz

CALL CUSTOMER

now search the progrm based on the ABOVE TEXTS one by one and set break points there and repeat the process of creating the SO using a quotation ......the point at which the debugger will start when you press the COPY button while creating will give you the exact point where u can place ur code.

it is a bit laborious process but

i hope it will help u....