Kishore Thutaram
SAP Solution Architect | 16+ Years' Experience in SAP | Sharing Practical SAP Knowledge | Engineering Graduate with Expertise in SAP Architecture
https://fiowelt.comBusiness Scenario:
“Update the sales order conditions when there is a field update by user at item level”
Steps:1: Open User Exit Include program: MV45AFZB
Step 2: Use Form routine FORM USEREXIT_NEW_PRICING_VBAP CHANGING NEW_PRICING. for VBAP level field change
Use Form routine FORM USEREXIT_NEW_PRICING_VBKD CHANGING NEW_PRICING. for VKD level field change.
Step 3: *vbap or *vbkd holds the previous value and vbap or vbkd holds the newly entered value.
IF vbap-zz1_salesdeal NE *vbap-zz1_salesdeal OR
vbap-zz1_ind NE *vbap-zz1_ind.
new_pricing = 'C'. "New price Update C or B or G based on requirement
ENDIF.
SAP Solution Architect | 16+ Years' Experience in SAP | Sharing Practical SAP Knowledge | Engineering Graduate with Expertise in SAP Architecture
https://fiowelt.com