‎2007 Mar 16 12:52 PM
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.
‎2007 Mar 16 12:56 PM
perform USEREXIT_MOVE_FIELD_TO_VBAP in program SAPMV45A.
Regards,
Ravi
‎2007 Mar 16 12:55 PM
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
‎2007 Mar 16 12:56 PM
perform USEREXIT_MOVE_FIELD_TO_VBAP in program SAPMV45A.
Regards,
Ravi
‎2007 Mar 16 1:03 PM
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
‎2007 Mar 16 1:23 PM
Hi Davis,
Do the following to call a perform in an include.
perform USEREXIT_MOVE_FIELD_TO_VBAP.
include MV45AFZZ.
Regards,
Chandan