<?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: difference between intenal table and view in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/difference-between-intenal-table-and-view/m-p/1835074#M355511</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 created in the program and data is dynamically filled into it.&lt;/P&gt;&lt;P&gt;its scope is limited to prgram.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;View is a dictionary object.it is nothing but a projection of a table or combination of one or more tables.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 18 Jan 2007 10:28:21 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2007-01-18T10:28:21Z</dc:date>
    <item>
      <title>difference between intenal table and view</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/difference-between-intenal-table-and-view/m-p/1835069#M355506</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi friends&lt;/P&gt;&lt;P&gt; Can anyone tell what is the difference between internal table and views?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;P&gt;RamaDevi&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 18 Jan 2007 10:17:55 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/difference-between-intenal-table-and-view/m-p/1835069#M355506</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-01-18T10:17:55Z</dc:date>
    </item>
    <item>
      <title>Re: difference between intenal table and view</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/difference-between-intenal-table-and-view/m-p/1835070#M355507</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;1. Internal tables are locally defined in a program. Views are globally defined in the dictionary.&lt;/P&gt;&lt;P&gt;2. Internal tables do not hold data unless selected into by a select statement. Views hold data automatically at run time from the corresponding base tables.&lt;/P&gt;&lt;P&gt;3. Reading from an internal table is faster than from a view.&lt;/P&gt;&lt;P&gt;4. Views can only be created from one or more database tables. Internal tables can be created from tables or structures.&lt;/P&gt;&lt;P&gt;5. Internal tables need not be in the customer namespace. Views have to be in the customer (Y,Z) namespace.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 18 Jan 2007 10:21:01 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/difference-between-intenal-table-and-view/m-p/1835070#M355507</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-01-18T10:21:01Z</dc:date>
    </item>
    <item>
      <title>Re: difference between intenal table and view</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/difference-between-intenal-table-and-view/m-p/1835071#M355508</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;an internal table is bascially a dynamic table that is visible only within the particular program , whereas a view ia a dictionary object that can be created in se11, and once created can be used any where.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;hope this helps&lt;/P&gt;&lt;P&gt;pls reward if helpful.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 18 Jan 2007 10:21:40 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/difference-between-intenal-table-and-view/m-p/1835071#M355508</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-01-18T10:21:40Z</dc:date>
    </item>
    <item>
      <title>Re: difference between intenal table and view</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/difference-between-intenal-table-and-view/m-p/1835072#M355509</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 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&lt;/P&gt;&lt;P&gt;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;VIEW: a method of viewing database tables. Can combine data from multiple tables into one view, and/or can restrict the view to certain records or fields within a table. Views are sometimes not considered true table types.&lt;/P&gt;&lt;P&gt;Views are meant for viewing data in different ways, it could be partial tables, it could be a combination of multiple tables.&lt;/P&gt;&lt;P&gt;Views are just a window to the transparant tables. Views are combination of one or more tables joined togather. &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>Thu, 18 Jan 2007 10:23:36 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/difference-between-intenal-table-and-view/m-p/1835072#M355509</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-01-18T10:23:36Z</dc:date>
    </item>
    <item>
      <title>Re: difference between intenal table and view</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/difference-between-intenal-table-and-view/m-p/1835073#M355510</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hI RAMA,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;1&amp;gt; Internal tables  hold data when u write a select query on the database tables.Once u execute ur program, the internal tables will be refreshed.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; Views hold data automatically at run time. It is a data dictionary object.it will be created only when u have database tables.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Plz reward all helpful answers.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;nagaraj&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 18 Jan 2007 10:25:11 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/difference-between-intenal-table-and-view/m-p/1835073#M355510</guid>
      <dc:creator>former_member404244</dc:creator>
      <dc:date>2007-01-18T10:25:11Z</dc:date>
    </item>
    <item>
      <title>Re: difference between intenal table and view</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/difference-between-intenal-table-and-view/m-p/1835074#M355511</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 created in the program and data is dynamically filled into it.&lt;/P&gt;&lt;P&gt;its scope is limited to prgram.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;View is a dictionary object.it is nothing but a projection of a table or combination of one or more tables.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 18 Jan 2007 10:28:21 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/difference-between-intenal-table-and-view/m-p/1835074#M355511</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-01-18T10:28:21Z</dc:date>
    </item>
  </channel>
</rss>

