cancel
Showing results for 
Search instead for 
Did you mean: 

Pricing catalogue issue

Former Member
0 Kudos

Hi guys ,

I have one problem with pricing catalogue . As per my requirement i have to add agent field in the KOMPAZ Structure. this has been done i created . after that we created condition table based upon material and agent . In vK11 agent and material details are maintained. i create sales order and i maintained the material and agent (VK11) pricing condition should display in Conditions .but i am going to conditions tab click "update" and select "carry out new pricing" then pricing

conditions are updated.

My requirement is , it should happen automated when create,change,delete agent in the partner tab the pricing conditions should updated .

How to do ?

Thanks in advance .

Accepted Solutions (0)

Answers (1)

Answers (1)

Former Member
0 Kudos

Include MV45AFZB features 2 user exits - USEREXIT_NEW_PRICING_VBAP and USEREXIT_NEW_PRICING_VBKD; from any of these exits new pricing can be triggered; however only VBAP, VBKD data is available in these exits. Since partner data is in VBPA, it is not possible to know whether agent has been changed. However a memory ID can be used for this. If you can debug and find out an exit which gets triggered on change of partners, you can export a memory ID from that exit. And import it in one of the above 2 exits. You need to add the following code in any of the above exits to trigger new pricing.

1. Import memory ID.

2. if <memory ID> = 'X'. new_pricing = 'B'.

Please reward with points if useful.