<?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: internal tables in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/internal-tables/m-p/3526657#M848435</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;Internal Tables are of following types:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;STANDARD TABLE &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Defines the table as a standard table. Key access to a standard table uses a linear search. This means that the timne required for a search is in linear relation to the number of table entries. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You should use index operations to access standard tables. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SORTED TABLE &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Defines the table as one that is always saved correctly sorted. Key access to a sorted table uses a binary key. If the key is not unique, the system takes the entry with the lowest index. The runtime required for key access is logarithmically related to the number of table entries. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You can also access sorted tables by index operations. When you insert using an index, the system checks to ensure that the sort sequence has been correctly maintained. For this reason, it takes longer than inserting entries in a standard table. As a rule, you should only access sorted tables using their key.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;HASHED TABLE &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Defines the table as one that is managed with an internal hash procedure. You can imagine a hashed table as a set, whose elements you can address using their unique key. Unlike standard and sorted tables, you cannot access hash tables using an index. All entries in the table must have a unique key. Access time using the key is constant, regardless of the number of table entries&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;INDEX TABLE &lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;Standard and sorted tables belong to the generic class index tables. An index table is one that you can access using an index. You can currently only use the table type INDEX TABLE to specify the type of generic parameters in a FORM or a FUNCTION. Hashed tables are not index tables, and cannot therefore be passed to parameters defined as INDEX TABLE. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ANY TABLE &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Like INDEX TABLE, you use ANY TABLE to specify the type of any generic table parameter. The set of permitted operations for a table with type ANY TABLE consists of the intersection of all permitted operations for STANDARD, SORTED and HASHED TABLEs, and so is identical to the set of operations permitted for hashed tables. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Note in particular that you cannot use index access for tables with this type. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Reward if helpful.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 07 Mar 2008 08:51:18 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2008-03-07T08:51:18Z</dc:date>
    <item>
      <title>internal tables</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/internal-tables/m-p/3526656#M848434</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;how many types of &lt;STRONG&gt;internaltables&lt;/STRONG&gt; which criteria we use them in our program.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 07 Mar 2008 08:43:44 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/internal-tables/m-p/3526656#M848434</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-03-07T08:43:44Z</dc:date>
    </item>
    <item>
      <title>Re: internal tables</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/internal-tables/m-p/3526657#M848435</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;Internal Tables are of following types:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;STANDARD TABLE &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Defines the table as a standard table. Key access to a standard table uses a linear search. This means that the timne required for a search is in linear relation to the number of table entries. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You should use index operations to access standard tables. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SORTED TABLE &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Defines the table as one that is always saved correctly sorted. Key access to a sorted table uses a binary key. If the key is not unique, the system takes the entry with the lowest index. The runtime required for key access is logarithmically related to the number of table entries. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You can also access sorted tables by index operations. When you insert using an index, the system checks to ensure that the sort sequence has been correctly maintained. For this reason, it takes longer than inserting entries in a standard table. As a rule, you should only access sorted tables using their key.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;HASHED TABLE &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Defines the table as one that is managed with an internal hash procedure. You can imagine a hashed table as a set, whose elements you can address using their unique key. Unlike standard and sorted tables, you cannot access hash tables using an index. All entries in the table must have a unique key. Access time using the key is constant, regardless of the number of table entries&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;INDEX TABLE &lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;Standard and sorted tables belong to the generic class index tables. An index table is one that you can access using an index. You can currently only use the table type INDEX TABLE to specify the type of generic parameters in a FORM or a FUNCTION. Hashed tables are not index tables, and cannot therefore be passed to parameters defined as INDEX TABLE. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ANY TABLE &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Like INDEX TABLE, you use ANY TABLE to specify the type of any generic table parameter. The set of permitted operations for a table with type ANY TABLE consists of the intersection of all permitted operations for STANDARD, SORTED and HASHED TABLEs, and so is identical to the set of operations permitted for hashed tables. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Note in particular that you cannot use index access for tables with this type. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Reward if helpful.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 07 Mar 2008 08:51:18 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/internal-tables/m-p/3526657#M848435</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-03-07T08:51:18Z</dc:date>
    </item>
    <item>
      <title>Re: internal tables</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/internal-tables/m-p/3526658#M848436</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;types of internaltables :&lt;/P&gt;&lt;P&gt;--&amp;gt;standard tables&lt;/P&gt;&lt;P&gt;--&amp;gt;sorted tables&lt;/P&gt;&lt;P&gt;--&amp;gt;hashed tables&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;STANDARD table&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Key access to a standard table uses a linear search. This means that the time required for a search is in linear relation to the number of table entries.&lt;/P&gt;&lt;P&gt;You should use index operations to access standard tables.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SORTED table&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Defines the table as one that is always saved correctly sorted.&lt;/P&gt;&lt;P&gt;Key access to a sorted table uses a binary key. If the key is not unique, the system takes the entry with the lowest index. The runtime required for key access is logarithmically related to the number of table entries.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;HASHED table&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Defines the table as one that is managed with an internal hash procedure&lt;/P&gt;&lt;P&gt;You can only access a hashed table using the generic key operations or other generic operations ( SORT, LOOP, and so on). Explicit or implicit index operations (such as LOOP ... FROM oe INSERT itab within a LOOP) are not allowed.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;INDEX table&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;A table that can be accessed using an index.&lt;/P&gt;&lt;P&gt;Index table is only used to specify the type of generic parameters in a FORM or FUNCTION. That means that you can't create a table of type INDEX.&lt;/P&gt;&lt;P&gt;Standard tables and sorted tables are index tables.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Normally we use standard tables to increase the performance.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regards,&lt;/P&gt;&lt;P&gt;vineela.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 07 Mar 2008 08:51:38 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/internal-tables/m-p/3526658#M848436</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-03-07T08:51:38Z</dc:date>
    </item>
    <item>
      <title>Re: internal tables</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/internal-tables/m-p/3526659#M848437</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi,&lt;/P&gt;&lt;P&gt;refer to the links.&lt;/P&gt;&lt;P&gt;&lt;A href="http://help.sap.com/saphelp_nw04/helpdata/en/fc/eb35de358411d1829f0000e829fbfe/content.htm" target="test_blank"&gt;http://help.sap.com/saphelp_nw04/helpdata/en/fc/eb35de358411d1829f0000e829fbfe/content.htm&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;What Are Different Types Of Internal Tables and Their Usage &lt;/P&gt;&lt;P&gt;Standard Internal Tables &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Standard tables have a linear index. You can access them using either the index or the key. If you use the key, the response time is in linear relationship to the number of table entries. The key of a standard table is always non-unique, and you may not include any specification for the uniqueness in the table definition. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This table type is particularly appropriate if you want to address individual table entries using the index. This is the quickest way to access table entries. To fill a standard table, append lines using the (APPEND) statement. You should read, modify and delete lines by referring to the index (INDEX option with the relevant ABAP command).  The response time for accessing a standard table is in linear relation to the number of table entries. If you need to use key access, standard tables are appropriate if you can fill and process the table in separate steps. For example, you can fill a standard table by appending records and then sort it. If you then use key access with the binary search option (BINARY), the response time is in logarithmic relation to &lt;/P&gt;&lt;P&gt;the number of table entries. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Sorted Internal Tables &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Sorted tables are always saved correctly sorted by key. They also have a linear key, and, like standard tables, you can access them using either the table index or the key. When you use the key, the response time is in logarithmic relationship to the number of table entries, since the system uses a binary search. The key of a sorted table can be either unique, or non-unique, and you must specify either UNIQUE or NON-UNIQUE in the table definition.  Standard tables and sorted tables both belong to the generic group index tables. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This table type is particularly suitable if you want the table to be sorted while you are still adding entries to it. You fill the table using the (INSERT) statement, according to the sort sequence defined in the table key. Table entries that do not fit are recognised before they are inserted. The response time for access using the key is in logarithmic relation to the number of &lt;/P&gt;&lt;P&gt;table entries, since the system automatically uses a binary search. Sorted tables are appropriate for partially sequential processing in a LOOP, as long as the WHERE condition contains the beginning of the table key. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hashed Internal Tables &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hashes tables have no internal linear index. You can only access hashed tables by specifying the key. The response time is constant, regardless of the number of table entries, since the search uses a hash algorithm. The key of a hashed table must be unique, and you must specify UNIQUE in the table definition. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This table type is particularly suitable if you want mainly to use key access for table entries. You cannot access hashed tables using the index. When you use key access, the response time remains constant, regardless of the number of table entries. As with database tables, the key of a hashed table is always unique. Hashed tables are therefore a useful way of constructing and &lt;/P&gt;&lt;P&gt;using internal tables that are similar to database tables. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Index Tables &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Index table is only used to specify the type of generic parameters in a FORM or FUNCTION. That means that you can't create a table of type INDEX. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Internal tables are not DB tables. Standard and Sorted tables in combined are basically called as Index tables and there nothing else. Here is the hierarchy &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;                                 ANY TABLE &lt;/P&gt;&lt;P&gt;                                            | &lt;/P&gt;&lt;P&gt;                    -&lt;/P&gt;&lt;HR originaltext="-----------------------------------" /&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;                     |                                                    | &lt;/P&gt;&lt;P&gt;             Index Tables                                    Hashed Table &lt;/P&gt;&lt;P&gt;                     |           &lt;/P&gt;&lt;P&gt;    -&lt;/P&gt;&lt;HR originaltext="-----------------------------------" /&gt;&lt;P&gt;  &lt;/P&gt;&lt;P&gt;    |                                                     | &lt;/P&gt;&lt;P&gt;Standard Table                      Sorted Table &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Internal tables &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Internal tables provide a means of taking data from a fixed structure and storing it in working memory in ABAP. The data is stored line by line in memory, and each line has the same structure. In ABAP, internal tables fulfill the function of arrays. Since they are dynamic data objects, they save the programmer the task of dynamic memory management in his or her programs. You should use internal tables whenever you want to process a dataset with a fixed structure within a program. A particularly important use for internal tables is for storing and formatting data from a database table within a program. They are also a good way of including very complicated data structures in an ABAP program.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Like all elements in the ABAP type concept, internal tables can exist both as data types and as data objects A data type is the abstract description of an internal table, either in a program or centrally in the ABAP Dictionary, that you use to create a concrete data object. The data type is also an attribute of an existing data object. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Internal Tables as Data Types&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Internal tables and structures are the two structured data types in ABAP. The data type of an internal table is fully specified by its line type, key, and table type. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Line type&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The line type of an internal table can be any data type. The data type of an internal table is normally a structure. Each component of the structure is a column in the internal table. However, the line type may also be elementary or another internal table. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Key&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The key identifies table rows. There are two kinds of key for internal tables - the standard key and a user-defined key. You can specify whether the key should be UNIQUE or NON-UNIQUE. Internal tables with a unique key cannot contain duplicate entries. The uniqueness depends on the table access method.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If a table has a structured line type, its default key consists of all of its non-numerical columns that are not references or themselves internal tables. If a table has an elementary line type, the default key is the entire line. The default key of an internal table whose line type is an internal table, the default key is empty.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The user-defined key can contain any columns of the internal table that are not references or themselves internal tables. Internal tables with a user-defined key are called key tables. When you define the key, the sequence of the key fields is significant. You should remember this, for example, if you intend to sort the table according to the key.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Table type&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The table type determines how ABAP will access individual table entries. Internal tables can be divided into three types: &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Standard tables have an internal linear index. From a particular size upwards, the indexes of internal tables are administered as trees. In this case, the index administration overhead increases in logarithmic and not linear relation to the number of lines. The system can access records either by using the table index or the key. The response time for key access is proportional to the number of entries in the table. The key of a standard table is always non-unique. You cannot specify a unique key. This means that standard tables can always be filled very quickly, since the system does not have to check whether there are already existing entries. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Sorted tables are always saved sorted by the key. They also have an internal index. The system can access records either by using the table index or the key. The response time for key access is logarithmically proportional to the number of table entries, since the system uses a binary search. The key of a sorted table can be either unique or non-unique. When you define the table, you must specify whether the key is to be unique or not. Standard tables and sorted tables are known generically as index tables.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hashed tables have no linear index. You can only access a hashed table using its key. The response time is independent of the number of table entries, and is constant, since the system access the table entries using a hash algorithm. The key of a hashed table must be unique. When you define the table, you must specify the key as UNIQUE.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Generic Internal Tables&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Unlike other local data types in programs, you do not have to specify the data type of an internal table fully. Instead, you can specify a generic construction, that is, the key or key and line type of an internal table data type may remain unspecified. You can use generic internal tables to specify the types of field symbols and the interface parameters of procedures . You cannot use them to declare data objects. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Internal Tables as Dynamic Data Objects&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Data objects that are defined either with the data type of an internal table, or directly as an internal table, are always fully defined in respect of their line type, key and access method. However, the number of lines is not fixed. Thus internal tables are dynamic data objects, since they can contain any number of lines of a particular type. The only restriction on the number of lines an internal table may contain are the limits of your system installation. The maximum memory that can be occupied by an internal table (including its internal administration) is 2 gigabytes. A more realistic figure is up to 500 megabytes. An additional restriction for hashed tables is that they may not contain more than 2 million entries. The line types of internal tables can be any ABAP data types - elementary, structured, or internal tables. The individual lines of an internal table are called table lines or table entries. Each component of a structured line is called a column in the internal table.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Choosing a Table Type&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The table type (and particularly the access method) that you will use depends on how the typical internal table operations will be most frequently executed.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Standard tables&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This is the most appropriate type if you are going to address the individual table entries using the index. Index access is the quickest possible access. You should fill a standard table by appending lines (ABAP APPEND statement), and read, modify and delete entries by specifying the index (INDEX option with the relevant ABAP command). The access time for a standard table increases in a linear relationship with the number of table entries. If you need key access, standard tables are particularly useful if you can fill and process the table in separate steps. For example, you could fill the table by appending entries, and then sort it. If you use the binary search option with key access, the response time is logarithmically proportional to the number of table entries.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Sorted tables&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This is the most appropriate type if you need a table which is sorted as you fill it. You fill sorted tables using the INSERT statement. Entries are inserted according to the sort sequence defined through the table key. Any illegal entries are recognized as soon as you try to add them to the table. The response time for key access is logarithmically proportional to the number of table entries, since the system always uses a binary search. Sorted tables are particularly useful for partially sequential processing in a LOOP if you specify the beginning of the table key in the WHERE condition.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hashed tables&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This is the most appropriate type for any table where the main operation is key access. You cannot access a hashed table using its index. The response time for key access remains constant, regardless of the number of table entries. Like database tables, hashed tables always have a unique key. Hashed tables are useful if you want to construct and use an internal table which resembles a database table or for processing large amounts of data. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; regards,&lt;/P&gt;&lt;P&gt;sreelakshmi&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 07 Mar 2008 08:52:05 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/internal-tables/m-p/3526659#M848437</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-03-07T08:52:05Z</dc:date>
    </item>
    <item>
      <title>Re: internal tables</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/internal-tables/m-p/3526660#M848438</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;Generally we will be using 3 types of internal tables.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;1. STANDARD TABLE (Prefered one)&lt;/P&gt;&lt;P&gt;2. SORTED TABLE&lt;/P&gt;&lt;P&gt;3. HASHED TABLE&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Standard table uses linear search algorith when u search for a record.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In Sorted table data will be stored in sorted order. Here search will be BINARY by default.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hashed table uses internal Hash algorithm for searching records.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;There are 2 more types which we will use seldomly.&lt;/P&gt;&lt;P&gt;4. INDEX Table&lt;/P&gt;&lt;P&gt;5. ANY Table.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Out of 5, In most of the cases(95%) we will define the internal table as TYPE STANDARD TABLE OF structure.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Vinod.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 07 Mar 2008 08:57:59 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/internal-tables/m-p/3526660#M848438</guid>
      <dc:creator>vinod_vemuru2</dc:creator>
      <dc:date>2008-03-07T08:57:59Z</dc:date>
    </item>
    <item>
      <title>Re: internal tables</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/internal-tables/m-p/3526661#M848439</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;STRUCTURE:&lt;/P&gt;&lt;P&gt;-&lt;/P&gt;&lt;HR originaltext="--------" /&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DATA : BEGIN OF &amp;lt;structure_name&amp;gt;,&lt;/P&gt;&lt;P&gt;	attributes..&lt;/P&gt;&lt;P&gt;	END OF &amp;lt;structure_name&amp;gt;.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;EG. CODE:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DATA : BEGIN OF STRUCTURE,&lt;/P&gt;&lt;P&gt;        NAME(10),&lt;/P&gt;&lt;P&gt;        COURSE(10),&lt;/P&gt;&lt;P&gt;        AGE TYPE I,&lt;/P&gt;&lt;P&gt;        END OF STRUCTURE.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;STRUCTURE-NAME = 'KARTHIK'.&lt;/P&gt;&lt;P&gt;STRUCTURE-COURSE = 'ABAP'.&lt;/P&gt;&lt;P&gt;STRUCTURE-AGE = '40'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;STRUCTURE-NAME = 'KARTHIK1'.&lt;/P&gt;&lt;P&gt;STRUCTURE-COURSE = 'ABAP'.&lt;/P&gt;&lt;P&gt;STRUCTURE-AGE = '40'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;STRUCTURE-NAME = 'KARTHIK2'.&lt;/P&gt;&lt;P&gt;STRUCTURE-COURSE = 'ABAP'.&lt;/P&gt;&lt;P&gt;STRUCTURE-AGE = '40'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;WRITE &lt;span class="lia-unicode-emoji" title=":confused_face:"&gt;😕&lt;/span&gt; STRUCTURE-NAME, STRUCTURE-COURSE, STRUCTURE-AGE.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;A structure can hold only one record. To make a structure hold multiple records, create a structure as an internal table.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;INTERNAL TABLES:&lt;/P&gt;&lt;P&gt;-&lt;/P&gt;&lt;HR originaltext="---------------" /&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SYNTAX:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DATA : BEGIN OF &amp;lt;internal_table_name&amp;gt; OCCURS &amp;lt;size&amp;gt;,&lt;/P&gt;&lt;P&gt;		...attributes...&lt;/P&gt;&lt;P&gt;	END OF &amp;lt;internal_table_name&amp;gt;.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Here, OCCURS statement is used to declare a structure as an internal table. The initial size of internal table ranges from 0 to 7.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;0 - Allocates 8KB of memory for body area.&lt;/P&gt;&lt;P&gt;1 - Allocates a single-record memory.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;APPEND and COLLECT statements are used to insert the values from work area into internal table body area.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;APPEND - This statement will insert the record into body area even if it already exists.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;COLLECT - This statement will not insert the record if it already exists, but if there is an integer value, it will add the integer numbers for the same records.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;To view the contents of internal table, the following two statements are used:&lt;/P&gt;&lt;P&gt;-&lt;/P&gt;&lt;HR originaltext="-------------------------------------------------------------------------------" /&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;LOOP - ENDLOOP - This statement is used to view the entire contents of internal table.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;READ TABLE &amp;lt;internal_table_name&amp;gt; - This statement is used to view only a single record specified using index number. By default, SAP generates an index number for each record in the body area of internal table.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;eg. code to create internal table without header line:&lt;/P&gt;&lt;P&gt;-&lt;/P&gt;&lt;HR originaltext="--------------------------------------------------------" /&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DATA : BEGIN OF STRUCTURE OCCURS 0,&lt;/P&gt;&lt;P&gt;        NAME(10),&lt;/P&gt;&lt;P&gt;        COURSE(10),&lt;/P&gt;&lt;P&gt;        AGE TYPE I,&lt;/P&gt;&lt;P&gt;        END OF STRUCTURE.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;STRUCTURE-NAME = 'KARTHIK'.&lt;/P&gt;&lt;P&gt;STRUCTURE-COURSE = 'ABAP'.&lt;/P&gt;&lt;P&gt;STRUCTURE-AGE = '40'.&lt;/P&gt;&lt;P&gt;APPEND STRUCTURE.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;STRUCTURE-NAME = 'KARTHIK1'.&lt;/P&gt;&lt;P&gt;STRUCTURE-COURSE = 'ABAP'.&lt;/P&gt;&lt;P&gt;STRUCTURE-AGE = '40'.&lt;/P&gt;&lt;P&gt;APPEND STRUCTURE.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;STRUCTURE-NAME = 'KARTHIK1'.&lt;/P&gt;&lt;P&gt;STRUCTURE-COURSE = 'ABAP'.&lt;/P&gt;&lt;P&gt;STRUCTURE-AGE = '40'.&lt;/P&gt;&lt;P&gt;APPEND STRUCTURE.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;LOOP AT STRUCTURE.&lt;/P&gt;&lt;P&gt;WRITE &lt;span class="lia-unicode-emoji" title=":confused_face:"&gt;😕&lt;/span&gt; STRUCTURE-NAME, STRUCTURE-COURSE, STRUCTURE-AGE.&lt;/P&gt;&lt;P&gt;ENDLOOP.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;READ TABLE STRUCTURE INDEX 5.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SKIP 5.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;WRITE &lt;span class="lia-unicode-emoji" title=":confused_face:"&gt;😕&lt;/span&gt; STRUCTURE-NAME COLOR 1, STRUCTURE-COURSE COLOR 1, &lt;/P&gt;&lt;P&gt;STRUCTURE-AGE&lt;/P&gt;&lt;P&gt; COLOR 1.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;eg. code to create internal table with header line having KNA1 table records:&lt;/P&gt;&lt;P&gt;-&lt;/P&gt;&lt;HR originaltext="----------------------------------------------------------------------------" /&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DATA BASKAR LIKE KNA1 OCCURS 0 WITH HEADER LINE.&lt;/P&gt;&lt;P&gt;SELECT * FROM KNA1 INTO TABLE BASKAR.&lt;/P&gt;&lt;P&gt;LOOP AT BASKAR.&lt;/P&gt;&lt;P&gt;WRITE &lt;span class="lia-unicode-emoji" title=":confused_face:"&gt;😕&lt;/span&gt; BASKAR-KUNNR, BASKAR-NAME1, BASKAR-LAND1, BASKAR-ORT01.&lt;/P&gt;&lt;P&gt;ENDLOOP.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SYSTEM VARIABLES COMMONLY USED IN INTERNAL TABLES:&lt;/P&gt;&lt;P&gt;-&lt;/P&gt;&lt;HR originaltext="------------------------------------------------" /&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;1. SY-TABIX - Used to create a loop index for internal table records.&lt;/P&gt;&lt;P&gt;2. SY-TFILL - Used to return number of records inside internal table body area. Before using this system variable, use DESCRIBE TABLE statement.&lt;/P&gt;&lt;P&gt;3. SY-DBCNT - Used to return number of records fetched from database table.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Eg. code using the above system variables in internal table:&lt;/P&gt;&lt;P&gt;-&lt;/P&gt;&lt;HR originaltext="----------------------------------------------------------" /&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DATA BASKAR LIKE KNA1 OCCURS 0 WITH HEADER LINE.&lt;/P&gt;&lt;P&gt;SELECT * FROM KNA1 INTO TABLE BASKAR.&lt;/P&gt;&lt;P&gt;WRITE &lt;span class="lia-unicode-emoji" title=":confused_face:"&gt;😕&lt;/span&gt; SY-DBCNT COLOR 5.&lt;/P&gt;&lt;P&gt;DESCRIBE TABLE BASKAR.&lt;/P&gt;&lt;P&gt;SKIP 1.&lt;/P&gt;&lt;P&gt;WRITE &lt;span class="lia-unicode-emoji" title=":confused_face:"&gt;😕&lt;/span&gt; SY-TFILL COLOR 7.&lt;/P&gt;&lt;P&gt;LOOP AT BASKAR.&lt;/P&gt;&lt;P&gt;WRITE &lt;span class="lia-unicode-emoji" title=":confused_face:"&gt;😕&lt;/span&gt; SY-TABIX COLOR 3, BASKAR-KUNNR, BASKAR-NAME1, BASKAR-LAND1, BASKAR-ORT01.&lt;/P&gt;&lt;P&gt;ENDLOOP.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;INTERNAL TABLE TYPES:&lt;/P&gt;&lt;P&gt;-&lt;/P&gt;&lt;HR originaltext="-------------------" /&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;1. INDEXED INTERNAL TABLE&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;	- STRUCTURED&lt;/P&gt;&lt;P&gt;	- STANDARD&lt;/P&gt;&lt;P&gt;	- SORTED&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;2. NON-INDEXED INTERNAL TABLE&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;	- HASHED&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;STRUCTURED INTERNAL TABLE:&lt;/P&gt;&lt;P&gt;-&lt;/P&gt;&lt;HR originaltext="-------------------------" /&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Any internal table created using BEGIN OF - END OF statements is called as structured internal table.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SYNTAX:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DATA : BEGIN OF &amp;lt;internal_table_name&amp;gt;,&lt;/P&gt;&lt;P&gt;	..attributes..&lt;/P&gt;&lt;P&gt;	END OF &amp;lt;internal_table_name&amp;gt;.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;STANDARD INTERNAL TABLE:&lt;/P&gt;&lt;P&gt;-&lt;/P&gt;&lt;HR originaltext="-----------------------" /&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SYNTAX:&lt;/P&gt;&lt;P&gt;-&lt;/P&gt;&lt;HR originaltext="------" /&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DATA &amp;lt;internal_table_name&amp;gt; LIKE STANDARD TABLE OF &amp;lt;dbtable_name&amp;gt;&lt;/P&gt;&lt;P&gt;WITH DEFAULT/NON-UNIQUE KEY &amp;lt;field_name&amp;gt;&lt;/P&gt;&lt;P&gt;WITH HEADER LINE&lt;/P&gt;&lt;P&gt;INITIAL SIZE &amp;lt;size&amp;gt;.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Eg. code:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DATA BASKAR LIKE STANDARD TABLE OF MARA WITH NON-UNIQUE KEY MTART WITH HEADER LINE INITIAL SIZE 0.&lt;/P&gt;&lt;P&gt;SELECT * FROM MARA INTO TABLE BASKAR.&lt;/P&gt;&lt;P&gt;LOOP AT BASKAR.&lt;/P&gt;&lt;P&gt;WRITE &lt;span class="lia-unicode-emoji" title=":confused_face:"&gt;😕&lt;/span&gt; BASKAR-MATNR, BASKAR-MTART, BASKAR-MBRSH, BASKAR-MEINS.&lt;/P&gt;&lt;P&gt;ENDLOOP.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Whenever we try to fetch a single record from the above internal table, LINEAR SEARCH OR SEQUENTIAL SEARCH technique is done here.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SORTED INTERNAL TABLE:&lt;/P&gt;&lt;P&gt;-&lt;/P&gt;&lt;HR originaltext="---------------------" /&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SYNTAX:&lt;/P&gt;&lt;P&gt;-&lt;/P&gt;&lt;HR originaltext="------" /&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DATA &amp;lt;internal_table_name&amp;gt; LIKE SORTED TABLE OF &amp;lt;dbtable_name&amp;gt;&lt;/P&gt;&lt;P&gt;WITH DEFAULT/NON-UNIQUE KEY &amp;lt;field_name&amp;gt;&lt;/P&gt;&lt;P&gt;WITH HEADER LINE&lt;/P&gt;&lt;P&gt;INITIAL SIZE &amp;lt;size&amp;gt;.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;eg. code:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DATA BASKAR LIKE SORTED TABLE OF MARA WITH NON-UNIQUE KEY MTART WITH &lt;/P&gt;&lt;P&gt;HEADER LINE INITIAL SIZE 0.&lt;/P&gt;&lt;P&gt;SELECT * FROM MARA INTO TABLE BASKAR.&lt;/P&gt;&lt;P&gt;LOOP AT BASKAR.&lt;/P&gt;&lt;P&gt;WRITE &lt;span class="lia-unicode-emoji" title=":confused_face:"&gt;😕&lt;/span&gt; BASKAR-MATNR, BASKAR-MTART, BASKAR-MBRSH, BASKAR-MEINS.&lt;/P&gt;&lt;P&gt;ENDLOOP.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Internal table of this type stores the database table records in a sorted manner. The sorting technique is performed by default in ascending order while fetching the records itself.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;HASHED INTERNAL TABLE:&lt;/P&gt;&lt;P&gt;-&lt;/P&gt;&lt;HR originaltext="---------------------" /&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DATA &amp;lt;internal_table_name&amp;gt; LIKE HASHED TABLE OF &amp;lt;dbtable_name&amp;gt;&lt;/P&gt;&lt;P&gt;WITH UNIQUE KEY &amp;lt;field_name&amp;gt;&lt;/P&gt;&lt;P&gt;WITH HEADER LINE&lt;/P&gt;&lt;P&gt;INITIAL SIZE &amp;lt;size&amp;gt;.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;eg. code:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DATA BASKAR LIKE HASHED TABLE OF MARA WITH UNIQUE KEY MATNR WITH&lt;/P&gt;&lt;P&gt;HEADER LINE INITIAL SIZE 0.&lt;/P&gt;&lt;P&gt;SELECT * FROM MARA INTO TABLE BASKAR.&lt;/P&gt;&lt;P&gt;LOOP AT BASKAR.&lt;/P&gt;&lt;P&gt;WRITE &lt;span class="lia-unicode-emoji" title=":confused_face:"&gt;😕&lt;/span&gt; BASKAR-MATNR, BASKAR-MTART, BASKAR-MBRSH, BASKAR-MEINS.&lt;/P&gt;&lt;P&gt;ENDLOOP.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Unlike the indexed internal tables, an index value will not be generated for internal table records. We have to specify the row id or field id to fetch a single record from the hashed internal table.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SORTING INTERNAL TABLE:&lt;/P&gt;&lt;P&gt;-&lt;/P&gt;&lt;HR originaltext="----------------------" /&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SYNTAX:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SORT &amp;lt;internal_table_name&amp;gt; BY &amp;lt;field_name&amp;gt; ASCENDING/DESCENDING.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;EG. code:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DATA BASKAR LIKE SORTED TABLE OF MARA WITH NON-UNIQUE KEY MATNR WITH HEADER LINE INITIAL SIZE 0.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SELECT * FROM MARA INTO TABLE BASKAR.&lt;/P&gt;&lt;P&gt;*SORT BASKAR BY MATNR MBRSH MTART DESCENDING.&lt;/P&gt;&lt;P&gt;LOOP AT BASKAR.&lt;/P&gt;&lt;P&gt;WRITE &lt;span class="lia-unicode-emoji" title=":confused_face:"&gt;😕&lt;/span&gt; BASKAR-MATNR, BASKAR-MBRSH, BASKAR-MTART, BASKAR-MEINS.&lt;/P&gt;&lt;P&gt;ENDLOOP.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;We cannot apply sorting technique to the sorted internal table type. The default sorting technique is ASCENDING.&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;Arunsri&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 07 Mar 2008 08:58:28 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/internal-tables/m-p/3526661#M848439</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-03-07T08:58:28Z</dc:date>
    </item>
  </channel>
</rss>

