<?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: easy one in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/easy-one/m-p/1803490#M344905</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Regarding your second point, what you state is not completely true...&lt;/P&gt;&lt;P&gt;Indeed, you can declare an internal table without any reference to the Data Dictionnary. E.g:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;types : begin of linetype,
          field1    type i,
          field2(3) type c,
          field3    type n,
        end of linetype.

data : table type table of linetype.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;All the lines will have the exact same type, though.&lt;/P&gt;&lt;P&gt;With the possible exception of deep structures, where one of the fields is a table. This table does not need to have the same number of entries for each line of its "container" table...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I think internal tables were designed to look like DB tables, in the beginning.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If you try to create more complex structures, you should use ABAP objects.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 29 Dec 2006 15:45:56 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2006-12-29T15:45:56Z</dc:date>
    <item>
      <title>easy one</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/easy-one/m-p/1803488#M344903</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;please somebody there !&lt;/P&gt;&lt;P&gt;q1]]What is the minimum and maximum values for all the Elementary data types---state individually?&lt;/P&gt;&lt;P&gt;q2]]why all the lines of an internal table  need to have the same datatype---i.e., the definition of internal table in the sap library notes?&lt;/P&gt;&lt;P&gt;thanks in advance&lt;/P&gt;&lt;P&gt;abaper&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 29 Dec 2006 05:34:32 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/easy-one/m-p/1803488#M344903</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-12-29T05:34:32Z</dc:date>
    </item>
    <item>
      <title>Re: easy one</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/easy-one/m-p/1803489#M344904</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;for the first question,&lt;/P&gt;&lt;P&gt;Just try to arrange it properly. i have distributed the header with '|'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;lt;b&amp;gt;Data Type | Initial &lt;/P&gt;&lt;P&gt;field length |&lt;/P&gt;&lt;P&gt;Valid&lt;/P&gt;&lt;P&gt;field length |&lt;/P&gt;&lt;P&gt;Initial value | Meaning |&amp;lt;/b&amp;gt;&lt;/P&gt;&lt;P&gt;Numeric types&lt;/P&gt;&lt;P&gt;I 4 4 0 Integer (whole number)&lt;/P&gt;&lt;P&gt;F 8 8 0 Floating point number&lt;/P&gt;&lt;P&gt;P 8 1 - 16 0 Packed number&lt;/P&gt;&lt;P&gt;Character types&lt;/P&gt;&lt;P&gt;C 1 1 - 65535 ' &amp;#133; ' Text field&lt;/P&gt;&lt;P&gt;(alphanumeric characters)&lt;/P&gt;&lt;P&gt;D 8 8 '00000000' Date field&lt;/P&gt;&lt;P&gt;(Format: YYYYMMDD)&lt;/P&gt;&lt;P&gt;N 1 1 - 65535 '0 &amp;#133; 0' Numeric text field&lt;/P&gt;&lt;P&gt;(numeric characters)&lt;/P&gt;&lt;P&gt;T 6 6 '000000' Time field&lt;/P&gt;&lt;P&gt;(format: HHMMSS)&lt;/P&gt;&lt;P&gt;Hexadecimal type&lt;/P&gt;&lt;P&gt;X 1 1 - 65535 X'0 &amp;#133; 0' Hexadecimal field&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;for the second question: if you have different types, then it will lead to a mismatch and you till get type conflict.so you need to use the same datatypes for a particular line.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;reward if helpful.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 29 Dec 2006 05:49:46 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/easy-one/m-p/1803489#M344904</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-12-29T05:49:46Z</dc:date>
    </item>
    <item>
      <title>Re: easy one</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/easy-one/m-p/1803490#M344905</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Regarding your second point, what you state is not completely true...&lt;/P&gt;&lt;P&gt;Indeed, you can declare an internal table without any reference to the Data Dictionnary. E.g:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;types : begin of linetype,
          field1    type i,
          field2(3) type c,
          field3    type n,
        end of linetype.

data : table type table of linetype.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;All the lines will have the exact same type, though.&lt;/P&gt;&lt;P&gt;With the possible exception of deep structures, where one of the fields is a table. This table does not need to have the same number of entries for each line of its "container" table...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I think internal tables were designed to look like DB tables, in the beginning.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If you try to create more complex structures, you should use ABAP objects.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 29 Dec 2006 15:45:56 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/easy-one/m-p/1803490#M344905</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-12-29T15:45:56Z</dc:date>
    </item>
    <item>
      <title>Re: easy one</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/easy-one/m-p/1803491#M344906</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi &lt;/P&gt;&lt;P&gt;q1]]What is the minimum and maximum values for all the Elementary data types---state individually?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;lt;a href="http://help.sap.com/saphelp_nw04/helpdata/en/fc/eb2fd9358411d1829f0000e829fbfe/content.htm"&amp;gt;ABAP Data types&amp;lt;/a&amp;gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="http://academic.uofs.edu/faculty/SP355/abap1.htm" target="test_blank"&gt;http://academic.uofs.edu/faculty/SP355/abap1.htm&lt;/A&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 29 Dec 2006 16:08:54 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/easy-one/m-p/1803491#M344906</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-12-29T16:08:54Z</dc:date>
    </item>
    <item>
      <title>Re: easy one</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/easy-one/m-p/1803492#M344907</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;HR originaltext="---------------------------------------------------------------------------------------------------" /&gt;&lt;P&gt;Type                  Field Length             Max Value               Min Value&lt;/P&gt;&lt;P&gt;-&lt;/P&gt;&lt;HR originaltext="---------------------------------------------------------------------------------------------------" /&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I                             4                          2&lt;SUP&gt;31-1                    -2&lt;/SUP&gt;31&lt;/P&gt;&lt;P&gt;F                            8                         1x10*&lt;STRONG&gt;308               1x10&lt;/STRONG&gt;*-307     &lt;/P&gt;&lt;P&gt;P                            8                         depends on size      depends on size&lt;/P&gt;&lt;P&gt;C                            1                                             NA                          &lt;/P&gt;&lt;P&gt;D                            8                              Format: YYYYMMDD                 &lt;/P&gt;&lt;P&gt;N                            1                          65535                     1&lt;/P&gt;&lt;P&gt;T                             6                             Format: HHMMSS&lt;/P&gt;&lt;P&gt;X                             1                         65535                      1&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;All lines of internal table should have the same datatype in order to avoid 'Type Mismatch'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;UL&gt;&lt;LI level="2" type="ul"&gt;&lt;P&gt;represents exponent.&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;/UL&gt;&lt;P&gt;NA - Not Applicable.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Plz reward points if helpful.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 29 Dec 2006 17:33:02 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/easy-one/m-p/1803492#M344907</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-12-29T17:33:02Z</dc:date>
    </item>
    <item>
      <title>Re: easy one</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/easy-one/m-p/1803493#M344908</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;good&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 14 Mar 2007 14:32:41 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/easy-one/m-p/1803493#M344908</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-03-14T14:32:41Z</dc:date>
    </item>
  </channel>
</rss>

