<?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 64-bit unsigned integer  data type in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/64-bit-unsigned-integer-data-type/m-p/4442499#M1053892</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;I have one maybe stupid question&lt;/P&gt;&lt;P&gt;We are doing integration with sap and I need to create some tables. I need some fields with 64-bit unsigned integer. &lt;/P&gt;&lt;P&gt;I need it to maintain seq.controled counters. What data type in sap corresponds to 64bit u-int or 32-bit u-int? Or I have to use another data type?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;thank you in advance&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 09 Sep 2008 07:48:02 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2008-09-09T07:48:02Z</dc:date>
    <item>
      <title>64-bit unsigned integer  data type</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/64-bit-unsigned-integer-data-type/m-p/4442499#M1053892</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;I have one maybe stupid question&lt;/P&gt;&lt;P&gt;We are doing integration with sap and I need to create some tables. I need some fields with 64-bit unsigned integer. &lt;/P&gt;&lt;P&gt;I need it to maintain seq.controled counters. What data type in sap corresponds to 64bit u-int or 32-bit u-int? Or I have to use another data type?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;thank you in advance&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 09 Sep 2008 07:48:02 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/64-bit-unsigned-integer-data-type/m-p/4442499#M1053892</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-09-09T07:48:02Z</dc:date>
    </item>
    <item>
      <title>Re: 64-bit unsigned integer  data type</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/64-bit-unsigned-integer-data-type/m-p/4442500#M1053893</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Depending on your byte size, perhaps INT4?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 09 Sep 2008 08:00:20 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/64-bit-unsigned-integer-data-type/m-p/4442500#M1053893</guid>
      <dc:creator>matt</dc:creator>
      <dc:date>2008-09-09T08:00:20Z</dc:date>
    </item>
    <item>
      <title>Re: 64-bit unsigned integer  data type</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/64-bit-unsigned-integer-data-type/m-p/4442501#M1053894</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thank you, &lt;/P&gt;&lt;P&gt;As I understood from  SAP BOL, INT4 is 32-bit with sign. does sap have 4-byte unsigned data type?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 09 Sep 2008 08:08:12 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/64-bit-unsigned-integer-data-type/m-p/4442501#M1053894</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-09-09T08:08:12Z</dc:date>
    </item>
    <item>
      <title>Re: 64-bit unsigned integer  data type</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/64-bit-unsigned-integer-data-type/m-p/4442502#M1053895</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;SAP doesn't have unsigned 4-byte integer as a type.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You could use Data type RAW.  E.g. domain RAW4, gives you 4 bytes of uninterpreted binary data.  If your byte length is 16, then that's 64 bit.  It'd be a bit of not very difficult work to convert this to a number at the application level.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You'd have to work a bit to convert that data type into an integer at app level.  Why particularly &lt;STRONG&gt;must&lt;/STRONG&gt; your counter be an unsigned 4-byte integer.  Why not, e.g. a packed decimal with 0 dp? &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;matt&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 09 Sep 2008 08:45:17 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/64-bit-unsigned-integer-data-type/m-p/4442502#M1053895</guid>
      <dc:creator>matt</dc:creator>
      <dc:date>2008-09-09T08:45:17Z</dc:date>
    </item>
    <item>
      <title>Re: 64-bit unsigned integer  data type</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/64-bit-unsigned-integer-data-type/m-p/4442503#M1053896</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Paket decimal? ok. I supposed that low level operations with integer data type are faster&lt;/P&gt;&lt;P&gt;I know how OS stack works with unsigned integer and with signed bit+floating point&lt;/P&gt;&lt;P&gt;Could I use packet decimal without any problems with system performance?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 09 Sep 2008 10:00:18 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/64-bit-unsigned-integer-data-type/m-p/4442503#M1053896</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-09-09T10:00:18Z</dc:date>
    </item>
  </channel>
</rss>

