<?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 string to decimal in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/converting-string-to-decimal/m-p/8994612#M1697496</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Try replacing the specialn character using REPLACE statement and then move the content to a&lt;/P&gt;&lt;P&gt;decimal variable.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 17 Aug 2012 04:37:33 GMT</pubDate>
    <dc:creator>JoffyJohn</dc:creator>
    <dc:date>2012-08-17T04:37:33Z</dc:date>
    <item>
      <title>Converting string to decimal</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/converting-string-to-decimal/m-p/8994611#M1697495</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 have a string like say, "28.08.2012 21:30:00". I need the entire string to be converted into a decimal value as it is. How do I proceed with this? I'm new to ABAP.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Ninaada&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 17 Aug 2012 04:27:30 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/converting-string-to-decimal/m-p/8994611#M1697495</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2012-08-17T04:27:30Z</dc:date>
    </item>
    <item>
      <title>Re: Converting string to decimal</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/converting-string-to-decimal/m-p/8994612#M1697496</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Try replacing the specialn character using REPLACE statement and then move the content to a&lt;/P&gt;&lt;P&gt;decimal variable.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 17 Aug 2012 04:37:33 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/converting-string-to-decimal/m-p/8994612#M1697496</guid>
      <dc:creator>JoffyJohn</dc:creator>
      <dc:date>2012-08-17T04:37:33Z</dc:date>
    </item>
    <item>
      <title>Re: Converting string to decimal</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/converting-string-to-decimal/m-p/8994613#M1697497</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Got it to work. Just moved the string to decimal values.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 17 Aug 2012 04:50:31 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/converting-string-to-decimal/m-p/8994613#M1697497</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2012-08-17T04:50:31Z</dc:date>
    </item>
    <item>
      <title>Re: Converting string to decimal</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/converting-string-to-decimal/m-p/8994614#M1697498</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Call the Function Module : WSAF_CONV_STRING_TO_DECIMAL&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 17 Aug 2012 04:54:44 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/converting-string-to-decimal/m-p/8994614#M1697498</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2012-08-17T04:54:44Z</dc:date>
    </item>
    <item>
      <title>Re: Converting string to decimal</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/converting-string-to-decimal/m-p/8994615#M1697499</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;Try this.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN class="L1S52"&gt;DATA: p1 &lt;SPAN class="L1S52"&gt;TYPE&lt;/SPAN&gt; string &lt;SPAN class="L1S52"&gt;VALUE&lt;/SPAN&gt; &lt;SPAN class="L1S33"&gt;'28.08.2012 21:30:00'&lt;/SPAN&gt;.&lt;BR /&gt; &lt;BR /&gt; &lt;SPAN class="L1S52"&gt;DATA&lt;/SPAN&gt;: p2 &lt;SPAN class="L1S52"&gt;type&lt;/SPAN&gt; p&amp;nbsp; &lt;SPAN class="L1S52"&gt;DECIMALS&lt;/SPAN&gt; &lt;SPAN class="L1S32"&gt;1&lt;/SPAN&gt; .&lt;BR /&gt; &lt;BR /&gt; &lt;SPAN class="L1S52"&gt;REPLACE&lt;/SPAN&gt; &lt;SPAN class="L1S52"&gt;ALL&lt;/SPAN&gt; &lt;SPAN class="L1S52"&gt;OCCURRENCES&lt;/SPAN&gt; &lt;SPAN class="L1S52"&gt;OF&lt;/SPAN&gt; &lt;SPAN class="L1S33"&gt;'.'&lt;/SPAN&gt; &lt;SPAN class="L1S52"&gt;in&lt;/SPAN&gt; p1 &lt;SPAN class="L1S52"&gt;WITH&lt;/SPAN&gt; SPACE.&lt;BR /&gt; &lt;BR /&gt; &lt;SPAN class="L1S52"&gt;REPLACE&lt;/SPAN&gt; &lt;SPAN class="L1S52"&gt;ALL&lt;/SPAN&gt; &lt;SPAN class="L1S52"&gt;OCCURRENCES&lt;/SPAN&gt; &lt;SPAN class="L1S52"&gt;OF&lt;/SPAN&gt; &lt;SPAN class="L1S33"&gt;':'&lt;/SPAN&gt; &lt;SPAN class="L1S52"&gt;in&lt;/SPAN&gt; p1 &lt;SPAN class="L1S52"&gt;WITH&lt;/SPAN&gt; SPACE.&lt;BR /&gt; &lt;BR /&gt; &lt;SPAN class="L1S52"&gt;CONDENSE&lt;/SPAN&gt; P1 &lt;SPAN class="L1S52"&gt;NO&lt;/SPAN&gt;-GAPS.&lt;BR /&gt; P2 = P1.&lt;BR /&gt; &lt;BR /&gt; &lt;SPAN class="L1S52"&gt;WRITE&lt;/SPAN&gt; P2.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Riyas.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 17 Aug 2012 04:56:59 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/converting-string-to-decimal/m-p/8994615#M1697499</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2012-08-17T04:56:59Z</dc:date>
    </item>
    <item>
      <title>Re: Converting string to decimal</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/converting-string-to-decimal/m-p/8994616#M1697500</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;very basic -&amp;gt; un-marked as question.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 17 Aug 2012 08:08:36 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/converting-string-to-decimal/m-p/8994616#M1697500</guid>
      <dc:creator>ThomasZloch</dc:creator>
      <dc:date>2012-08-17T08:08:36Z</dc:date>
    </item>
  </channel>
</rss>

