cancel
Showing results for 
Search instead for 
Did you mean: 

condition type value

Former Member
0 Kudos

I have 1  Z condition type in the sales pricing procedure for third parety scenario.

Where this condition type should fetch value from info records. For 1 line item in sales order it is fetching value from info records & for 2nd line item it is fetching value from Material master moving average price. I want to know why it is fetching value from material master.

I suppose that requirement is mentioned for condition type is controlling this.

Can you let me know how can I check this.

below is requirement

Accepted Solutions (0)

Answers (1)

Answers (1)

Former Member
0 Kudos

   * Determine costs according to item category configuration (TVAP)
form kobed_004.
  sy-subrc = 4.
  if komp-kposn ne 0.
    check: t001-bukrs = t001k-bukrs.
    check: komp-werks ne space.
    check: komp-evrwr = 'X'.
    check: komp-fareg na '45'.
  endif.
  sy-subrc = 0.
endform.
* Prestep
form kobev_004.
  sy-subrc = 0.
endform.