<?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: Data Dictionary in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/data-dictionary/m-p/2734052#M634966</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;&amp;lt;u&amp;gt;Structure&amp;lt;/u&amp;gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Structures in code are similar to structures in the Dictionary in that they are simply field strings.  However, they are not dictionary objects, but temporary objects in program memory.&lt;/P&gt;&lt;P&gt;Structures are used in connection with sequential datasets and subroutines as well as a &amp;#147;staging area&amp;#148; for internal tables.&lt;/P&gt;&lt;P&gt;Structures are defined with the DATA statement.  The start and end of the structure are indicated by BEGIN OF &amp;lt;FSname&amp;gt; and END OF &amp;lt;FSname&amp;gt;.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;A structure can also be defined using a combination of the TYPES and  DATA statements.&lt;/P&gt;&lt;P&gt;The TYPES statement defines a data type which in this example includes the fields: flag, id, name1, and city.  It does not allocate any memory for these fields.&lt;/P&gt;&lt;P&gt;The DATA statement defines a variable using the data type defined with the TYPES statement.  At this point, memory is allocated and the structure is present in the program&amp;#146;s work area.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The main and the major deifference is: Structure is a ABAP Dictionary object only.. It does not have anything attached to in the underlying database layer.. It exists only in the ABAP dictionary not in the database.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Reward points if useful&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regards&lt;/P&gt;&lt;P&gt;Manoj Kumar&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;lt;u&amp;gt;Database Table&amp;lt;/u&amp;gt;&lt;/P&gt;&lt;P&gt;A database table have a defined structure in the database, and also a chunk of memory for it.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 31 Aug 2007 05:00:53 GMT</pubDate>
    <dc:creator>former_member402443</dc:creator>
    <dc:date>2007-08-31T05:00:53Z</dc:date>
    <item>
      <title>Data Dictionary</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/data-dictionary/m-p/2734047#M634961</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hai Friends! What is the exact difference between structure and database table?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 30 Aug 2007 18:21:29 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/data-dictionary/m-p/2734047#M634961</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-08-30T18:21:29Z</dc:date>
    </item>
    <item>
      <title>Re: Data Dictionary</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/data-dictionary/m-p/2734048#M634962</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;structure is simply a defintion of a row, what the fields are, their length, and type,  a database table can use structures to define its fields, but does not have to,  database table contains rows of data on the database layer,  structures do not as they are just a definition.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Rich Heilman&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 30 Aug 2007 18:23:43 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/data-dictionary/m-p/2734048#M634962</guid>
      <dc:creator>RichHeilman</dc:creator>
      <dc:date>2007-08-30T18:23:43Z</dc:date>
    </item>
    <item>
      <title>Re: Data Dictionary</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/data-dictionary/m-p/2734049#M634963</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;ALso,  structures are used a lot in screen programming, where the structure will be used in the screen fields, and the data from the database will be moved to the structrure at runtime, filling the fields of the structure.  Structures can hold data at runtime.  These can also be referred to as work areas of an internal table, or header line.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;RIch Heilman&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 30 Aug 2007 18:25:07 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/data-dictionary/m-p/2734049#M634963</guid>
      <dc:creator>RichHeilman</dc:creator>
      <dc:date>2007-08-30T18:25:07Z</dc:date>
    </item>
    <item>
      <title>Re: Data Dictionary</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/data-dictionary/m-p/2734050#M634964</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Krishna,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The main and the major deifference is: Structure is a ABAP Dictionary object only.. It does not have anything attached to in the underlying database layer.. It exists only in the ABAP dictionary not in the database,..,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;A database table have a defined structure in the database, and also a chunk of memory for it.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks and Best Regards,&lt;/P&gt;&lt;P&gt;Vikas Bittera.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;**&lt;STRONG&gt;Reward if useful&lt;/STRONG&gt;**&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 30 Aug 2007 18:53:26 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/data-dictionary/m-p/2734050#M634964</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-08-30T18:53:26Z</dc:date>
    </item>
    <item>
      <title>Re: Data Dictionary</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/data-dictionary/m-p/2734051#M634965</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Struture  is  an Definition .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Table  is  an  Definition/Storage .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;reward  points  if it is usefull ....&lt;/P&gt;&lt;P&gt;Girish&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 31 Aug 2007 04:01:03 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/data-dictionary/m-p/2734051#M634965</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-08-31T04:01:03Z</dc:date>
    </item>
    <item>
      <title>Re: Data Dictionary</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/data-dictionary/m-p/2734052#M634966</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;&amp;lt;u&amp;gt;Structure&amp;lt;/u&amp;gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Structures in code are similar to structures in the Dictionary in that they are simply field strings.  However, they are not dictionary objects, but temporary objects in program memory.&lt;/P&gt;&lt;P&gt;Structures are used in connection with sequential datasets and subroutines as well as a &amp;#147;staging area&amp;#148; for internal tables.&lt;/P&gt;&lt;P&gt;Structures are defined with the DATA statement.  The start and end of the structure are indicated by BEGIN OF &amp;lt;FSname&amp;gt; and END OF &amp;lt;FSname&amp;gt;.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;A structure can also be defined using a combination of the TYPES and  DATA statements.&lt;/P&gt;&lt;P&gt;The TYPES statement defines a data type which in this example includes the fields: flag, id, name1, and city.  It does not allocate any memory for these fields.&lt;/P&gt;&lt;P&gt;The DATA statement defines a variable using the data type defined with the TYPES statement.  At this point, memory is allocated and the structure is present in the program&amp;#146;s work area.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The main and the major deifference is: Structure is a ABAP Dictionary object only.. It does not have anything attached to in the underlying database layer.. It exists only in the ABAP dictionary not in the database.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Reward points if useful&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regards&lt;/P&gt;&lt;P&gt;Manoj Kumar&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;lt;u&amp;gt;Database Table&amp;lt;/u&amp;gt;&lt;/P&gt;&lt;P&gt;A database table have a defined structure in the database, and also a chunk of memory for it.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 31 Aug 2007 05:00:53 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/data-dictionary/m-p/2734052#M634966</guid>
      <dc:creator>former_member402443</dc:creator>
      <dc:date>2007-08-31T05:00:53Z</dc:date>
    </item>
  </channel>
</rss>

