<?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: Data type Conversion from floating to fixed number in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/data-type-conversion-from-floating-to-fixed-number/m-p/6012178#M1346281</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Hari,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;       Try with this.  &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;data: val1 type f, val2 type p DECIMALS 2.&lt;/P&gt;&lt;P&gt;val1 = '9.000000000000000E+05'.&lt;/P&gt;&lt;P&gt;val2 = val1.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If it helps to you, please mark that question as resolved.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Sreekala.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 07 Aug 2009 11:31:06 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2009-08-07T11:31:06Z</dc:date>
    <item>
      <title>Data type Conversion from floating to fixed number</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/data-type-conversion-from-floating-to-fixed-number/m-p/6012175#M1346278</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;Whether any BAPI to convert floating point numbers like  " 9.000000000000000E+05 to decimal like 900000.00 ".&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Hari&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 07 Aug 2009 10:51:11 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/data-type-conversion-from-floating-to-fixed-number/m-p/6012175#M1346278</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-08-07T10:51:11Z</dc:date>
    </item>
    <item>
      <title>Re: Data type Conversion from floating to fixed number</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/data-type-conversion-from-floating-to-fixed-number/m-p/6012176#M1346279</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;MOVE or COMPUTE, automatic conversion will be executed, look at [Conversion table for source field type decfloat16, decfloat34 |http://help.sap.com/abapdocu/en/ABENCONVERSION_TYPE_DECFLOAT.htm]&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;If your question is related to BAPI and quantity and amount field in BAPI, look also at [Converting Between Int. and Ext. Data Formats and Structures|http://help.sap.com/saphelp_nw04/helpdata/EN/a5/3ec9ea4ac011d1894e0000e829fbbd/frameset.htm]&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Raymond&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 07 Aug 2009 10:59:48 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/data-type-conversion-from-floating-to-fixed-number/m-p/6012176#M1346279</guid>
      <dc:creator>RaymondGiuseppi</dc:creator>
      <dc:date>2009-08-07T10:59:48Z</dc:date>
    </item>
    <item>
      <title>Re: Data type Conversion from floating to fixed number</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/data-type-conversion-from-floating-to-fixed-number/m-p/6012177#M1346280</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;No need bapi for this.&lt;/P&gt;&lt;P&gt;Declare new variable and move value:&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
data: val1 type f, val2 type i.
val1 = '9.000000000000000E+05'.
val2 = val1.
&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 07 Aug 2009 11:01:11 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/data-type-conversion-from-floating-to-fixed-number/m-p/6012177#M1346280</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-08-07T11:01:11Z</dc:date>
    </item>
    <item>
      <title>Re: Data type Conversion from floating to fixed number</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/data-type-conversion-from-floating-to-fixed-number/m-p/6012178#M1346281</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Hari,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;       Try with this.  &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;data: val1 type f, val2 type p DECIMALS 2.&lt;/P&gt;&lt;P&gt;val1 = '9.000000000000000E+05'.&lt;/P&gt;&lt;P&gt;val2 = val1.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If it helps to you, please mark that question as resolved.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Sreekala.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 07 Aug 2009 11:31:06 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/data-type-conversion-from-floating-to-fixed-number/m-p/6012178#M1346281</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-08-07T11:31:06Z</dc:date>
    </item>
  </channel>
</rss>

