cancel
Showing results for 
Search instead for 
Did you mean: 

Price to calculate on different logic

Former Member
0 Kudos

Hi experts please solve my issue..

My issue is:

I have 2 condition types (tax related) zra1 n utxj.zra1 will be calculated on material price & utxj will be calulated on base price.

Now if net price reaches above 30thousand both conditons types should calculate 15% n if netprice is below 30k  condition types should calculate 12.5%..

i want to create a routine for this..how?

We cant  maintain scales in utxj cond.type..

key combination is based on tax classification of customer,region,material classfication,product hirrerachy.

please give ur valuable suggestion..

Message was edited by: G Lakshmipathi

Please use the subject effectively

Accepted Solutions (1)

Accepted Solutions (1)

VenkatRamesh_V
Active Contributor
0 Kudos

Hi,

  

decalre tax values as a separate itab.

if net GT 30,000.

wa_taxper = 15.

perform get_tax_value using KNUMV wa_taxper.

else.

wa_taxper = 12.5

perform get_tax_value using KNUMV wa_taxper.

endif.

form get_tax using KNUMV type konv-KNUMV, taxper type konv-KBETR.

loop at konv where knumv = knumv.

check konv-kschl EQ ' zra1'  or konv-kschl= ' utxj'.

append final_itab.

endloop.

Regards,

Venkat.

Former Member
0 Kudos

Hi

it should be applicable only for one plant..

VenkatRamesh_V
Active Contributor
0 Kudos

Hi legend,

Can you explain briefly,

Regards,

Venkat

Former Member
0 Kudos

they are 2 condition types,if the net price is above 30 k then it should determine 15% n below 30k 12.5%,this should be applicable only for one region..

Lakshmipathi
Active Contributor
0 Kudos

This thread shows "Assumed Answered" but whereas, I could see, you continue to ask queries.  If your query is not answered, please don't close the thread.

G. Lakshmipathi

Former Member
0 Kudos

ya lakshmipathi sir its not answered,will u please help us..

JL23
Active Contributor
0 Kudos

click correct answer button,this overwrites the "assumed answer", the unassign the correct answer and the question is open again.

Answers (1)

Answers (1)

Former Member
0 Kudos

Does anyone please give ur valuable suggestion on this question..its urgency..

this is applicable only for on plant..

Former Member
0 Kudos

Hi,

you have KOMP-WERKS (plant) available. You can use it in a requirement formula for those tax conditions in your price schema.

Regards,

JM

binoy_vargis1
Active Contributor
0 Kudos

Hi,

Create a routine with thelogic and validation for particular region and put this Routine against UTXJ condition type.

Regards

Binoy