<?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 Comma into Dot for Amount value in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/converting-comma-into-dot-for-amount-value/m-p/5031936#M1170475</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello Vishnu,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;That is what i have done. FRAC returns me the "Value of the decimal places of the argument ". It does not depend on the decimal separator.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;BR,&lt;/P&gt;&lt;P&gt;Suhas&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 12 Jan 2009 11:32:16 GMT</pubDate>
    <dc:creator>SuhaSaha</dc:creator>
    <dc:date>2009-01-12T11:32:16Z</dc:date>
    <item>
      <title>Converting Comma into Dot for Amount value</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/converting-comma-into-dot-for-amount-value/m-p/5031929#M1170468</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;I need to convert the amount value in comma to dot say 1000,00 to 1000.00.Any function module is there to convert it.After converting it i need to pass this value as exporting parameter to a function module having data type as character(lenght 13).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thnks&lt;/P&gt;&lt;P&gt;Deb&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 12 Jan 2009 11:03:42 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/converting-comma-into-dot-for-amount-value/m-p/5031929#M1170468</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-01-12T11:03:42Z</dc:date>
    </item>
    <item>
      <title>Re: Converting Comma into Dot for Amount value</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/converting-comma-into-dot-for-amount-value/m-p/5031930#M1170469</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Goto System-&amp;gt;User Profile-&amp;gt;Own data&lt;/P&gt;&lt;P&gt;Defaults tab..Maintain the desired one in field Decimal Notation&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 12 Jan 2009 11:07:50 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/converting-comma-into-dot-for-amount-value/m-p/5031930#M1170469</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-01-12T11:07:50Z</dc:date>
    </item>
    <item>
      <title>Re: Converting Comma into Dot for Amount value</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/converting-comma-into-dot-for-amount-value/m-p/5031931#M1170470</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;Check the table USR01 for user defaults (DCPFM), based on the value you change the decimal notation.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope it helps!!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;let me know for any further help!!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Pavan&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 12 Jan 2009 11:16:02 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/converting-comma-into-dot-for-amount-value/m-p/5031931#M1170470</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-01-12T11:16:02Z</dc:date>
    </item>
    <item>
      <title>Re: Converting Comma into Dot for Amount value</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/converting-comma-into-dot-for-amount-value/m-p/5031932#M1170471</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello Deb,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Try the code below:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
DATA:
V_AMT  TYPE WRBTR VALUE '5000,00',
V_INT1 TYPE NUMC10,
V_DEC1 TYPE NUMC2,
V_DATA TYPE CHAR13.

V_INT1 = TRUNC( V_AMT ).
V_DEC1 = FRAC( V_AMT ).


CONCATENATE V_INT1 '.' V_DEC1 INTO V_DATA.

WRITE: V_DATA.

&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope this helps.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;BR,&lt;/P&gt;&lt;P&gt;Suhas&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 12 Jan 2009 11:19:45 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/converting-comma-into-dot-for-amount-value/m-p/5031932#M1170471</guid>
      <dc:creator>SuhaSaha</dc:creator>
      <dc:date>2009-01-12T11:19:45Z</dc:date>
    </item>
    <item>
      <title>Re: Converting Comma into Dot for Amount value</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/converting-comma-into-dot-for-amount-value/m-p/5031933#M1170472</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;Either maintain it in the User profile if you always want to run this way.&lt;/P&gt;&lt;P&gt;Maintain whichever decimal notation is preferred. This has tobe done for the user who will be executing the report..&lt;/P&gt;&lt;P&gt;Or you wish to change onlyin your report then you may use TRANSLATE wa_text USING ',..,' at the time of output..&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 12 Jan 2009 11:21:47 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/converting-comma-into-dot-for-amount-value/m-p/5031933#M1170472</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-01-12T11:21:47Z</dc:date>
    </item>
    <item>
      <title>Re: Converting Comma into Dot for Amount value</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/converting-comma-into-dot-for-amount-value/m-p/5031934#M1170473</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello Suhas,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I guess, the decimal notation is not constant value (&lt;STRONG&gt;.&lt;/STRONG&gt;), it will vary based on the user defaults...&lt;/P&gt;&lt;P&gt;so it should dynamically change based on the user defaults.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Pavan&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 12 Jan 2009 11:24:08 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/converting-comma-into-dot-for-amount-value/m-p/5031934#M1170473</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-01-12T11:24:08Z</dc:date>
    </item>
    <item>
      <title>Re: Converting Comma into Dot for Amount value</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/converting-comma-into-dot-for-amount-value/m-p/5031935#M1170474</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 &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;replace all occurrences of ',' in &amp;lt;your field name&amp;gt; with '.'.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 12 Jan 2009 11:31:21 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/converting-comma-into-dot-for-amount-value/m-p/5031935#M1170474</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-01-12T11:31:21Z</dc:date>
    </item>
    <item>
      <title>Re: Converting Comma into Dot for Amount value</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/converting-comma-into-dot-for-amount-value/m-p/5031936#M1170475</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello Vishnu,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;That is what i have done. FRAC returns me the "Value of the decimal places of the argument ". It does not depend on the decimal separator.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;BR,&lt;/P&gt;&lt;P&gt;Suhas&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 12 Jan 2009 11:32:16 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/converting-comma-into-dot-for-amount-value/m-p/5031936#M1170475</guid>
      <dc:creator>SuhaSaha</dc:creator>
      <dc:date>2009-01-12T11:32:16Z</dc:date>
    </item>
    <item>
      <title>Re: Converting Comma into Dot for Amount value</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/converting-comma-into-dot-for-amount-value/m-p/5031937#M1170476</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Debabrata,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Did you try with &lt;STRONG&gt;REPLACE&lt;/STRONG&gt; statement ?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;Check this code snippet:

DATA: a TYPE string VALUE '5000,00'.
REPLACE ALL OCCURRENCES OF ',' IN:
        a WITH '.' .
WRITE a.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 12 Jan 2009 11:37:32 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/converting-comma-into-dot-for-amount-value/m-p/5031937#M1170476</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-01-12T11:37:32Z</dc:date>
    </item>
    <item>
      <title>Re: Converting Comma into Dot for Amount value</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/converting-comma-into-dot-for-amount-value/m-p/5031938#M1170477</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;Have a look at the following Thread, it will solve out your problem&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;[Replace , with . or space|&lt;A class="jive_macro jive_macro_thread" href="https://community.sap.com/" __jive_macro_name="thread" modifiedtitle="true" __default_attr="1185907"&gt;&lt;/A&gt;;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Kind Regards,&lt;/P&gt;&lt;P&gt;Faisal&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 21 Jan 2009 11:16:52 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/converting-comma-into-dot-for-amount-value/m-p/5031938#M1170477</guid>
      <dc:creator>faisalatsap</dc:creator>
      <dc:date>2009-01-21T11:16:52Z</dc:date>
    </item>
  </channel>
</rss>

