<?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: Problem with integers. in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-integers/m-p/2176399#M462284</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;ensure that the character field doesn't contain any sp.characters, for ex: if u run the following program, it goes for a dump as the system can't interpret the value '123,456' as a number.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;REPORT  z_test1.&lt;/P&gt;&lt;P&gt;data:&lt;/P&gt;&lt;P&gt; w_char(7) type c value '123,456',&lt;/P&gt;&lt;P&gt; w_int type i value 123456789.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; w_int = w_char.&lt;/P&gt;&lt;P&gt; write:w_int.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 02 May 2007 11:56:29 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2007-05-02T11:56:29Z</dc:date>
    <item>
      <title>Problem with integers.</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-integers/m-p/2176395#M462280</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;I am trying to pass a value of 9999999999 from a character field to an integer field but the program goes into dump.Why is it so and how can it be resolved?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Sandeep.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 02 May 2007 11:46:29 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-integers/m-p/2176395#M462280</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-05-02T11:46:29Z</dc:date>
    </item>
    <item>
      <title>Re: Problem with integers.</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-integers/m-p/2176396#M462281</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;whats the dump message?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;also tell the declaration of the char field and the interger field&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 02 May 2007 11:51:58 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-integers/m-p/2176396#M462281</guid>
      <dc:creator>athavanraja</dc:creator>
      <dc:date>2007-05-02T11:51:58Z</dc:date>
    </item>
    <item>
      <title>Re: Problem with integers.</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-integers/m-p/2176397#M462282</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello Sandeep,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The interger can hold only 8 digits.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If u want to have more than 8 digits then move the value to the Packed numbers.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If useful reward.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Vasanth&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 02 May 2007 11:52:04 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-integers/m-p/2176397#M462282</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-05-02T11:52:04Z</dc:date>
    </item>
    <item>
      <title>Re: Problem with integers.</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-integers/m-p/2176398#M462283</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;The source field must contain a number in mathematical or commercial notation. Exception: A source field that contains only blank characters is interpreted as the number zero. Scientific notation is not allowed, unless it can be interpreted as mathematical notation. Decimal placesare rounded to whole-numbered values. If the number lies within the value range of data types i, b or s, it is converted into the internal representation of an integral number, otherwise a treatable exception is raised. Prior to release 6.10, an exception is also raised when the source field was specified as the text field literal '-2147483648'&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The problem I think is user setting ..why dont u use Move &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;santhosh&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 02 May 2007 11:53:41 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-integers/m-p/2176398#M462283</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-05-02T11:53:41Z</dc:date>
    </item>
    <item>
      <title>Re: Problem with integers.</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-integers/m-p/2176399#M462284</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;ensure that the character field doesn't contain any sp.characters, for ex: if u run the following program, it goes for a dump as the system can't interpret the value '123,456' as a number.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;REPORT  z_test1.&lt;/P&gt;&lt;P&gt;data:&lt;/P&gt;&lt;P&gt; w_char(7) type c value '123,456',&lt;/P&gt;&lt;P&gt; w_int type i value 123456789.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; w_int = w_char.&lt;/P&gt;&lt;P&gt; write:w_int.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 02 May 2007 11:56:29 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-integers/m-p/2176399#M462284</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-05-02T11:56:29Z</dc:date>
    </item>
    <item>
      <title>Re: Problem with integers.</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-integers/m-p/2176400#M462285</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Please try it using ...declaring that interger as:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;data: i(15) type i.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;it will work fine.... it is all beacuse integer can hold only eight values by default and for increasing it you have to declare the lenght for it.... &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope that it solves your doubt.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Jayant.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please reward if helpful&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 02 May 2007 11:57:16 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-integers/m-p/2176400#M462285</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-05-02T11:57:16Z</dc:date>
    </item>
    <item>
      <title>Re: Problem with integers.</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-integers/m-p/2176401#M462286</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;see this link:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="http://help.sap.com/saphelp_nw04/helpdata/en/fc/eb2fd9358411d1829f0000e829fbfe/content.htm" target="test_blank"&gt;http://help.sap.com/saphelp_nw04/helpdata/en/fc/eb2fd9358411d1829f0000e829fbfe/content.htm&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;i think that the number you want to convert is higher than the limit of type i&lt;/P&gt;&lt;P&gt;2**31-1 = 4294967295.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regards,&lt;/P&gt;&lt;P&gt;Paisante&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 02 May 2007 11:59:59 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-integers/m-p/2176401#M462286</guid>
      <dc:creator>rodrigo_paisante3</dc:creator>
      <dc:date>2007-05-02T11:59:59Z</dc:date>
    </item>
  </channel>
</rss>

