<?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: Why is there a data type NUMC? in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/why-is-there-a-data-type-numc/m-p/5969318#M1338971</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Lars,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Although it is indeed complicated in handling that data objects, there are some places where using them is better choice that using char types. I.e &lt;/P&gt;&lt;P&gt;- postal codes&lt;/P&gt;&lt;P&gt;- PO box numbers&lt;/P&gt;&lt;P&gt;- screen fields where only digits are allowed &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Ok, you may say that above are examples of leading zeros usage but it's much easier to handle them as strings as well. When concatenating we don't have to worry about zeros we might forget in front of data objects, which of course can change value we are interested in - if not provided. &lt;/P&gt;&lt;P&gt;Very often happend to me that in excel when comparing some values (after importing some data file) I forgot about leading zeros (i.e for some SUBTYPE field) which turned out be a pay in the neck before I indentified the issue. That's why I really appreciate N type in ABAP &lt;SPAN __jive_emoticon_name="happy"&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Also range should be of special importance here. Max bytes for N is 65535, while for integer is only 4 bytes, which implies what a®s said about field length.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Marcin&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 04 Aug 2009 20:25:54 GMT</pubDate>
    <dc:creator>MarcinPciak</dc:creator>
    <dc:date>2009-08-04T20:25:54Z</dc:date>
    <item>
      <title>Why is there a data type NUMC?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/why-is-there-a-data-type-numc/m-p/5969315#M1338968</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi ABAP masters,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;working in database support for several years I've very often seen the problems that arise from the awkward data type NUMC.&lt;/P&gt;&lt;P&gt;A numeric type stored as characters.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;What I always wondered is: what is this data type really good for?&lt;/P&gt;&lt;P&gt;The leading zero output display alone is hardly a valid reason to waste storage and complicate the usage of the data of that type.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I cannot imagine any use for this data type that wouldn't be better done by using integer types.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;So, if you &lt;STRONG&gt;know&lt;/STRONG&gt; what the reasoning behind this data type is, please let me know.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;thanks and best regards,&lt;/P&gt;&lt;P&gt;Lars&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 04 Aug 2009 19:49:10 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/why-is-there-a-data-type-numc/m-p/5969315#M1338968</guid>
      <dc:creator>lbreddemann</dc:creator>
      <dc:date>2009-08-04T19:49:10Z</dc:date>
    </item>
    <item>
      <title>Re: Why is there a data type NUMC?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/why-is-there-a-data-type-numc/m-p/5969316#M1338969</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;One advantage for NUMC will be maximum length&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;NUMC = 1-255&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I think for Integer &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;INT1 = 3&lt;/P&gt;&lt;P&gt;INT2 = 5&lt;/P&gt;&lt;P&gt;INT4 = 10&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;a®&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 04 Aug 2009 20:00:11 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/why-is-there-a-data-type-numc/m-p/5969316#M1338969</guid>
      <dc:creator>former_member194669</dc:creator>
      <dc:date>2009-08-04T20:00:11Z</dc:date>
    </item>
    <item>
      <title>Re: Why is there a data type NUMC?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/why-is-there-a-data-type-numc/m-p/5969317#M1338970</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;From what I understand, SAP can't buffer the tables unless the keys are in character type. The use of a numeric type with leading zeros stored as character is then necessary.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Altough I think I haven't seen an standard table key declared as numc, when that is necessary the alpha conversion is used against a character field&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 04 Aug 2009 20:21:36 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/why-is-there-a-data-type-numc/m-p/5969317#M1338970</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-08-04T20:21:36Z</dc:date>
    </item>
    <item>
      <title>Re: Why is there a data type NUMC?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/why-is-there-a-data-type-numc/m-p/5969318#M1338971</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Lars,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Although it is indeed complicated in handling that data objects, there are some places where using them is better choice that using char types. I.e &lt;/P&gt;&lt;P&gt;- postal codes&lt;/P&gt;&lt;P&gt;- PO box numbers&lt;/P&gt;&lt;P&gt;- screen fields where only digits are allowed &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Ok, you may say that above are examples of leading zeros usage but it's much easier to handle them as strings as well. When concatenating we don't have to worry about zeros we might forget in front of data objects, which of course can change value we are interested in - if not provided. &lt;/P&gt;&lt;P&gt;Very often happend to me that in excel when comparing some values (after importing some data file) I forgot about leading zeros (i.e for some SUBTYPE field) which turned out be a pay in the neck before I indentified the issue. That's why I really appreciate N type in ABAP &lt;SPAN __jive_emoticon_name="happy"&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Also range should be of special importance here. Max bytes for N is 65535, while for integer is only 4 bytes, which implies what a®s said about field length.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Marcin&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 04 Aug 2009 20:25:54 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/why-is-there-a-data-type-numc/m-p/5969318#M1338971</guid>
      <dc:creator>MarcinPciak</dc:creator>
      <dc:date>2009-08-04T20:25:54Z</dc:date>
    </item>
    <item>
      <title>Re: Why is there a data type NUMC?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/why-is-there-a-data-type-numc/m-p/5969319#M1338972</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&amp;gt; Altough I think I haven't seen an standard table key declared as numc, when that is necessary the alpha conversion is used against a character field&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hi Ramiro,&lt;/P&gt;&lt;P&gt;ahem... MANDT is NUMC, BUKRS is NUMC ... &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regards,&lt;/P&gt;&lt;P&gt;Lars&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;---&amp;gt; I've to take that back a bit... MANDT is indeed CLNT (the 3 character version of NUMC...)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Edited by: Lars Breddemann on Aug 5, 2009 12:02 AM&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 04 Aug 2009 22:01:05 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/why-is-there-a-data-type-numc/m-p/5969319#M1338972</guid>
      <dc:creator>lbreddemann</dc:creator>
      <dc:date>2009-08-04T22:01:05Z</dc:date>
    </item>
    <item>
      <title>Re: Why is there a data type NUMC?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/why-is-there-a-data-type-numc/m-p/5969320#M1338973</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello a®s,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;that sounds reasonable, although I get the feeling that this is your best guess, is it?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;But can you do anything with such large numbers (arithmetic operations?) or can you just store and retrieve them?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;thanks and best regards,&lt;/P&gt;&lt;P&gt;Lars&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 04 Aug 2009 22:11:05 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/why-is-there-a-data-type-numc/m-p/5969320#M1338973</guid>
      <dc:creator>lbreddemann</dc:creator>
      <dc:date>2009-08-04T22:11:05Z</dc:date>
    </item>
    <item>
      <title>Re: Why is there a data type NUMC?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/why-is-there-a-data-type-numc/m-p/5969321#M1338974</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;when number ,character and arithmetic operation are required&amp;nbsp;&amp;nbsp; &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 13 Jan 2014 05:18:47 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/why-is-there-a-data-type-numc/m-p/5969321#M1338974</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2014-01-13T05:18:47Z</dc:date>
    </item>
    <item>
      <title>Re: Why is there a data type NUMC?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/why-is-there-a-data-type-numc/m-p/5969322#M1338975</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;UL&gt;&lt;LI&gt;&lt;STRONG&gt;NUMC data type can be used to maintain positive numbers with leading Zeros&lt;/STRONG&gt;&lt;/LI&gt;&lt;LI&gt;Most of SAP's important numbers like Sales Order numbers, Customer numbers, Delivery documents,&lt;/LI&gt;&lt;LI&gt;Material numbers, Sales Org, Division, Company Codes, Distribution Channel are CHARs only&lt;/LI&gt;&lt;LI&gt;But if their Data is containing only digits, SAP Transactions will automatically add Leading zeros for them and store in the database as Raw data. &lt;/LI&gt;&lt;LI&gt;If those SAP numbers contains at least one non-digit character, then leading zeros will not be added.&lt;/LI&gt;&lt;LI&gt;Example: if 54 is assigned to BUKRS it will be stored in DB as 0054&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; if 5A is assigned to BUKRS it will be stored in DB as 5A only&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;&lt;STRONG&gt;Leading zero concept is very useful for Date and Time calculations.&lt;/STRONG&gt;&lt;/LI&gt;&lt;LI&gt;Month, Day, hours etc., must be declared as NUMC for better calculations&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Example:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; PARAMETERS p_year TYPE I.&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; "instead of Integer we can use type N LENGTH 4 also here&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; DATA&amp;nbsp; v_month TYPE N LENGTH 2.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; DATA&amp;nbsp; v_day&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; TYPE N LENGTH 2.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; DATA&amp;nbsp; v_year&amp;nbsp;&amp;nbsp;&amp;nbsp; TYPE N LENGTH 4.&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; then calculations will be easy&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; DATA&amp;nbsp; FDATE&amp;nbsp;&amp;nbsp; TYPE D.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; v_year = p_year.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; v_day&amp;nbsp; = 1.&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; "1st day of Month&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; DO 12 TIMES.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; v_month = sy-index.&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; "Leading zero will be added automatically&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; CONCATENATE v_year&amp;nbsp; v_month&amp;nbsp; v_day&amp;nbsp; INTO&amp;nbsp; FDATE.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; WRITE / FDATE.&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; "Every month 1st day of selected year&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; ENDDO.&amp;nbsp; &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; Example:&amp;nbsp; Customer number contains uneven digits.&amp;nbsp; It should be converted to a 10 digit number &lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; with "C" as 1st Character.&amp;nbsp; Logic will be&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; PARAMETERS custno TYPE I.&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; DATA&amp;nbsp; v1&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; TYPE&amp;nbsp; N&amp;nbsp; LENGTH&amp;nbsp; 10.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; DATA&amp;nbsp; str_custno&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; TYPE C LENGTH 11.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; v1 = custno.&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; "customer number will be converted to 10 digit number&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; CONCATENATE 'C'&amp;nbsp; V1&amp;nbsp;&amp;nbsp; INTO&amp;nbsp; str_custno.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;please correct me, if I am wrong&lt;/P&gt;&lt;P&gt;Thanks and Regards&lt;/P&gt;&lt;P&gt;Nagababu Tubati&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 25 Feb 2014 14:39:34 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/why-is-there-a-data-type-numc/m-p/5969322#M1338975</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2014-02-25T14:39:34Z</dc:date>
    </item>
    <item>
      <title>Re: Why is there a data type NUMC?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/why-is-there-a-data-type-numc/m-p/5969323#M1338976</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;&lt;/P&gt;&lt;P&gt;Numc fields can be concatenated.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;Have a look at &lt;/SPAN&gt;&lt;A class="jive-link-wiki-small" data-containerid="2015" data-containertype="14" data-objectid="47512" data-objecttype="102" href="http://scn.sap.com/docs/DOC-47512"&gt;http://scn.sap.com/docs/DOC-47512&lt;/A&gt;&lt;SPAN&gt; and the program included :&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;*----------------------------------------------------------------------*&lt;/P&gt;&lt;P&gt;TYPES: BEGIN OF tp_vald_1 .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;* Note the RENAMING WITH SUFFIX .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; INCLUDE TYPE tp_ent_xxx AS ent_001 RENAMING WITH SUFFIX _ent_001 .&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; INCLUDE TYPE tp_ent_xxx AS ent_002 RENAMING WITH SUFFIX _ent_002 .&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; INCLUDE TYPE tp_ent_xxx AS ent_003 RENAMING WITH SUFFIX _ent_003 .&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; INCLUDE TYPE tp_ent_xxx AS ent_004 RENAMING WITH SUFFIX _ent_004 .&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; INCLUDE TYPE tp_ent_xxx AS ent_005 RENAMING WITH SUFFIX _ent_005 .&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; INCLUDE TYPE tp_ent_xxx AS ent_006 RENAMING WITH SUFFIX _ent_006 .&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; INCLUDE TYPE tp_ent_xxx AS ent_007 RENAMING WITH SUFFIX _ent_007 .&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; INCLUDE TYPE tp_ent_xxx AS ent_008 RENAMING WITH SUFFIX _ent_008 .&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; INCLUDE TYPE tp_ent_xxx AS ent_009 RENAMING WITH SUFFIX _ent_009 .&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; INCLUDE TYPE tp_ent_xxx AS ent_010 RENAMING WITH SUFFIX _ent_010 .&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; INCLUDE TYPE tp_ent_xxx AS ent_011 RENAMING WITH SUFFIX _ent_011 .&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; INCLUDE TYPE tp_ent_xxx AS ent_012 RENAMING WITH SUFFIX _ent_012 .&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; INCLUDE TYPE tp_ent_xxx AS ent_013 RENAMING WITH SUFFIX _ent_013 .&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; col_pos&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; TYPE n LENGTH 3 ,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; CONCATENATE 'ENT_' &amp;lt;st_alv_hdrc_1&amp;gt;-col_pos INTO fieldname .&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; * Get specific week entry&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; ASSIGN COMPONENT fieldname OF STRUCTURE st_bffr_8 TO &amp;lt;st_ent_xxx&amp;gt; .&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;st_ent_xxx&amp;gt;-paymentsum&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; = &amp;lt;st_sflight&amp;gt;-paymentsum .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards .&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 25 Feb 2014 15:28:23 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/why-is-there-a-data-type-numc/m-p/5969323#M1338976</guid>
      <dc:creator>rosenberg_eitan</dc:creator>
      <dc:date>2014-02-25T15:28:23Z</dc:date>
    </item>
    <item>
      <title>Re: Why is there a data type NUMC?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/why-is-there-a-data-type-numc/m-p/5969324#M1338977</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Dear all&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I am quite surprised to see this ancient thread coming to life again &lt;SPAN __jive_emoticon_name="happy" __jive_macro_name="emoticon" class="jive_macro jive_emote" src="https://community.sap.com/599/images/emoticons/happy.gif"&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In order to close the thread I assigned "correct answer" now to the first 'grave digger' from 2012 and "helpful answer" to every other contributor. Please note that this is not meant as a valuation of your contribution, I really appreciate every one of them.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;My conclusion is: NUMC is handy for list processing of formatted numbers - just that &lt;SPAN __jive_emoticon_name="happy" __jive_macro_name="emoticon" class="jive_macro jive_emote" src="https://community.sap.com/599/images/emoticons/happy.gif"&gt;&lt;/SPAN&gt;. &lt;/P&gt;&lt;P&gt;As it is in principle possible to convert NUMC to a numeric data type and vice versa, there is not a hard functional limitation present with numeric data types.&lt;/P&gt;&lt;P&gt;NUMC simply is more easy to use for certain use cases.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks again everybody,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Lars&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 25 Feb 2014 16:33:01 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/why-is-there-a-data-type-numc/m-p/5969324#M1338977</guid>
      <dc:creator>lbreddemann</dc:creator>
      <dc:date>2014-02-25T16:33:01Z</dc:date>
    </item>
    <item>
      <title>Re: Why is there a data type NUMC?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/why-is-there-a-data-type-numc/m-p/5969325#M1338978</link>
      <description>&lt;P&gt;hehe... and once again in DWC + BW Bridge... &lt;/P&gt;</description>
      <pubDate>Thu, 15 Dec 2022 00:01:50 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/why-is-there-a-data-type-numc/m-p/5969325#M1338978</guid>
      <dc:creator>glenleslie</dc:creator>
      <dc:date>2022-12-15T00:01:50Z</dc:date>
    </item>
  </channel>
</rss>

