<?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: How to convert decimal notation to comma notation in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-convert-decimal-notation-to-comma-notation/m-p/3745695#M901263</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;use statement: REPLACE '.' with ','.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards.&lt;/P&gt;&lt;P&gt;Dara.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 24 Apr 2008 11:22:54 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2008-04-24T11:22:54Z</dc:date>
    <item>
      <title>How to convert decimal notation to comma notation</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-convert-decimal-notation-to-comma-notation/m-p/3745692#M901260</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Folks,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have an issue in converting decimal notation to comma notation for France.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have changed the decimal notation in SU01 from 123.4 to 123,4 but when i run some custom program written by me it is extracting output as 123.4 than 123,4.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;So i want to have the output of report to conver all numerical values(&lt;STRONG&gt;from decimal format to comma format)&lt;/STRONG&gt; i.e., 123,4 format from the 123.4 format.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please help me in fixing this issue&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Edited by: Nishanth Kumar Reddy Chenchu on Apr 24, 2008 1:16 PM&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 24 Apr 2008 11:15:42 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-convert-decimal-notation-to-comma-notation/m-p/3745692#M901260</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-04-24T11:15:42Z</dc:date>
    </item>
    <item>
      <title>Re: How to convert decimal notation to comma notation</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-convert-decimal-notation-to-comma-notation/m-p/3745693#M901261</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;do this way ...&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
data : v_char(10) value '122.34'.

translate v_char using '.,'.

write : v_char.
  &lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 24 Apr 2008 11:20:18 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-convert-decimal-notation-to-comma-notation/m-p/3745693#M901261</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-04-24T11:20:18Z</dc:date>
    </item>
    <item>
      <title>Re: How to convert decimal notation to comma notation</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-convert-decimal-notation-to-comma-notation/m-p/3745694#M901262</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 following technique.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SPLIT FIELD1 AT '.'  INTO FIELD2 FIELD3 .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CONCATENATE FIELD2  ',' FIELD3 INTO FIELD4.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;here field1 is 123.4 and field2 --&amp;gt;  123 , field3 --&amp;gt;4&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Now concatenate into fieldd4 gives  123,4.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope this solves the problem.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Reward points if helpful.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks and regards.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 24 Apr 2008 11:21:14 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-convert-decimal-notation-to-comma-notation/m-p/3745694#M901262</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-04-24T11:21:14Z</dc:date>
    </item>
    <item>
      <title>Re: How to convert decimal notation to comma notation</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-convert-decimal-notation-to-comma-notation/m-p/3745695#M901263</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;use statement: REPLACE '.' with ','.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards.&lt;/P&gt;&lt;P&gt;Dara.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 24 Apr 2008 11:22:54 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-convert-decimal-notation-to-comma-notation/m-p/3745695#M901263</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-04-24T11:22:54Z</dc:date>
    </item>
    <item>
      <title>Re: How to convert decimal notation to comma notation</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-convert-decimal-notation-to-comma-notation/m-p/3745696#M901264</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;This will definitly help you:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Replace all occurrences of '.' in var with ',' .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Reward if useful.&lt;/P&gt;&lt;P&gt;Dara.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 24 Apr 2008 11:25:36 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-convert-decimal-notation-to-comma-notation/m-p/3745696#M901264</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-04-24T11:25:36Z</dc:date>
    </item>
    <item>
      <title>Re: How to convert decimal notation to comma notation</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-convert-decimal-notation-to-comma-notation/m-p/3745697#M901265</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks for the reply.&lt;/P&gt;&lt;P&gt;is there any way other than this by using SET/GET Parameters&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 24 Apr 2008 11:28:12 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-convert-decimal-notation-to-comma-notation/m-p/3745697#M901265</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-04-24T11:28:12Z</dc:date>
    </item>
    <item>
      <title>Re: How to convert decimal notation to comma notation</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-convert-decimal-notation-to-comma-notation/m-p/3745698#M901266</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;  you can use REPLACE and develope your own FM to handle the decimal notation change as per user profile.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Refer&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="3858171"&gt;&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Kiran Sure&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 24 Apr 2008 11:28:15 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-convert-decimal-notation-to-comma-notation/m-p/3745698#M901266</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-04-24T11:28:15Z</dc:date>
    </item>
    <item>
      <title>Re: How to convert decimal notation to comma notation</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-convert-decimal-notation-to-comma-notation/m-p/3745699#M901267</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Nishant,&lt;/P&gt;&lt;P&gt;U can use the statement &lt;STRONG&gt;WRITE TO&lt;/STRONG&gt;. This will write the data as per the user settings. When ever user changes his settings like decimal notations then this statement will write the data as per the current settings of the user.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DATA: l_amount1 TYPE wrbtr VALUE '123.45',&lt;/P&gt;&lt;P&gt;          l_amount(16) TYPE c.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;WRITE:/1 l_amount1.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;WRITE l_amount1 TO l_amount.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;WRITE:/1 l_amount.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Just copy paste above code in a sample program. First execute this program and note the output. Then change the user settings for decimal notations and log of from SAP(&lt;STRONG&gt;Because user settings will become active only after fresh&lt;/STRONG&gt; &lt;STRONG&gt;login&lt;/STRONG&gt;). Now execute ur report and see the difference. In this way u no need to change the program when ever user changes his settings.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;This thing not pnly applies for amount but also for date, time&lt;/STRONG&gt; &lt;STRONG&gt;Quantity fields&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Vinod&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 24 Apr 2008 11:34:21 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-convert-decimal-notation-to-comma-notation/m-p/3745699#M901267</guid>
      <dc:creator>vinod_vemuru2</dc:creator>
      <dc:date>2008-04-24T11:34:21Z</dc:date>
    </item>
    <item>
      <title>Re: How to convert decimal notation to comma notation</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-convert-decimal-notation-to-comma-notation/m-p/3745700#M901268</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Nishanth,&lt;/P&gt;&lt;P&gt;The overriding factor for the decimal notaion comes from the customising setting for the country. You can maintain this in the IMG as follows:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Sap Customizing Implementation Guide (transaction SPRO)&lt;/P&gt;&lt;P&gt;-&amp;gt; SAP Netweaver&lt;/P&gt;&lt;P&gt;-&amp;gt; General Settings&lt;/P&gt;&lt;P&gt;-&amp;gt; Set Countries&lt;/P&gt;&lt;P&gt;-&amp;gt; Define Countries in mSAP.com Systems (CRM, ERP, APO, BW, SEM,...)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The above path will lead you to maintenance view V_T005_BAS where you can change the decimal notation for the country.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Once the above has been done you should get the correct decimal notation appearing without having to perform any coding or other workaround.&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;Che&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 24 Apr 2008 11:45:38 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-convert-decimal-notation-to-comma-notation/m-p/3745700#M901268</guid>
      <dc:creator>che_eky</dc:creator>
      <dc:date>2008-04-24T11:45:38Z</dc:date>
    </item>
    <item>
      <title>Re: How to convert decimal notation to comma notation</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-convert-decimal-notation-to-comma-notation/m-p/3745701#M901269</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;its coz your user setting  &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;goto the transaction( for eg vk12)  &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;system -&lt;/P&gt;&lt;HR originaltext="------" /&gt;&lt;P&gt;&amp;gt;userprofile-----&amp;gt;owndata&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;goto defaults tab..change settings in the format you like...&lt;/P&gt;&lt;P&gt;&lt;/P&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;&lt;/P&gt;&lt;P&gt;regards&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 24 Apr 2008 13:49:57 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-convert-decimal-notation-to-comma-notation/m-p/3745701#M901269</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-04-24T13:49:57Z</dc:date>
    </item>
  </channel>
</rss>

