<?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: convert from exponential to normal integer in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/convert-from-exponential-to-normal-integer/m-p/2234898#M481224</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;No need FM, you can just move field with type F to type P.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
DATA: NUM1 TYPE F VALUE '1E+02',
      NUM2 TYPE P DECIMALS 2.
                                                                        
NUM2 = NUM1.
                                                                        
WRITE: / NUM2.
&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Ferry Lianto&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 11 May 2007 14:11:15 GMT</pubDate>
    <dc:creator>ferry_lianto</dc:creator>
    <dc:date>2007-05-11T14:11:15Z</dc:date>
    <item>
      <title>convert from exponential to normal integer</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/convert-from-exponential-to-normal-integer/m-p/2234894#M481220</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Friends,&lt;/P&gt;&lt;P&gt;Can you please help me suggesting the solutions for&lt;/P&gt;&lt;P&gt;conversion from format say &lt;/P&gt;&lt;P&gt;&amp;lt;b&amp;gt;1E+02   to 100&amp;lt;/b&amp;gt;&lt;/P&gt;&lt;P&gt;Please suggest any conversion function modules or standard solutions for the same&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thank you&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 11 May 2007 13:21:18 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/convert-from-exponential-to-normal-integer/m-p/2234894#M481220</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-05-11T13:21:18Z</dc:date>
    </item>
    <item>
      <title>Re: convert from exponential to normal integer</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/convert-from-exponential-to-normal-integer/m-p/2234895#M481221</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Welcome to SDN.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Check these FMs -KKEK_CONVERT_FLOAT_TO_CURR &amp;amp;&lt;/P&gt;&lt;P&gt;CHAR_FLTP_CONVERSION .&lt;/P&gt;&lt;P&gt;As an alternative just assign the value to type P variable and check.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Amit&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Reward all helpful replies.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 11 May 2007 13:26:43 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/convert-from-exponential-to-normal-integer/m-p/2234895#M481221</guid>
      <dc:creator>amit_khare</dc:creator>
      <dc:date>2007-05-11T13:26:43Z</dc:date>
    </item>
    <item>
      <title>Re: convert from exponential to normal integer</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/convert-from-exponential-to-normal-integer/m-p/2234896#M481222</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;if you want to calculate the value use the following&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;UL&gt;&lt;LI level="2" type="ul"&gt;&lt;P&gt;  : Exponentiation of the left with the right operand.&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;/UL&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Example:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;value =   2 ** 3.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;value will have 8.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope this is what you need&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Gabriel&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 11 May 2007 13:26:52 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/convert-from-exponential-to-normal-integer/m-p/2234896#M481222</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-05-11T13:26:52Z</dc:date>
    </item>
    <item>
      <title>Re: convert from exponential to normal integer</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/convert-from-exponential-to-normal-integer/m-p/2234897#M481223</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Amith,&lt;/P&gt;&lt;P&gt;actually i have the a character string as &lt;/P&gt;&lt;P&gt; a = 1E+02 &lt;/P&gt;&lt;P&gt;it cant be changed to packed number.&lt;/P&gt;&lt;P&gt;i tried using the fm sent by you CHAR_FLTP_CONVERSION.&lt;/P&gt;&lt;P&gt;but it did not help&lt;/P&gt;&lt;P&gt;now the thing the character string 'a' to an integer say 100.&lt;/P&gt;&lt;P&gt;Could you help me now regarding this&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 11 May 2007 14:02:24 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/convert-from-exponential-to-normal-integer/m-p/2234897#M481223</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-05-11T14:02:24Z</dc:date>
    </item>
    <item>
      <title>Re: convert from exponential to normal integer</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/convert-from-exponential-to-normal-integer/m-p/2234898#M481224</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;No need FM, you can just move field with type F to type P.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
DATA: NUM1 TYPE F VALUE '1E+02',
      NUM2 TYPE P DECIMALS 2.
                                                                        
NUM2 = NUM1.
                                                                        
WRITE: / NUM2.
&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Ferry Lianto&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 11 May 2007 14:11:15 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/convert-from-exponential-to-normal-integer/m-p/2234898#M481224</guid>
      <dc:creator>ferry_lianto</dc:creator>
      <dc:date>2007-05-11T14:11:15Z</dc:date>
    </item>
    <item>
      <title>Re: convert from exponential to normal integer</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/convert-from-exponential-to-normal-integer/m-p/2234899#M481225</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Check this routine -&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;data: a type string value '10E+02'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;data: b type f.&lt;/P&gt;&lt;P&gt;data: c type p.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; b = a.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; c = b.&lt;/P&gt;&lt;P&gt; write:/ b, c.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope this will help you.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Amit&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 13 May 2007 07:55:13 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/convert-from-exponential-to-normal-integer/m-p/2234899#M481225</guid>
      <dc:creator>amit_khare</dc:creator>
      <dc:date>2007-05-13T07:55:13Z</dc:date>
    </item>
  </channel>
</rss>

