<?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: Difference between NUMC &amp; INT in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/difference-between-numc-int/m-p/2340568#M515773</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;NUMC is a character data type and INT is of integer data type&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 05 Jun 2007 03:19:59 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2007-06-05T03:19:59Z</dc:date>
    <item>
      <title>Difference between NUMC &amp; INT</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/difference-between-numc-int/m-p/2340563#M515768</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;HI all,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;        What is the difference between NUMC &amp;amp; INT&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks &amp;amp; Regards,&lt;/P&gt;&lt;P&gt;jogu_vinesh@yahoo.com&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 04 Jun 2007 05:05:59 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/difference-between-numc-int/m-p/2340563#M515768</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-06-04T05:05:59Z</dc:date>
    </item>
    <item>
      <title>Re: Difference between NUMC &amp; INT</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/difference-between-numc-int/m-p/2340564#M515769</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;NUMC is a character datatype and INT is of integer datattype.&lt;/P&gt;&lt;P&gt;if you assign a numc variable a value of 5 it stores as '00005'&lt;/P&gt;&lt;P&gt;whereas a int value stores as 5 only.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regards,&lt;/P&gt;&lt;P&gt;Navneeth.K&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 04 Jun 2007 06:13:10 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/difference-between-numc-int/m-p/2340564#M515769</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-06-04T06:13:10Z</dc:date>
    </item>
    <item>
      <title>Re: Difference between NUMC &amp; INT</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/difference-between-numc-int/m-p/2340565#M515770</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi siddivinesh,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;type &amp;lt;b&amp;gt;numc&amp;lt;/b&amp;gt; we can use for telephone no's, postal codes and etc,&lt;/P&gt;&lt;P&gt;type &amp;lt;b&amp;gt;int&amp;lt;/b&amp;gt; we can use for numbers.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regards,&lt;/P&gt;&lt;P&gt;seshu.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 04 Jun 2007 06:59:00 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/difference-between-numc-int/m-p/2340565#M515770</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-06-04T06:59:00Z</dc:date>
    </item>
    <item>
      <title>Re: Difference between NUMC &amp; INT</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/difference-between-numc-int/m-p/2340566#M515771</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;Numeric Types&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;As well as the five non-numeric types (text field (C), numeric text field (N), date field (D), time field (T), and hexadecimal field (X)), there are three numeric types, used in ABAP to display and calculate numbers. Data type N is not a numeric type. Type N objects can only contain numeric characters (0...9), but are not represented internally as numbers. Typical type N fields are account numbers and zip codes.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;integers - type I&lt;/P&gt;&lt;P&gt;The value range of type I numbers is -2*&lt;STRONG&gt;31 to 2&lt;/STRONG&gt;*31-1 and includes only whole numbers. Non-integer results of arithmetic operations (e.g. fractions) are rounded, not truncated. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You can use type I data for counters, numbers of items, indexes, time periods, and so on.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Packed numbers - type P&lt;/P&gt;&lt;P&gt;Type P data allows digits after the decimal point. The number of decimal places is generic, and is determined in the program. The value range of type P data depends on its size and the number of digits after the decimal point. The valid size can be any value from 1 to 16 bytes. Two decimal digits are packed into one byte, while the last byte contains one digit and the sign. Up to 14 digits are allowed after the decimal point. The initial value is zero. When working with type P data, it is a good idea to set the program attribute Fixed point arithmetic.Otherwise, type P numbers are treated as integers.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You can use type P data for such values as distances, weights, amounts of money, and so on.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Floating point numbers - type F&lt;/P&gt;&lt;P&gt;The value range of type F numbers is 1x10*&lt;STRONG&gt;-307 to 1x10&lt;/STRONG&gt;*308 for positive and negative numbers, including 0 (zero). The accuracy range is approximately 15 decimals, depending on the floating point arithmetic of the hardware platform. Since type F data is internally converted to a binary system, rounding errors can occur. Although the ABAP processor tries to minimize these effects, you should not use type F data if high accuracy is required. Instead, use type P data.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You use type F fields when you need to cope with very large value ranges and rounding errors are not critical.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Using I and F fields for calculations is quicker than using P fields. Arithmetic operations using I and F fields are very similar to the actual machine code operations, while P fields require more support from the software. Nevertheless, you have to use type P data to meet accuracy or value range requirements.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Character types&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Of the five non-numeric types, the four types C, D, N, and T are character types. Fields with these types are known as character fields. Each position in one of these fields takes up enough space for the code of one character. Currently, ABAP only works with single-byte codes such as ASCII and EBCDI. However, an adaptation to UNICODE is in preparation. Under UNICODE, each character occupies two or four bytes. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Reward if it is helpful.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regards,&lt;/P&gt;&lt;P&gt;Omkar.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 04 Jun 2007 13:06:30 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/difference-between-numc-int/m-p/2340566#M515771</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-06-04T13:06:30Z</dc:date>
    </item>
    <item>
      <title>Re: Difference between NUMC &amp; INT</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/difference-between-numc-int/m-p/2340567#M515772</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;NUMC -&amp;gt; Character Type , Supports offset &lt;/P&gt;&lt;P&gt;INT -&amp;gt; Numeric type - no offset supported&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;guarav&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 04 Jun 2007 13:54:15 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/difference-between-numc-int/m-p/2340567#M515772</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-06-04T13:54:15Z</dc:date>
    </item>
    <item>
      <title>Re: Difference between NUMC &amp; INT</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/difference-between-numc-int/m-p/2340568#M515773</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;NUMC is a character data type and INT is of integer data type&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 05 Jun 2007 03:19:59 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/difference-between-numc-int/m-p/2340568#M515773</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-06-05T03:19:59Z</dc:date>
    </item>
    <item>
      <title>Re: Difference between NUMC &amp; INT</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/difference-between-numc-int/m-p/2340569#M515774</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;In NUMC field you can use characters also, means its a numeric character. it can be used for telephone numbers and pincodes etc which donot require mathematical calculation.&lt;/P&gt;&lt;P&gt;But in INT you have to use only digits.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Naveen&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 05 Jun 2007 03:52:58 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/difference-between-numc-int/m-p/2340569#M515774</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-06-05T03:52:58Z</dc:date>
    </item>
  </channel>
</rss>

