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

Calling form in external include

Former Member
0 Likes
824

I need to call a form in an external include. The include is: MV45AFZZ and the form is: USEREXIT_MOVE_FIELD_TO_VBAP. If I can't do it then I can always copy the code from this user exit to the spot where I need it to run but I would rather just call this form again.

Regards,

Davis.

1 ACCEPTED SOLUTION
Read only

Former Member
0 Likes
652

perform USEREXIT_MOVE_FIELD_TO_VBAP in program SAPMV45A.

Regards,

Ravi

4 REPLIES 4
Read only

Former Member
0 Likes
652

Hi,

Why you wants to call the FORM of this include MV45AFZZ somewhere?

this includeMV45AFZZ (which is a in built userexit) for sales order processing is somewhat different from others.

You can straight away write the code in this include in the right form to trigger the functionality correctly.

Regards,

anji

Read only

Former Member
0 Likes
653

perform USEREXIT_MOVE_FIELD_TO_VBAP in program SAPMV45A.

Regards,

Ravi

Read only

0 Likes
652

Thanks a lot Ravi. I was trying perform SAPMV45A-USEREXIT_MOVE_TO_VBAP and that wasn't working. I love how helpful people are here, and how much I've learned from all of you!

Thanks again!

Davis

Read only

Former Member
0 Likes
652

Hi Davis,

Do the following to call a perform in an include.

perform USEREXIT_MOVE_FIELD_TO_VBAP.

include MV45AFZZ.

Regards,

Chandan