<?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: Differences in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/differences/m-p/2537659#M576249</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;&lt;/P&gt;&lt;P&gt;database view is a logical defination of table it does not exists physically in the database. it gets its value from the database depending on its defination. and joins used. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;database table pysically exists in the database and contains data.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;****do reward if usefull&lt;/P&gt;&lt;P&gt;vijay&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 09 Jul 2007 06:27:53 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2007-07-09T06:27:53Z</dc:date>
    <item>
      <title>Differences</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/differences/m-p/2537657#M576247</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;&lt;/P&gt;&lt;P&gt;           What is the difference between VIEW (&amp;amp;) TABLE?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 08 Jul 2007 15:19:09 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/differences/m-p/2537657#M576247</guid>
      <dc:creator>former_member778253</dc:creator>
      <dc:date>2007-07-08T15:19:09Z</dc:date>
    </item>
    <item>
      <title>Re: Differences</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/differences/m-p/2537658#M576248</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;The central data structure of the ABAP/4 Dictionary is the&amp;lt;b&amp;gt; table&amp;lt;/b&amp;gt;. A table consists of a list of fields.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;A&amp;lt;b&amp;gt; view&amp;lt;/b&amp;gt; can be tailored to the needs of a specific application, making it possible to directly access specific data. The structure of such a view is defined by specifying the tables and fields to be contained in the virtual table.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;A view can be used to summarize data which is distributed among several tables. In addition, superfluous fields can be suppressed, keeping interfaces to a minimum.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;A view relates logically to one or more tables. That is, the data of a view is not actually physically stored. The data of a view is instead derived from one or more other tables.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 09 Jul 2007 06:22:12 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/differences/m-p/2537658#M576248</guid>
      <dc:creator>former_member189059</dc:creator>
      <dc:date>2007-07-09T06:22:12Z</dc:date>
    </item>
    <item>
      <title>Re: Differences</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/differences/m-p/2537659#M576249</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;&lt;/P&gt;&lt;P&gt;database view is a logical defination of table it does not exists physically in the database. it gets its value from the database depending on its defination. and joins used. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;database table pysically exists in the database and contains data.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;****do reward if usefull&lt;/P&gt;&lt;P&gt;vijay&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 09 Jul 2007 06:27:53 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/differences/m-p/2537659#M576249</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-07-09T06:27:53Z</dc:date>
    </item>
    <item>
      <title>Re: Differences</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/differences/m-p/2537660#M576250</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;VIEWS we can select the data which is already combined at the dictionary level. This is done in SE11&lt;/P&gt;&lt;P&gt;View - It is usually created with the intention to reduce the lead time for fetching thedta. The view can be a single table or based on join. &lt;/P&gt;&lt;P&gt;View as such does not hold any data. The SQL statement used to create view is compiled and avaialble in the DB. Hence data fetch will be fast.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Database View - To club more than one table&lt;/P&gt;&lt;P&gt;Projection View - To hide fields in one table&lt;/P&gt;&lt;P&gt;Maintanance View - To maintain database records in table&lt;/P&gt;&lt;P&gt;Help View - To provide help for a fields (Same functionality as Search help. This is outdated)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;View are improves perfromance in the following aspects&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;1. If you want to use more than two table in 'JOIN' condition better to use Views . It will improves performance of a program&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;2. If you want to use mutiple FOR ALL ENTRIES clause, better to club all SELECT statement in a view.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;note:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;1.Views does not contain data in it. It fetches data from the database only depending on the condition ...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;2.Views are part of data dictionary. They are a window to view the data in database&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;3.views can be used to give security to data. users can be allowed to view only basic data only&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regards&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;reena&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 09 Jul 2007 06:28:13 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/differences/m-p/2537660#M576250</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-07-09T06:28:13Z</dc:date>
    </item>
    <item>
      <title>Re: Differences</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/differences/m-p/2537661#M576251</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;             Tables : These are the data holders we can store the data inside.&lt;/P&gt;&lt;P&gt;              views  : these are virtual tables we are going to show data with       respect to tables in views .&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 09 Jul 2007 06:29:37 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/differences/m-p/2537661#M576251</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-07-09T06:29:37Z</dc:date>
    </item>
  </channel>
</rss>

