<?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: regarding Decimal notation in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-decimal-notation/m-p/8213115#M1627540</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;this will work fine at your user level. for users with different decimal settings, you need to put the code that i mentioed earlier.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Chandra&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 12 Oct 2011 12:46:29 GMT</pubDate>
    <dc:creator>ChandrashekharMahajan</dc:creator>
    <dc:date>2011-10-12T12:46:29Z</dc:date>
    <item>
      <title>regarding Decimal notation</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-decimal-notation/m-p/8213109#M1627534</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;I'm facing an issue in displaying an Quantity field in the report output. I declared a field of type MENGE_D (quantity field) and in debugging i can see the value say 125.000, but when i executed the report, the field value is changing from 125.000 to 125,000 !!!!!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Even i cross-checked by maintaining User profile -&amp;gt; Own data, but of no use,  Please provide me your valuable inputs&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;TIA&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Suren&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 12 Oct 2011 09:20:24 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-decimal-notation/m-p/8213109#M1627534</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2011-10-12T09:20:24Z</dc:date>
    </item>
    <item>
      <title>Re: regarding Decimal notation</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-decimal-notation/m-p/8213110#M1627535</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;does that quantity field of yours have an according field with unit of measurement assigned to it?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 12 Oct 2011 09:23:29 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-decimal-notation/m-p/8213110#M1627535</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2011-10-12T09:23:29Z</dc:date>
    </item>
    <item>
      <title>Re: regarding Decimal notation</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-decimal-notation/m-p/8213111#M1627536</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 below code to covert it properly.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;        CALL FUNCTION 'SUSR_USER_DEFAULTS_GET'&lt;/P&gt;&lt;P&gt;          EXPORTING&lt;/P&gt;&lt;P&gt;            user_name           = sy-uname&lt;/P&gt;&lt;P&gt;          IMPORTING&lt;/P&gt;&lt;P&gt;            user_defaults       = ls_user02&lt;/P&gt;&lt;P&gt;          EXCEPTIONS&lt;/P&gt;&lt;P&gt;            user_name_not_exist = 1&lt;/P&gt;&lt;P&gt;            OTHERS              = 2.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;        IF sy-subrc &amp;lt;&amp;gt; 0.&lt;/P&gt;&lt;P&gt;          EXIT.&lt;/P&gt;&lt;P&gt;        ENDIF.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;        CASE ls_user02-dcpfm.&lt;/P&gt;&lt;P&gt;          WHEN 'X'.&lt;/P&gt;&lt;P&gt;            REPLACE ',' IN Z_MENGE WITH ''.&lt;/P&gt;&lt;P&gt;          WHEN 'Y'.&lt;/P&gt;&lt;P&gt;            REPLACE ',' IN Z_MENGE WITH '.'.&lt;/P&gt;&lt;P&gt;          WHEN OTHERS.&lt;/P&gt;&lt;P&gt;            REPLACE '.' IN Z_MENGE WITH ''.&lt;/P&gt;&lt;P&gt;            REPLACE ',' IN Z_MENGE WITH '.'.&lt;/P&gt;&lt;P&gt;        ENDCASE.&lt;/P&gt;&lt;P&gt;      ENDIF.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I hope this will resolve your issue.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Chandra&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 12 Oct 2011 09:29:00 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-decimal-notation/m-p/8213111#M1627536</guid>
      <dc:creator>ChandrashekharMahajan</dc:creator>
      <dc:date>2011-10-12T09:29:00Z</dc:date>
    </item>
    <item>
      <title>Re: regarding Decimal notation</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-decimal-notation/m-p/8213112#M1627537</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;     Check the defaults maintained in the user profile in SU01-&amp;gt; Under Defaults Tab -&amp;gt; Decimal Notation ?. This is the notation you are getting in the output. Change it according to your need, log off the system and relogin for the changes to take effect and run the report. To do it dynamically do as commented (usage of FM SUSR_USER_DEFAULTS_GET) above in the program.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 12 Oct 2011 09:44:24 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-decimal-notation/m-p/8213112#M1627537</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2011-10-12T09:44:24Z</dc:date>
    </item>
    <item>
      <title>Re: regarding Decimal notation</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-decimal-notation/m-p/8213113#M1627538</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks for your reply...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;No field related to Unit of measurement assigned to my field&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 12 Oct 2011 10:18:11 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-decimal-notation/m-p/8213113#M1627538</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2011-10-12T10:18:11Z</dc:date>
    </item>
    <item>
      <title>Re: regarding Decimal notation</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-decimal-notation/m-p/8213114#M1627539</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;Your default settings of decimal notation is ','.&lt;/P&gt;&lt;P&gt;Debugger doesn't refer this default setting of user and so you see '125.000'.&lt;/P&gt;&lt;P&gt;If you prefer to see as debugger,go and change manually in tcode : SU01&lt;/P&gt;&lt;P&gt;give your username and enter in edit mode.Then goto tab 'Fixed Values'&lt;/P&gt;&lt;P&gt;and change the decimal representation as how you prefer.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regards&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 12 Oct 2011 10:19:31 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-decimal-notation/m-p/8213114#M1627539</guid>
      <dc:creator>former_member712377</dc:creator>
      <dc:date>2011-10-12T10:19:31Z</dc:date>
    </item>
    <item>
      <title>Re: regarding Decimal notation</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-decimal-notation/m-p/8213115#M1627540</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;this will work fine at your user level. for users with different decimal settings, you need to put the code that i mentioed earlier.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Chandra&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 12 Oct 2011 12:46:29 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-decimal-notation/m-p/8213115#M1627540</guid>
      <dc:creator>ChandrashekharMahajan</dc:creator>
      <dc:date>2011-10-12T12:46:29Z</dc:date>
    </item>
    <item>
      <title>Re: regarding Decimal notation</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-decimal-notation/m-p/8213116#M1627541</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Suren,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;what kind of instruction do you use to display the field ?&lt;/P&gt;&lt;P&gt;WRITE ?&lt;/P&gt;&lt;P&gt;is it an ALV ?&lt;/P&gt;&lt;P&gt;other...?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 12 Oct 2011 13:32:44 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-decimal-notation/m-p/8213116#M1627541</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2011-10-12T13:32:44Z</dc:date>
    </item>
  </channel>
</rss>

