cancel
Showing results for 
Search instead for 
Did you mean: 

Header Surcharges in Pricing

Former Member
0 Kudos

The business scenario is that a handling fee needs to be added to the entire sales order, if the order is over a minimum order value. This minimum order value and the handling fee can vary from customer to customer. This suggests that the condition needs to be a header condition. However since header conditions cannot use access sequences, do you have any suggestion on how this can be done?

Accepted Solutions (0)

Answers (2)

Answers (2)

Manoj_Mahajan78
Active Contributor
0 Kudos

Amar,

With the help of ABAP create your own pricing routine fitting the requirment.Assign this new routine to your condition type.

Use T code-VOFM for this

Regds

MM

Former Member
0 Kudos

Pls use the alternate condition type routine for this requirement. Create a routine and assign this to the cond type in the procedure config.

The logic of the routine can be as follows.

1) Create a custom table where you can maintain the Customer wise Minimum order value and the amount to be charged if the amount exceeds.

2) Use the routine to call this table and read the data taking the base value from the header pricing structure KOMK and then return the value to this condition type as maintained in the custom table.

I have never tried this out but just a way for you to explore.

Hope this helps.