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

Former Member
0 Likes
489

Hi All,

My client requirement is during sales order processing sold to party value is copied into PO number.

Ex: Sold to party : 1000

PO Number: 1000.

Which user exit can we used to achieve the above requirement.

Thanks in advance

Regards,

Govind.

1 ACCEPTED SOLUTION
Read only

Former Member
0 Likes
457

Hi

In the Include program MV45AFZZ you will find

FORM USEREXIT_MOVE_FIELD_TO_VBAK. Here, write

VBAK-BSTNK = VBAK-KUNNR.

Regards

Tanmay

4 REPLIES 4
Read only

Former Member
0 Likes
457

Hi

Use the Include program MV45AFZZ of Sales order Main Program SAPMV45A

and use the FORM

FORM USEREXIT_MOVE_FIELD_TO_VBAK

to move the

Sold to party VBAK-KUNNR to the Purchase order field VBAK-BSTNK.

Regards

Anji

Read only

0 Likes
457

Hi Anji,

Thanks for your quick reply.

Can u plz give brief explanation to fulfill my requirement.

It's urgent.

govind

Read only

Former Member
0 Likes
458

Hi

In the Include program MV45AFZZ you will find

FORM USEREXIT_MOVE_FIELD_TO_VBAK. Here, write

VBAK-BSTNK = VBAK-KUNNR.

Regards

Tanmay

Read only

former_member188827
Active Contributor
0 Likes
457

use

FORM USEREXIT_FIELD_MODIFICATION. of include mv45afzz of sapmv45a

FORM USEREXIT_FIELD_MODIFICATION.

case screen-name.

when VBKD-BSTKD'.

move kugav-kunnr to vbkd-bstdk.

endcase.

endform.

plz reward if dis helps