cancel
Showing results for 
Search instead for 
Did you mean: 

pricing

Former Member
0 Kudos

when we maintain pricing procedure in condition type PR00 we set the Requirement 2(item with pricing).what is this means?

Accepted Solutions (0)

Answers (3)

Answers (3)

Former Member
0 Kudos

answered

Former Member
0 Kudos

hi,

this is to inform you that,

  • Pricing is turned on in item category configuration (TVAP) -

form kobed_002.

sy-subrc = 4 - if sy-subrc = 0 then only this gets processed other wise its an error.

if komp-kposn ne 0. - when Condition item number is not equal to 0 then

check: komp-prsfd ca 'BX'. - Carry out pricing if it contains the text.

X Pricing standard

B Pricing for free goods (100% discount)

check: komp-kznep = space. Condition exclusion indicator. if in that place X is there then it excludes the statement

endif.

sy-subrc = 0 - execute/statement is successful.

endform.

the below is empty code for copying and creating a new routine which starts from 9xxx.

  • Prestep

form kobev_002.

sy-subrc = 0.

endform.

hope this gives a clear picture to you.

regards,

balajia.

Former Member
0 Kudos

Item with Pricing

Purpose

This is an example of a pricing requirement . This requirement is met if the document item category is relevant for pricing and no previous condition in the pricing procedure has set the condition exclusion flag. This requirement can be assigned to condition types in the pricing procedure to avoid unnecessary accesses to the database when an item is not relevant for pricing or a condition exclusion indicator has been set.

Example

A sales order is placed in the system. Some of the items in the order will be free to the customer and the customer service representative indicates this with the item category TANN. In the IMG, item category TANN has been configured as not relevant for pricing. Within the pricing procedure, the user assigns requirement '2' to all condition types. Using this requirement, the system does not access any pricing condition records for the free line item. In addition to offering free items, some of the prices for products in the sales order are defined as net prices. When a net price is found, no subsequent discounts or surcharges should be assigned to the item. Pricing requirement '2' also ensures that further condition records are not accessed when a net price has already been found for the item (condition exclusion has been set).