<?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 View in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/view/m-p/2000711#M407199</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;what is the diff between table with view and  without view?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 12 Mar 2007 13:13:02 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2007-03-12T13:13:02Z</dc:date>
    <item>
      <title>View</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/view/m-p/2000711#M407199</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;what is the diff between table with view and  without view?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 12 Mar 2007 13:13:02 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/view/m-p/2000711#M407199</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-03-12T13:13:02Z</dc:date>
    </item>
    <item>
      <title>Re: View</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/view/m-p/2000712#M407200</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;A base table is a table that usually has a permanent memory representation and description. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;A view table is a view of one or more existing tables. Parts of these tables are hidden, and others remain visible.A view table has a permanent description in the form of a SELECT statement. View tables themselves contain no data, they only provide a view of the data.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;for other details:&lt;/P&gt;&lt;P&gt;&lt;A href="http://dev.mysql.com/doc/maxdb/en/fa/953c405865e801e10000000a155106/content.htm" target="test_blank"&gt;http://dev.mysql.com/doc/maxdb/en/fa/953c405865e801e10000000a155106/content.htm&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regards,&lt;/P&gt;&lt;P&gt;madhu&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 12 Mar 2007 13:16:44 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/view/m-p/2000712#M407200</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-03-12T13:16:44Z</dc:date>
    </item>
    <item>
      <title>Re: View</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/view/m-p/2000713#M407201</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;Table means a single table with fields.&lt;/P&gt;&lt;P&gt;View means more tables combined to a single one, You can write select statements for Views also.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Anji&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 12 Mar 2007 13:17:23 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/view/m-p/2000713#M407201</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-03-12T13:17:23Z</dc:date>
    </item>
    <item>
      <title>Re: View</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/view/m-p/2000714#M407202</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;View is nothing but a logical table.....&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;no data will be stored in a view.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;when u retrieve data from a view it internally retrieves from the database tables only...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;but depending on the requirement u need to create a view..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;For ex:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;if u have a table with 300 fields.. and u need only 10 fields among them in the present scenario..then we need to create a projection view for that table with those 10 fields..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;there are 4 type of views:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;These differ in the way in which the view is implemented and in the methods permitted for accessing the view data.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Database views are implemented with an equivalent view on the database.&lt;/P&gt;&lt;P&gt;Projection views are used to hide fields of a table (only projection).&lt;/P&gt;&lt;P&gt;Help views can be used as selection method in search helps.&lt;/P&gt;&lt;P&gt;Maintenance views permit you to maintain the data distributed on several tables for one application object at one time.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 12 Mar 2007 13:19:22 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/view/m-p/2000714#M407202</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-03-12T13:19:22Z</dc:date>
    </item>
  </channel>
</rss>

