<?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: Handling Exponential Value in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/handling-exponential-value/m-p/8313615#M1636705</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;But it doesn't work for exponential value&lt;/P&gt;&lt;P&gt;5.53382E+15, which converted value should be&lt;/P&gt;&lt;P&gt;5533815000176000&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 15 Nov 2011 08:16:45 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2011-11-15T08:16:45Z</dc:date>
    <item>
      <title>Handling Exponential Value</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/handling-exponential-value/m-p/8313613#M1636703</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;My program needs to read values from excel file given by the bank into internal table. One of the column contains exponential values. Without changing the format on excel, how could i handle it on SAP? I tried FM QSS0_FLTP_TO_CHAR_CONVERSION. Im trying to convert the value of 5.53E+15 to 5530000000000000, but it returned me 5,53E 15 instead. This FM seems to work on certain values only. Please advise.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 15 Nov 2011 06:22:06 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/handling-exponential-value/m-p/8313613#M1636703</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2011-11-15T06:22:06Z</dc:date>
    </item>
    <item>
      <title>Re: Handling Exponential Value</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/handling-exponential-value/m-p/8313614#M1636704</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;Check the below code this will help you....&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;data:
  ti_saldos_wrbtr_pack(16) type p decimals 2,
  ti_saldos_wrbtr_floa     type f value '5.53E+15'.
move ti_saldos_wrbtr_floa TO ti_saldos_wrbtr_pack.

write:
  ti_saldos_wrbtr_floa,
  ti_saldos_wrbtr_pack.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Surya&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 15 Nov 2011 07:15:30 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/handling-exponential-value/m-p/8313614#M1636704</guid>
      <dc:creator>former_member186055</dc:creator>
      <dc:date>2011-11-15T07:15:30Z</dc:date>
    </item>
    <item>
      <title>Re: Handling Exponential Value</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/handling-exponential-value/m-p/8313615#M1636705</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;But it doesn't work for exponential value&lt;/P&gt;&lt;P&gt;5.53382E+15, which converted value should be&lt;/P&gt;&lt;P&gt;5533815000176000&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 15 Nov 2011 08:16:45 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/handling-exponential-value/m-p/8313615#M1636705</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2011-11-15T08:16:45Z</dc:date>
    </item>
    <item>
      <title>Re: Handling Exponential Value</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/handling-exponential-value/m-p/8313616#M1636706</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;    There shouldnt be a problem with the code above . 5.53382E+15 will obviously not be interpreted by the program as &lt;/P&gt;&lt;P&gt;5533815000176000. For that you will have to pass 5.533815000176E+15 .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;And when a write statement is encountered for this value , the format in which the value will be output will depend on the user settings that is maintained for the user through SU01.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;But in your case i guess you want only conversion so moving the value as given in code above should work fine .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards, &lt;/P&gt;&lt;P&gt;Arun&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 15 Nov 2011 10:08:32 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/handling-exponential-value/m-p/8313616#M1636706</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2011-11-15T10:08:32Z</dc:date>
    </item>
  </channel>
</rss>

