cancel
Showing results for 
Search instead for 
Did you mean: 

free goods

Former Member
0 Kudos

hi all

i want to create the condition record for free goods with the combination PLANT & MATERIAL.

when i am trying to maintain it is not calculating free goods

based on the above combination, i could see the following message in analysis of the sales order CONDITION IGNORED (REQUIREMENT 055 NOT FULFILED).

my question is when plant was given in the field catelog why cant i use it along with material to maintain condition record for free goods?

regards

rag

Accepted Solutions (0)

Answers (3)

Answers (3)

Former Member
0 Kudos

Hi there,

As the error mentions there is a requirement 005 which is looking for fullfilment of a particular creteria.

Pls have the ABAPer translate the code what it means if you are not well versed with reading ABAP code.

Only when the requirement 005 is met, it will apply the free goods to the order. There may be some customized code written.

Regards,

Sivanand

claudia_neudeck
Active Contributor
0 Kudos

Hello,

the requirement is maintained in the pricing procedure or in the access sequence for your free good condition.

This is a standard requirement, the coding is as follow:

Pricing for free goods (100%-discount)

form kobed_055.

sy-subrc = 4.

if komp-kposn ne 0.

check: komp-prsfd eq 'B'.

endif.

sy-subrc = 0.

endform.

Prestep

form kobev_055.

sy-subrc = 0.

endform.

Here is a check for the field komp-prsfd (carry out pricing).

Please check in debugging in the formula, how is the value of komp-prsfd.

in your case the requirement is not fullfilled.

The field komp-prsfd will be filled from the item category. Please have a look in the item category:

Customizing (SPRO)

Sales and Distribution

Sales

Sales Document

Sales Document Item

Define Item Categories

Her you can maintain the field 'pricing' with the following value:

Prcg. Short text

No pricing

X Pricing standard

A Pricing for empties

B Pricing for free goods (100% discount)

I hope that the information are helpful.

regards

Claudia

Lakshmipathi
Active Contributor
0 Kudos

Dear Rag

I have a feeling that in V/07, for that condition type, you have maintained Table 055 which is the combination of Sales Org / Order / Plant / Material.

So in VK11, you have to maintain only for this combination. On the other hand, in V/07 for your condition type, maintain Table 406

thanks

G. Lakshmipathi