<?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 Answer this!!! in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/answer-this/m-p/3301058#M790253</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Can anyone give me the difference between the structure and a table. I mean how do they differ in their memory allocations.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 25 Jan 2008 10:37:56 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2008-01-25T10:37:56Z</dc:date>
    <item>
      <title>Answer this!!!</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/answer-this/m-p/3301058#M790253</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Can anyone give me the difference between the structure and a table. I mean how do they differ in their memory allocations.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 25 Jan 2008 10:37:56 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/answer-this/m-p/3301058#M790253</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-01-25T10:37:56Z</dc:date>
    </item>
    <item>
      <title>Re: Answer this!!!</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/answer-this/m-p/3301059#M790254</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Tables&lt;/P&gt;&lt;P&gt;Represent the Database Tables where data actually resides.&lt;/P&gt;&lt;P&gt;Tables can be defined independently of the database in the ABAP Dictionary. &lt;/P&gt;&lt;P&gt;The fields of the table are defined with their (database-independent) ABAP/4 data types and lengths.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Structures&lt;/P&gt;&lt;P&gt;Are record declarations that do not correspond to a Database Table.&lt;/P&gt;&lt;P&gt;Just like user-defined data type.&lt;/P&gt;&lt;P&gt;Defined like a table and can then be addressed from ABAP/4 programs. &lt;/P&gt;&lt;P&gt;Structures contain data only during the runtime of a program.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 25 Jan 2008 10:39:31 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/answer-this/m-p/3301059#M790254</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-01-25T10:39:31Z</dc:date>
    </item>
    <item>
      <title>Re: Answer this!!!</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/answer-this/m-p/3301060#M790255</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello Ashish,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Check the WIki Part of SDN where you will get all sort of interview questions.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Check this link.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="https://www.sdn.sap.com/irj/sdn/wiki" target="test_blank"&gt;https://www.sdn.sap.com/irj/sdn/wiki&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope this will help you.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Cheers,&lt;/P&gt;&lt;P&gt;Vasanth&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 25 Jan 2008 10:41:05 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/answer-this/m-p/3301060#M790255</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-01-25T10:41:05Z</dc:date>
    </item>
    <item>
      <title>Re: Answer this!!!</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/answer-this/m-p/3301061#M790256</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;Tables&lt;/P&gt;&lt;P&gt;Tables can be defined independently of the database in the ABAP Dictionary. The fields of the table are defined with their &lt;/P&gt;&lt;P&gt;(database-independent) data types and lengths.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;When the table is activated, a physical table definition is created in the database for the table definition stored in the ABAP Dictionary. The &lt;/P&gt;&lt;P&gt;table definition is translated from the ABAP Dictionary to a definition of the particular database.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;A table definition in the ABAP Dictionary contains the following components:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Table fields define the field names and data types of the fields contained in the table&lt;/P&gt;&lt;P&gt;Foreign keys define the relationships between the table and other tables.&lt;/P&gt;&lt;P&gt;Technical settings control how the table should be created in the database.&lt;/P&gt;&lt;P&gt;Indexes: To speed up data selection, secondary indexes can be created for the table&lt;/P&gt;&lt;P&gt;The customer can modify SAP tables with append structures and customizing includes. This kind of modification ensures that the customer &lt;/P&gt;&lt;P&gt;enhancements are automatically merged with the new versions of the SAP tables when there is a release upgrade.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Structures are imaginary of tables,that contain data only at runtime only.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Reward points if it is useful&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;swathi&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 25 Jan 2008 12:22:54 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/answer-this/m-p/3301061#M790256</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-01-25T12:22:54Z</dc:date>
    </item>
  </channel>
</rss>

