<?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 Convert currency amount format. in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/convert-currency-amount-format/m-p/2865577#M672061</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Dear All,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;How do I convert the currency amount format ACCORDING TO USER PROFILE's setting , as what happen in  FB01 .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;For example,   when you fill in  99999.00  it will  be changed to 99.999,00  because of the profile setting.  &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;My purpose of this conversion is because when i put  this "9999.00" into the BDC session,  it comes to me with the  error 'not an numeric value' , this is because the user profile i am using have the setting  000.000,00  which   the DOT is the 3rd digit separator  , and the COMA is the decimal dot.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This BDC will be used for all types of profile setting, so how do i convert that according to the setting ?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Or , do i dont need this coversion ?  I did it without any conversion, but it did not work.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thank you .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Message was edited by: &lt;/P&gt;&lt;P&gt;        Kokwei Wong&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 19 Sep 2007 12:23:45 GMT</pubDate>
    <dc:creator>kowong</dc:creator>
    <dc:date>2007-09-19T12:23:45Z</dc:date>
    <item>
      <title>Convert currency amount format.</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/convert-currency-amount-format/m-p/2865577#M672061</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Dear All,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;How do I convert the currency amount format ACCORDING TO USER PROFILE's setting , as what happen in  FB01 .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;For example,   when you fill in  99999.00  it will  be changed to 99.999,00  because of the profile setting.  &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;My purpose of this conversion is because when i put  this "9999.00" into the BDC session,  it comes to me with the  error 'not an numeric value' , this is because the user profile i am using have the setting  000.000,00  which   the DOT is the 3rd digit separator  , and the COMA is the decimal dot.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This BDC will be used for all types of profile setting, so how do i convert that according to the setting ?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Or , do i dont need this coversion ?  I did it without any conversion, but it did not work.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thank you .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Message was edited by: &lt;/P&gt;&lt;P&gt;        Kokwei Wong&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 19 Sep 2007 12:23:45 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/convert-currency-amount-format/m-p/2865577#M672061</guid>
      <dc:creator>kowong</dc:creator>
      <dc:date>2007-09-19T12:23:45Z</dc:date>
    </item>
    <item>
      <title>Re: Convert currency amount format.</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/convert-currency-amount-format/m-p/2865578#M672062</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;In the BDC right before the piece of code where you append the value into the BDCTAB, write your logic to convert the currency amount to the accepted format. Append this value to the BDCTAB. Hope this will help.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 19 Sep 2007 12:27:46 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/convert-currency-amount-format/m-p/2865578#M672062</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-09-19T12:27:46Z</dc:date>
    </item>
    <item>
      <title>Re: Convert currency amount format.</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/convert-currency-amount-format/m-p/2865579#M672063</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;make use of the WRITE..TO.. statement&lt;/P&gt;&lt;P&gt;Instead of passing the curr field to the BDCDATA table, move the contents of the curr field to a character field using the WRITE...TO.. statement and then pass the character field to the BDCDATA table. The WRITE..TO statement formats the character field according to the user settings.&lt;/P&gt;&lt;P&gt;ex:&lt;/P&gt;&lt;P&gt;  write curr_field TO char_field.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 19 Sep 2007 12:34:25 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/convert-currency-amount-format/m-p/2865579#M672063</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-09-19T12:34:25Z</dc:date>
    </item>
    <item>
      <title>Re: Convert currency amount format.</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/convert-currency-amount-format/m-p/2865580#M672064</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;Goto table USr01,&lt;/P&gt;&lt;P&gt;check the field DCPFM and change the currency according to the user settings&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;         	1.234.567,89&lt;/P&gt;&lt;P&gt;X	1,234,567.89&lt;/P&gt;&lt;P&gt;Y	1 234 567,89&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;then convert accordingly&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;REgards&lt;/P&gt;&lt;P&gt;Shiva&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 19 Sep 2007 12:35:06 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/convert-currency-amount-format/m-p/2865580#M672064</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-09-19T12:35:06Z</dc:date>
    </item>
    <item>
      <title>Re: Convert currency amount format.</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/convert-currency-amount-format/m-p/2865581#M672065</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Yeah, you got it ... thanks man..&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 19 Sep 2007 14:38:47 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/convert-currency-amount-format/m-p/2865581#M672065</guid>
      <dc:creator>kowong</dc:creator>
      <dc:date>2007-09-19T14:38:47Z</dc:date>
    </item>
  </channel>
</rss>

