<?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: Batch input - decimal value - comma or point in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/batch-input-decimal-value-comma-or-point/m-p/3609417#M869419</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 can use the keyword TRANSLATE.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;DATA:    c_pointc(2) TYPE c VALUE '.,'  .

TRANSLATE  lv_amount USING c_pointc.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 31 Mar 2008 06:31:23 GMT</pubDate>
    <dc:creator>asik_shameem</dc:creator>
    <dc:date>2008-03-31T06:31:23Z</dc:date>
    <item>
      <title>Batch input - decimal value - comma or point</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/batch-input-decimal-value-comma-or-point/m-p/3609415#M869417</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 have created a program with batch input.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Now i have a field which is a decimal value. Here i have the comma/point problem.&lt;/P&gt;&lt;P&gt;This is because of different configuration of the decimal format in the user settings.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Is there a function module which converts the decimal value into the right decimal format of the logged on user?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I know the fm BAPI_CURRENCY_CONV_TO_EXTERNAL and PP_CATT_CONVERT_DECIMAL_POINT.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;But i think thats not the right ones.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regards&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 31 Mar 2008 06:11:46 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/batch-input-decimal-value-comma-or-point/m-p/3609415#M869417</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-03-31T06:11:46Z</dc:date>
    </item>
    <item>
      <title>Re: Batch input - decimal value - comma or point</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/batch-input-decimal-value-comma-or-point/m-p/3609416#M869418</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Don't bother about the user settings. Just pass the value with out any "," or Thousand separator. Simply pass the value.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;example : value is 10,000.00&lt;/P&gt;&lt;P&gt;                then pass it 10000.00&lt;/P&gt;&lt;P&gt;conversion will take care automatically according to user settings.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You need to take care of convertion from "10,000.00" to 10000.00&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thats all. Don't make it complicate.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 31 Mar 2008 06:23:46 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/batch-input-decimal-value-comma-or-point/m-p/3609416#M869418</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-03-31T06:23:46Z</dc:date>
    </item>
    <item>
      <title>Re: Batch input - decimal value - comma or point</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/batch-input-decimal-value-comma-or-point/m-p/3609417#M869419</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 can use the keyword TRANSLATE.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;DATA:    c_pointc(2) TYPE c VALUE '.,'  .

TRANSLATE  lv_amount USING c_pointc.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 31 Mar 2008 06:31:23 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/batch-input-decimal-value-comma-or-point/m-p/3609417#M869419</guid>
      <dc:creator>asik_shameem</dc:creator>
      <dc:date>2008-03-31T06:31:23Z</dc:date>
    </item>
    <item>
      <title>Re: Batch input - decimal value - comma or point</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/batch-input-decimal-value-comma-or-point/m-p/3609418#M869420</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi frnd.&lt;/P&gt;&lt;P&gt;u can do it in a very easy method.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;eg- if u have to written a value 12.36 &lt;/P&gt;&lt;P&gt;u can write it 1236 / 100.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;or if u need it for any decimal value in %.&lt;/P&gt;&lt;P&gt; u can write 1.33% of 64.&lt;/P&gt;&lt;P&gt;u can write it as  64 * 133 / 100.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 31 Mar 2008 07:10:20 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/batch-input-decimal-value-comma-or-point/m-p/3609418#M869420</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-03-31T07:10:20Z</dc:date>
    </item>
  </channel>
</rss>

