<?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 Data Dictionary Question in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/data-dictionary-question/m-p/3647887#M878568</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;1. Technical Settings we are five occurs 0 and occurs 1 , if i give occurs 0 what happen  in database or if i give occurs 1 what effect in data base ?   i give occurs 1 how many records in database if i extend ed that how it is extended ? pls give me answer ?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Sat, 12 Apr 2008 10:56:16 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2008-04-12T10:56:16Z</dc:date>
    <item>
      <title>Data Dictionary Question</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/data-dictionary-question/m-p/3647887#M878568</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;1. Technical Settings we are five occurs 0 and occurs 1 , if i give occurs 0 what happen  in database or if i give occurs 1 what effect in data base ?   i give occurs 1 how many records in database if i extend ed that how it is extended ? pls give me answer ?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 12 Apr 2008 10:56:16 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/data-dictionary-question/m-p/3647887#M878568</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-04-12T10:56:16Z</dc:date>
    </item>
    <item>
      <title>Re: Data Dictionary Question</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/data-dictionary-question/m-p/3647888#M878569</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Before Release 3.0, internal tables all had header lines and a flat-structured line type. There were no independent table types. You could only create a table object using the OCCURS addition in the DATA statement, followed by a declaration of a flat structure:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DATA: BEGIN OF itab OCCURS n,&lt;/P&gt;&lt;P&gt;      ...&lt;/P&gt;&lt;P&gt;        f1..., &lt;/P&gt;&lt;P&gt;        f2...,&lt;/P&gt;&lt;P&gt;      ...&lt;/P&gt;&lt;P&gt;      END OF itab.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This statement declared an internal table itabwith the line type defined following the OCCURS addition. Furthermore, all internal tables had header lines. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The number n in the OCCURS addition had the same meaning as in the INITIAL SIZE addition from Release 4.0. Entering ?0? had the same effect as omitting the INITIAL SIZE addition. In this case, the initial size of the table is determined by the system.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;kindly reward if this helps&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regards&lt;/P&gt;&lt;P&gt;Niharika&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 12 Apr 2008 11:57:49 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/data-dictionary-question/m-p/3647888#M878569</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-04-12T11:57:49Z</dc:date>
    </item>
    <item>
      <title>Re: Data Dictionary Question</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/data-dictionary-question/m-p/3647889#M878570</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Srinu,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;OCCURS 0 is used to define the internal table with header line with default INITIAL SIZE of 8KB. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;OCCURS n: Here n represents the Initial memory to be allocated for 'n' number of records.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If the number of records exceeds by n then ABAP runtime will allocate memory for again n records. In case of OCCURS 0 the memory allocated will be always in chunks of 8KB.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;EG: U defined an internal table with OCCURS 10.&lt;/P&gt;&lt;P&gt;When the first record is INSERTED/APPENDED a memory for 10 records will be allocated. When the 11th record is added then again memory for 10 records will be allocated.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In case of OCCURS 0 it will always allocate memory of 8KB. If the internal table is filled with 8KB then system will allocate again 8KB memory.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Important point is when u define the internal table memory will not be allocated immediately. When u append/Insert the first record to it then the memory will be allocated.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;It is advisable to not to use OCCURS addition in order to effectively utilize memory. In the above example if u have 11 records then total memory allocated is for 20 records but we are using only for 11 records. memory for 9 records is wasted.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; I dont understand what do u mean by technical settings in this post.This will come to picture only in case of data base tables but not internal tables.&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>Sat, 12 Apr 2008 12:25:45 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/data-dictionary-question/m-p/3647889#M878570</guid>
      <dc:creator>vinod_vemuru2</dc:creator>
      <dc:date>2008-04-12T12:25:45Z</dc:date>
    </item>
  </channel>
</rss>

