cancel
Showing results for 
Search instead for 
Did you mean: 

Discounts based on the Materials

Former Member
0 Kudos

Hi All,

There is one Scenario,

We have two Material M1 and M2. System should give the discount if both M1 and M2 avialable in the Sales Order.

What should be the way to deal with it.(I do not want to create the Acess Sequence for both M1 and M2)

Regards

KVK

Accepted Solutions (1)

Accepted Solutions (1)

Former Member
0 Kudos

Use VOFM routine, to check for both M1 and M2, if present, trigger discount condition.

Assign this routine to discount condition in pricing procedure.

Answers (3)

Answers (3)

Former Member
0 Kudos

hello, friend.

the group condition works very well if you have a minimum order for M1 and M2 combined, and this is a feasible alternative. but the group condition could not determine if both materials should be present in your sales order, and neither could it determine whether the discount is applicable.

barring ABAP enhancements, you could try the BOM approach wherein both M1 and M2 are "components". the discount then applies only to the BOM, with the quantities of M1 and M2 modifiable. further, your requirement hints that item category group LUMF for the main material is preferred.

regards.

Former Member
0 Kudos

Hi,

You can use group condition functionallty. Chcek the group condition in condition type (T.code vok0) and assign same group to the both material in material master.

For a group condition to be effective, the items must belong to a group. You can freely define the group to meet the needs of your own organization. The items can, for example, all belong to the same material group.

Example

A sales order contains two items. Both items belong to the material group 01.

Material Quantity Material group

A 150 01

B 100 01

The group condition indicator is set in the definition of the condition type for material group discounts. The condition record for material group 01 includes the following pricing scale:

Scale quantity Discount

from 1 pc -1%

from 200 pc -2%

Neither item alone qualifies for the 2% discount. However, when the items are combined as part of a group condition, the combined quantity creates a basis of 250 pieces. This basis then exceeds the scale value of 200 pieces, which is necessary to qualify for the higher discount.

regards

Vivek

Former Member
0 Kudos

Use VOFM routine, to check for both M1 and M2, if present, trigger discount condition.

Assign this routine to discount condition in pricing procedure.