<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Problem in Pricing Formula in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-in-pricing-formula/m-p/5197842#M1202794</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;For specifyic condition types, i need the condition values to be displayed always in 'INR', i have created a formula routine for this and assigned to my pricing procedure .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;structures i am changing are XKOMV and KOMK.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;using 'CONVERT_TO_LOCAL_CURRENCY' i am converting the amount&lt;/P&gt;&lt;P&gt;( &lt;STRONG&gt;xkomv-kwert&lt;/STRONG&gt; ) into indian currency value and for currency key&lt;/P&gt;&lt;P&gt;i have passed &lt;STRONG&gt;'INR'&lt;/STRONG&gt; to &lt;STRONG&gt;komk-waerk&lt;/STRONG&gt; field&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;here i am facing 2 problems, after coming out of my include &lt;STRONG&gt;xkomv-kwert&lt;/STRONG&gt; is getting overridden by old value in some other include, hence i am getting the same old value on the screen and currecny key is getting dislayed as &lt;STRONG&gt;'INR'&lt;/STRONG&gt; for all the records not just only for my condition type.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Can you pls correct me if what is done by me is wrong&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Sowjanya&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 25 Feb 2009 11:31:19 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2009-02-25T11:31:19Z</dc:date>
    <item>
      <title>Problem in Pricing Formula</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-in-pricing-formula/m-p/5197842#M1202794</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;For specifyic condition types, i need the condition values to be displayed always in 'INR', i have created a formula routine for this and assigned to my pricing procedure .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;structures i am changing are XKOMV and KOMK.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;using 'CONVERT_TO_LOCAL_CURRENCY' i am converting the amount&lt;/P&gt;&lt;P&gt;( &lt;STRONG&gt;xkomv-kwert&lt;/STRONG&gt; ) into indian currency value and for currency key&lt;/P&gt;&lt;P&gt;i have passed &lt;STRONG&gt;'INR'&lt;/STRONG&gt; to &lt;STRONG&gt;komk-waerk&lt;/STRONG&gt; field&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;here i am facing 2 problems, after coming out of my include &lt;STRONG&gt;xkomv-kwert&lt;/STRONG&gt; is getting overridden by old value in some other include, hence i am getting the same old value on the screen and currecny key is getting dislayed as &lt;STRONG&gt;'INR'&lt;/STRONG&gt; for all the records not just only for my condition type.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Can you pls correct me if what is done by me is wrong&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Sowjanya&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 25 Feb 2009 11:31:19 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-in-pricing-formula/m-p/5197842#M1202794</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-02-25T11:31:19Z</dc:date>
    </item>
    <item>
      <title>Re: Problem in Pricing Formula</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-in-pricing-formula/m-p/5197843#M1202795</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;An amount in local currency is calculated from a specified foreign currency amount. For this, you may either specify the translation rate manually (Parameter RATE) or have the system determine it from table TCURR on the basis of the rate type, date and currency key. Because the ratios for the units of the currencies involved in the translation are significant for this translation, table TCURF is always read by the program, and there must be a valid entry there for the data specified. IF exchange rate fixing is defined for the exchange rate type TYPE_OF_RATE or an alternative exchange rate is defined for the currency pair, this information is transferred to the calling program.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;When table TCURR is read, the foreign currency key is always taken as the first part of the key and the local currency as the second part.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;or you can also do the manual conversion by taking the exchange rate from table TCURR for the particular date and multiply this exchage rate to foreign amount then to get the amount in local currency.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;hope this will work.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 26 Feb 2009 09:43:28 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-in-pricing-formula/m-p/5197843#M1202795</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-02-26T09:43:28Z</dc:date>
    </item>
  </channel>
</rss>

