<?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: Decimal Notation ........ in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/decimal-notation/m-p/4306834#M1026933</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 this logic..(but mostly afterthe end of the calculation --irrespective of the notation --- use this when either write or download happens)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;1)  SELECT SINGLE DCPFM&lt;/P&gt;&lt;P&gt;    FROM USR01&lt;/P&gt;&lt;P&gt;    INTO W_DCPFM&lt;/P&gt;&lt;P&gt;    WHERE BNAME EQ SY-UNAME.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; 2) CASE W_DCPFM.&lt;/P&gt;&lt;P&gt;    WHEN C_X.&lt;/P&gt;&lt;P&gt;      MOVE: C_COMMA TO W_DELIM1(1).&lt;/P&gt;&lt;P&gt;    WHEN C_Y.&lt;/P&gt;&lt;P&gt;      MOVE: SPACE   TO W_DELIM1(1).&lt;/P&gt;&lt;P&gt;    WHEN SPACE.&lt;/P&gt;&lt;P&gt;      MOVE: C_PERID TO W_DELIM1(1).&lt;/P&gt;&lt;P&gt;    ENDCASE.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;3)      TRANSLATE T_DOWNLOAD-NETWR USING W_DELIM1.&lt;/P&gt;&lt;P&gt;      CONDENSE T_DOWNLOAD-NETWR NO-GAPS.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Reward Points if helpful&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 01 Aug 2008 04:20:11 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2008-08-01T04:20:11Z</dc:date>
    <item>
      <title>Decimal Notation ........</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/decimal-notation/m-p/4306832#M1026931</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;I have problem, I set default Decimal Notation is : X 1,234,567.89 .In every report I coded, when it WRITE, amount display the same setting. But a report which was coded by other Abaper, I don't know why it always display format : 1.234.567,89, not same in setting, now I want to change it. Anybody know or any idea, pls tell me. Thanks a lot !&lt;/P&gt;&lt;P&gt;Code : WRITE : HBSID-DMBTR currency HBSID-WAERS.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 01 Aug 2008 02:54:22 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/decimal-notation/m-p/4306832#M1026931</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-08-01T02:54:22Z</dc:date>
    </item>
    <item>
      <title>Re: Decimal Notation ........</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/decimal-notation/m-p/4306833#M1026932</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;It's been a while since I've done much around formats and stuff, but I believe that the Write statement with the Currency addition to it will override any user settings for number formating and will use number formating specific to that countries formating.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The following link from the online help has more information and examples on this for you:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="http://help.sap.com/saphelp_nw70/helpdata/en/9f/dba1ef35c111d1829f0000e829fbfe/content.htm" target="test_blank"&gt;http://help.sap.com/saphelp_nw70/helpdata/en/9f/dba1ef35c111d1829f0000e829fbfe/content.htm&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;There is also stuff that may be in the program that uses the Set Country command.&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;~Ian&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 01 Aug 2008 03:02:54 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/decimal-notation/m-p/4306833#M1026932</guid>
      <dc:creator>ian_maxwell2</dc:creator>
      <dc:date>2008-08-01T03:02:54Z</dc:date>
    </item>
    <item>
      <title>Re: Decimal Notation ........</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/decimal-notation/m-p/4306834#M1026933</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 this logic..(but mostly afterthe end of the calculation --irrespective of the notation --- use this when either write or download happens)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;1)  SELECT SINGLE DCPFM&lt;/P&gt;&lt;P&gt;    FROM USR01&lt;/P&gt;&lt;P&gt;    INTO W_DCPFM&lt;/P&gt;&lt;P&gt;    WHERE BNAME EQ SY-UNAME.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; 2) CASE W_DCPFM.&lt;/P&gt;&lt;P&gt;    WHEN C_X.&lt;/P&gt;&lt;P&gt;      MOVE: C_COMMA TO W_DELIM1(1).&lt;/P&gt;&lt;P&gt;    WHEN C_Y.&lt;/P&gt;&lt;P&gt;      MOVE: SPACE   TO W_DELIM1(1).&lt;/P&gt;&lt;P&gt;    WHEN SPACE.&lt;/P&gt;&lt;P&gt;      MOVE: C_PERID TO W_DELIM1(1).&lt;/P&gt;&lt;P&gt;    ENDCASE.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;3)      TRANSLATE T_DOWNLOAD-NETWR USING W_DELIM1.&lt;/P&gt;&lt;P&gt;      CONDENSE T_DOWNLOAD-NETWR NO-GAPS.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Reward Points if helpful&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 01 Aug 2008 04:20:11 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/decimal-notation/m-p/4306834#M1026933</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-08-01T04:20:11Z</dc:date>
    </item>
  </channel>
</rss>

