cancel
Showing results for 
Search instead for 
Did you mean: 

Condition Type Restrict on Quanity/Order

Former Member
0 Kudos

Hi,

we have a spl price condition type (price) Z03 and Actually base condition type (price) is z01.

So, on certain conditions (custom fields, price grp) we should get this spl condition type Z03.

this is working fine now, we have accomplished this by using userexit.

but now, I want this spl condition to have limit only for 50 quantity/order and further quantity should get

normal pricing (Z01). how can I achieve this.

Eg :

Material base value (Z01) is 100 USD.

Materail Spl condition is 90 USD.

Say if all conditions satisfy and the order is eligible for Z03 but I should restrict on 50 quantity.

If customer orders 75 quantity,

I should have Z03 for 50 Quantity and rest 25 should get z01.this may create a addtional line item with same material. please help.

50 * 90 and other 25 should not get spl price i.e 25 * 100.

thk u

Anitha

Accepted Solutions (0)

Answers (1)

Answers (1)

Former Member
0 Kudos

Hi Anitha,

Try this: Add a AltCalTyp routine to your pricing procedure for the CType Z03.

The logic in this routine should be :

Pick up based on spl conditions etc..based on Z01--which you already have added.

Then, check the ordered qty. if its less than or equal to 50 then do the calculation i.e x*n ( n= orderd qty).

If its more than 50, always make it x*50.

Add similar routine to Z01, if qty > 50. x*n( n>50).

I hope this helps.

Regards,

Raghu.