<?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: Exponential to Numeric Conversion in ABAP in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/exponential-to-numeric-conversion-in-abap/m-p/6347251#M1398387</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Have you checked the topic post date?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 26 Mar 2013 11:46:05 GMT</pubDate>
    <dc:creator>SharathYaralkattimath</dc:creator>
    <dc:date>2013-03-26T11:46:05Z</dc:date>
    <item>
      <title>Exponential to Numeric Conversion in ABAP</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/exponential-to-numeric-conversion-in-abap/m-p/6347245#M1398381</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;This is regrardng the conversion of Exponential to Numeric values in ABAP.I have an exponential Value 4.8E+47 .I want to convert to numerical .If i use the Exponential Function ,It is agian yielding another Exponent value.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If the Power is more than 47,then there could be multiple steps and In all the case ,it is giving exponent values only.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;But I need the numeric value which later should rounded off to 3 decimals.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please guide me if there is any Function module or a way to resolve this issue.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Kranti Yamparala.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 11 Nov 2009 05:59:50 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/exponential-to-numeric-conversion-in-abap/m-p/6347245#M1398381</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-11-11T05:59:50Z</dc:date>
    </item>
    <item>
      <title>Re: Exponential to Numeric Conversion in ABAP</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/exponential-to-numeric-conversion-in-abap/m-p/6347246#M1398382</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;declare a variable of type I.&lt;/P&gt;&lt;P&gt;and move the exponential value to this variable. this variable will have the numeric value.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 11 Nov 2009 06:03:14 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/exponential-to-numeric-conversion-in-abap/m-p/6347246#M1398382</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-11-11T06:03:14Z</dc:date>
    </item>
    <item>
      <title>Re: Exponential to Numeric Conversion in ABAP</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/exponential-to-numeric-conversion-in-abap/m-p/6347247#M1398383</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Kranti,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Use&lt;/P&gt;&lt;P&gt;data: Var  type P with decimal 3.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;move the value to Var.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;it works for me.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regards&lt;/P&gt;&lt;P&gt;Aeda&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 11 Nov 2009 06:03:45 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/exponential-to-numeric-conversion-in-abap/m-p/6347247#M1398383</guid>
      <dc:creator>NAeda</dc:creator>
      <dc:date>2009-11-11T06:03:45Z</dc:date>
    </item>
    <item>
      <title>Re: Exponential to Numeric Conversion in ABAP</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/exponential-to-numeric-conversion-in-abap/m-p/6347248#M1398384</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Aeda...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks for your reply.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;When i tried in the way it is working small exponentails and it is dumping for E+21.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Any pointer to this?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;KY.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 11 Nov 2009 06:18:31 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/exponential-to-numeric-conversion-in-abap/m-p/6347248#M1398384</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-11-11T06:18:31Z</dc:date>
    </item>
    <item>
      <title>Re: Exponential to Numeric Conversion in ABAP</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/exponential-to-numeric-conversion-in-abap/m-p/6347249#M1398385</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Kranti,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;you just have to move once to a float variable. Rightafter you can move the float value to any variable you need.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Kind regards,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Yavuz&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 26 Mar 2013 09:36:48 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/exponential-to-numeric-conversion-in-abap/m-p/6347249#M1398385</guid>
      <dc:creator>xient</dc:creator>
      <dc:date>2013-03-26T09:36:48Z</dc:date>
    </item>
    <item>
      <title>Re: Exponential to Numeric Conversion in ABAP</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/exponential-to-numeric-conversion-in-abap/m-p/6347250#M1398386</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Dear Kranti,&lt;/P&gt;&lt;P&gt;Please check at link &lt;A _jive_internal="true" href="https://answers.sap.com/thread/1271914"&gt;http://scn.sap.com/thread/1271914&lt;/A&gt; for same problem&lt;/P&gt;&lt;P&gt;with regards&lt;/P&gt;&lt;P&gt;vikas pandey&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 26 Mar 2013 11:32:57 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/exponential-to-numeric-conversion-in-abap/m-p/6347250#M1398386</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2013-03-26T11:32:57Z</dc:date>
    </item>
    <item>
      <title>Re: Exponential to Numeric Conversion in ABAP</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/exponential-to-numeric-conversion-in-abap/m-p/6347251#M1398387</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Have you checked the topic post date?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 26 Mar 2013 11:46:05 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/exponential-to-numeric-conversion-in-abap/m-p/6347251#M1398387</guid>
      <dc:creator>SharathYaralkattimath</dc:creator>
      <dc:date>2013-03-26T11:46:05Z</dc:date>
    </item>
    <item>
      <title>Re: Exponential to Numeric Conversion in ABAP</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/exponential-to-numeric-conversion-in-abap/m-p/6347252#M1398388</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hey Vikas,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;did you ever try the given FM there? First of all there is no FM called "&lt;STRONG&gt;QSS0_FLTP_TO_CHAR_CONVERSION" &lt;/STRONG&gt;in every system, as you maybe take notice of the prefix. There are just these FMs called " CHAR_FLTP_CONVERSION" or "FLTP_CHAR_CONVERSION". Maybe you mean them. But, nevertheless these are not easy to use FM. Maybe you should try and read the other postings in advance.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;As I said in my post - and this is the fastest way - you just have to move. That's all. No FM, no Method no nothing ...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Just: &lt;BR /&gt;e_output = l_float = i_input.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Yavuz&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 26 Mar 2013 11:56:15 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/exponential-to-numeric-conversion-in-abap/m-p/6347252#M1398388</guid>
      <dc:creator>xient</dc:creator>
      <dc:date>2013-03-26T11:56:15Z</dc:date>
    </item>
    <item>
      <title>Re: Exponential to Numeric Conversion in ABAP</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/exponential-to-numeric-conversion-in-abap/m-p/6347253#M1398389</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Yes - I did. Does it chance anything? Is there a rule not to reply to old postings?! &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Old postings are also references for "new" problems - so it makes no sence to find unsolved postings. Or not?!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 26 Mar 2013 12:04:53 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/exponential-to-numeric-conversion-in-abap/m-p/6347253#M1398389</guid>
      <dc:creator>xient</dc:creator>
      <dc:date>2013-03-26T12:04:53Z</dc:date>
    </item>
    <item>
      <title>Re: Exponential to Numeric Conversion in ABAP</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/exponential-to-numeric-conversion-in-abap/m-p/6347254#M1398390</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;SPAN style="color: #333333; font-size: 12px; background-color: #ffffff;"&gt;Dear Kranti,&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please check this thread &lt;A _jive_internal="true" href="https://answers.sap.com/docs/DOC-43918"&gt;Simple routine to convert exponential values to float &lt;/A&gt;that solves this issue.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Mohammed Mohsen&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 11 Jul 2013 22:34:38 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/exponential-to-numeric-conversion-in-abap/m-p/6347254#M1398390</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2013-07-11T22:34:38Z</dc:date>
    </item>
    <item>
      <title>Re: Exponential to Numeric Conversion in ABAP</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/exponential-to-numeric-conversion-in-abap/m-p/6347255#M1398391</link>
      <description>&lt;P&gt;I agree with Yavuz, I came across this when looking for an answer to the same problem - 12 years later! It's sad to see that many users don't understand that a forum is here to help others with the same issue too and not only themselves. &lt;/P&gt;</description>
      <pubDate>Fri, 22 Oct 2021 09:18:45 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/exponential-to-numeric-conversion-in-abap/m-p/6347255#M1398391</guid>
      <dc:creator>philippeaddor</dc:creator>
      <dc:date>2021-10-22T09:18:45Z</dc:date>
    </item>
  </channel>
</rss>

