<?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 Re: Converting amount to user's decimal notation in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/converting-amount-to-user-s-decimal-notation/m-p/5372622#M1235852</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;You need to use the WRITE..TO.. statment to convert the amount format as per the user profile. Please gothrough my answer in the post.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 02 Apr 2009 08:45:46 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2009-04-02T08:45:46Z</dc:date>
    <item>
      <title>Converting amount to user's decimal notation</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/converting-amount-to-user-s-decimal-notation/m-p/5372615#M1235845</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi All,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;We have a requirement as follows:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Amount = 12500.00.(After final calcuation we get an amount like this).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Now as per the user's decimal notation(Maintained in SU01-&amp;gt;Defaults-&amp;gt;Decimal notation format) we have to convert this amount to that format.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;For Eg: If the user's notation is set as ' '(the notation wil be 1.234.456,89). so according to this the amount given above should be made as 12.500,00.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Can anybody let me know is there any function module/any other option available to convert this as mentioned in the above example.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks in Advance,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Cheers,&lt;/P&gt;&lt;P&gt;Sri&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 02 Apr 2009 07:52:38 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/converting-amount-to-user-s-decimal-notation/m-p/5372615#M1235845</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-04-02T07:52:38Z</dc:date>
    </item>
    <item>
      <title>Re: Converting amount to user's decimal notation</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/converting-amount-to-user-s-decimal-notation/m-p/5372616#M1235846</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;If u are writing this value to the list...u dont have to convert...it will automatically be in the format specified in the SU01 transaction for currency.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Keerthi&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 02 Apr 2009 08:01:25 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/converting-amount-to-user-s-decimal-notation/m-p/5372616#M1235846</guid>
      <dc:creator>keerthy_k</dc:creator>
      <dc:date>2009-04-02T08:01:25Z</dc:date>
    </item>
    <item>
      <title>Re: Converting amount to user's decimal notation</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/converting-amount-to-user-s-decimal-notation/m-p/5372617#M1235847</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;We will be using this value in BDC and it will be passed to VA01 pricing screen.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Cheers,&lt;/P&gt;&lt;P&gt;Sri&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 02 Apr 2009 08:04:10 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/converting-amount-to-user-s-decimal-notation/m-p/5372617#M1235847</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-04-02T08:04:10Z</dc:date>
    </item>
    <item>
      <title>Re: Converting amount to user's decimal notation</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/converting-amount-to-user-s-decimal-notation/m-p/5372618#M1235848</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;Use the WRITE statement to move the amount field to Char field and use the char field in BDC.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DATA l_char type char20.&lt;/P&gt;&lt;P&gt;l_Amount = '12500.00'.&lt;/P&gt;&lt;P&gt;WRITE l_amount TO l_char.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;the value in l_char would like '12.500,00' ( if the notation wil be 1.234.456,89).  that is as per the user notation in SU01&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 02 Apr 2009 08:12:55 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/converting-amount-to-user-s-decimal-notation/m-p/5372618#M1235848</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-04-02T08:12:55Z</dc:date>
    </item>
    <item>
      <title>Re: Converting amount to user's decimal notation</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/converting-amount-to-user-s-decimal-notation/m-p/5372619#M1235849</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;This message was moderated.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 02 Apr 2009 08:13:27 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/converting-amount-to-user-s-decimal-notation/m-p/5372619#M1235849</guid>
      <dc:creator>anuj_srivastava</dc:creator>
      <dc:date>2009-04-02T08:13:27Z</dc:date>
    </item>
    <item>
      <title>Re: Converting amount to user's decimal notation</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/converting-amount-to-user-s-decimal-notation/m-p/5372620#M1235850</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;&lt;/P&gt;&lt;P&gt;write : amount to t_amount.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;use  field t_amount in bdc.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 02 Apr 2009 08:17:30 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/converting-amount-to-user-s-decimal-notation/m-p/5372620#M1235850</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-04-02T08:17:30Z</dc:date>
    </item>
    <item>
      <title>Re: Converting amount to user's decimal notation</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/converting-amount-to-user-s-decimal-notation/m-p/5372621#M1235851</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Anuj,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I read the link you have provided...i tried with those options..but still am not able to get it.&lt;/P&gt;&lt;P&gt;Can you please explain little more clearly, so that i can make use of it.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Cheers,&lt;/P&gt;&lt;P&gt;Sri.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 02 Apr 2009 08:41:59 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/converting-amount-to-user-s-decimal-notation/m-p/5372621#M1235851</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-04-02T08:41:59Z</dc:date>
    </item>
    <item>
      <title>Re: Converting amount to user's decimal notation</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/converting-amount-to-user-s-decimal-notation/m-p/5372622#M1235852</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;You need to use the WRITE..TO.. statment to convert the amount format as per the user profile. Please gothrough my answer in the post.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 02 Apr 2009 08:45:46 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/converting-amount-to-user-s-decimal-notation/m-p/5372622#M1235852</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-04-02T08:45:46Z</dc:date>
    </item>
    <item>
      <title>Re: Converting amount to user's decimal notation</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/converting-amount-to-user-s-decimal-notation/m-p/5372623#M1235853</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;Can u check what is the value for the field in table T005X. ??&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 02 Apr 2009 08:51:04 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/converting-amount-to-user-s-decimal-notation/m-p/5372623#M1235853</guid>
      <dc:creator>anuj_srivastava</dc:creator>
      <dc:date>2009-04-02T08:51:04Z</dc:date>
    </item>
    <item>
      <title>Re: Converting amount to user's decimal notation</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/converting-amount-to-user-s-decimal-notation/m-p/5372624#M1235854</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I used the land as DE and for DE the field XDEZP is ' '&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 02 Apr 2009 08:53:37 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/converting-amount-to-user-s-decimal-notation/m-p/5372624#M1235854</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-04-02T08:53:37Z</dc:date>
    </item>
    <item>
      <title>Re: Converting amount to user's decimal notation</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/converting-amount-to-user-s-decimal-notation/m-p/5372625#M1235855</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Sri ,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;So it seems if you are using the write statement then amount will be diaplayed as xx.xxx,yy instead of what the user setting has been done in Su01.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Try these link hope it solves ur problem.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A class="jive_macro jive_macro_message" href="https://community.sap.com/" __jive_macro_name="message" modifiedtitle="true" __default_attr="7138301"&gt;&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;A class="jive_macro jive_macro_message" href="https://community.sap.com/" __jive_macro_name="message" modifiedtitle="true" __default_attr="7002899"&gt;&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards ,&lt;/P&gt;&lt;P&gt;Anuj&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 02 Apr 2009 09:00:26 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/converting-amount-to-user-s-decimal-notation/m-p/5372625#M1235855</guid>
      <dc:creator>anuj_srivastava</dc:creator>
      <dc:date>2009-04-02T09:00:26Z</dc:date>
    </item>
    <item>
      <title>Re: Converting amount to user's decimal notation</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/converting-amount-to-user-s-decimal-notation/m-p/5372626#M1235856</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Sri ,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If we specify the country key the system do not consider the settings from the user master record and searches table T005X for the country key. If the country key exists, the system sets sy-subrc equal to 0 and formats the output of all the 'WRITE' statements according to the settings defined in T005X. If the country key you specified does not exist, the system sets sy-subrc equal to 4 and formats for all 'WRITE' statements with the decimal characters as period '.'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards ,&lt;/P&gt;&lt;P&gt;Anuj&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 02 Apr 2009 09:02:51 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/converting-amount-to-user-s-decimal-notation/m-p/5372626#M1235856</guid>
      <dc:creator>anuj_srivastava</dc:creator>
      <dc:date>2009-04-02T09:02:51Z</dc:date>
    </item>
    <item>
      <title>Re: Converting amount to user's decimal notation</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/converting-amount-to-user-s-decimal-notation/m-p/5372627#M1235857</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks to all for your help and ideas.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Found another solution.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Cheers,&lt;/P&gt;&lt;P&gt;Sri.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 02 Apr 2009 09:08:58 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/converting-amount-to-user-s-decimal-notation/m-p/5372627#M1235857</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-04-02T09:08:58Z</dc:date>
    </item>
    <item>
      <title>Re: Converting amount to user's decimal notation</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/converting-amount-to-user-s-decimal-notation/m-p/5372628#M1235858</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Srikirthi,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Could you please let me know how u solved this problem?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards &lt;/P&gt;&lt;P&gt; Balu&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 01 Oct 2009 10:20:45 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/converting-amount-to-user-s-decimal-notation/m-p/5372628#M1235858</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-10-01T10:20:45Z</dc:date>
    </item>
    <item>
      <title>Re: Converting amount to user's decimal notation</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/converting-amount-to-user-s-decimal-notation/m-p/5372629#M1235859</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;Could u please let me know the solution. i am also facing same probelm..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;thanks in advance&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 05 Oct 2009 14:00:51 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/converting-amount-to-user-s-decimal-notation/m-p/5372629#M1235859</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-10-05T14:00:51Z</dc:date>
    </item>
    <item>
      <title>Re: Converting amount to user's decimal notation</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/converting-amount-to-user-s-decimal-notation/m-p/5372630#M1235860</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi&lt;/P&gt;&lt;P&gt;Could u please let me know the solution. i am also facing same probelm..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks in advance&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 05 Oct 2009 14:02:06 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/converting-amount-to-user-s-decimal-notation/m-p/5372630#M1235860</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-10-05T14:02:06Z</dc:date>
    </item>
  </channel>
</rss>

