<?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 structure and view in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/difference-between-structure-and-view/m-p/1819066#M350276</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;When you create a table, a key is assigned as required by the program. The fields contained there could be superfluous when solving a task or they might not be sufficient. In this case you can create a view on several tables or on parts of tables.&lt;/P&gt;&lt;P&gt;Views are off 4 types&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Database View - To combine 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 &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;A structure is a complex type and consists of components that can have any type (data element, structure, table type or reference type).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Structures are used in ABAP programs or to define the type of the interface parameters of function modules. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Structured data type in ABAP:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;A structure is a group of internal fields that logically belong together.&lt;/P&gt;&lt;P&gt;In ABAP, you address an entire structure by its name. To address the individual fields within a structure, you specify the name of the structure followed by the relevant field name.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;A structure contains a hierarchy of links to documents with content information (content objects) and possibly to other structures.&lt;/P&gt;&lt;P&gt;Structures are used as a table of contents and as a navigation instrument when displaying.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Gunasree.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 22 Jan 2007 07:11:24 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2007-01-22T07:11:24Z</dc:date>
    <item>
      <title>difference between structure and view</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/difference-between-structure-and-view/m-p/1819063#M350273</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi all&lt;/P&gt;&lt;P&gt;Can any one tell waht is the difference between structure and view&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;thanks&lt;/P&gt;&lt;P&gt;devi&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 22 Jan 2007 05:37:50 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/difference-between-structure-and-view/m-p/1819063#M350273</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-01-22T05:37:50Z</dc:date>
    </item>
    <item>
      <title>Re: difference between structure and view</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/difference-between-structure-and-view/m-p/1819064#M350274</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;There are &amp;lt;u&amp;gt;&amp;lt;b&amp;gt;4 types views&amp;lt;/b&amp;gt;&amp;lt;/u&amp;gt; are avilable in SAP.&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;&amp;lt;u&amp;gt;&amp;lt;b&amp;gt;The structure&amp;lt;/b&amp;gt;&amp;lt;/u&amp;gt; that we create in program are workareas where we can store the data from internal tables.&lt;/P&gt;&lt;P&gt;They are similar to headerline of the internalt table. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;We declare structure using data statement.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;data : begin of itab,&lt;/P&gt;&lt;P&gt; ebeln like ekpo-ebeln,&lt;/P&gt;&lt;P&gt; ebelp like ekpo-ebelp,&lt;/P&gt;&lt;P&gt;end of itab.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Or we can declare a type. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;types : begin of ttab,&lt;/P&gt;&lt;P&gt; ebeln like ekpo-ebeln,&lt;/P&gt;&lt;P&gt; ebelp like ekpo-ebelp,&lt;/P&gt;&lt;P&gt;end of ttab.&lt;/P&gt;&lt;P&gt;data : itab type ttab.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Or the header lines of the table can be used as workarea which are structure which have the same type &lt;/P&gt;&lt;P&gt;and same name as that of table.&lt;/P&gt;&lt;P&gt;data : itab type ttab with header-line.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Anver&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 22 Jan 2007 05:41:56 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/difference-between-structure-and-view/m-p/1819064#M350274</guid>
      <dc:creator>anversha_s</dc:creator>
      <dc:date>2007-01-22T05:41:56Z</dc:date>
    </item>
    <item>
      <title>Re: difference between structure and view</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/difference-between-structure-and-view/m-p/1819065#M350275</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;When you create a table, a key is assigned as required by the program. The fields contained there could be superfluous when solving a task or they might not be sufficient. In this case you can create a&amp;lt;b&amp;gt; view&amp;lt;/b&amp;gt; on several tables or on parts of tables.&lt;/P&gt;&lt;P&gt;Views are off 4 types&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Database View - To combine  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 &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;A structure is a complex type and consists of components that can have any type (data element, structure, table type or reference type).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Structures are used in ABAP programs or to define the type of the interface parameters of function modules. &lt;/P&gt;&lt;P&gt;&amp;lt;i&amp;gt;&lt;/P&gt;&lt;P&gt;Structured data type in ABAP:&amp;lt;/i&amp;gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;A structure is a group of internal fields that logically belong together.&lt;/P&gt;&lt;P&gt;In ABAP, you address an entire structure by its name. To address the individual fields within a structure, you specify the name of the structure followed by the relevant field name.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;A structure contains a hierarchy of links to documents with content information (content objects) and possibly to other structures.&lt;/P&gt;&lt;P&gt;Structures are used as a table of contents and as a navigation instrument when displaying.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Gunasree.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 22 Jan 2007 07:09:41 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/difference-between-structure-and-view/m-p/1819065#M350275</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-01-22T07:09:41Z</dc:date>
    </item>
    <item>
      <title>Re: difference between structure and view</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/difference-between-structure-and-view/m-p/1819066#M350276</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;When you create a table, a key is assigned as required by the program. The fields contained there could be superfluous when solving a task or they might not be sufficient. In this case you can create a view on several tables or on parts of tables.&lt;/P&gt;&lt;P&gt;Views are off 4 types&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Database View - To combine 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 &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;A structure is a complex type and consists of components that can have any type (data element, structure, table type or reference type).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Structures are used in ABAP programs or to define the type of the interface parameters of function modules. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Structured data type in ABAP:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;A structure is a group of internal fields that logically belong together.&lt;/P&gt;&lt;P&gt;In ABAP, you address an entire structure by its name. To address the individual fields within a structure, you specify the name of the structure followed by the relevant field name.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;A structure contains a hierarchy of links to documents with content information (content objects) and possibly to other structures.&lt;/P&gt;&lt;P&gt;Structures are used as a table of contents and as a navigation instrument when displaying.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Gunasree.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 22 Jan 2007 07:11:24 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/difference-between-structure-and-view/m-p/1819066#M350276</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-01-22T07:11:24Z</dc:date>
    </item>
    <item>
      <title>Re: difference between structure and view</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/difference-between-structure-and-view/m-p/1819067#M350277</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; structure wont hold any data(data only hold at runtime) whereas views can maintain the data.&lt;/P&gt;&lt;P&gt;structure is nothing but skelton of the table whereas views will be defined  with the required no of fields.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 22 Jan 2007 10:32:44 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/difference-between-structure-and-view/m-p/1819067#M350277</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-01-22T10:32:44Z</dc:date>
    </item>
    <item>
      <title>Re: difference between structure and view</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/difference-between-structure-and-view/m-p/1819068#M350278</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi Rama Devi  &lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;for views refer the following link &lt;/P&gt;&lt;P&gt;&lt;A href="http://www.allsaplinks.com/views.html" target="test_blank"&gt;http://www.allsaplinks.com/views.html&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;for structures refer &lt;/P&gt;&lt;P&gt;&lt;A href="http://www.allsaplinks.com/datadictionary_making_changes_totables.html" target="test_blank"&gt;http://www.allsaplinks.com/datadictionary_making_changes_totables.html&lt;/A&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 23 Jan 2007 10:42:50 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/difference-between-structure-and-view/m-p/1819068#M350278</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-01-23T10:42:50Z</dc:date>
    </item>
    <item>
      <title>Re: difference between structure and view</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/difference-between-structure-and-view/m-p/1819069#M350279</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;A structure provide the skeleton of a table without any actual data.They do not have physical storage of data.&lt;/P&gt;&lt;P&gt;Views do not have physical storage of data.The view is derived from one or more tables which is created only with the required fields from the database table(s). It can also be created with table inner joins and specifying conditions for data retrieval.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Beejal&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;**Reward if helpful&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 23 Jan 2007 11:18:06 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/difference-between-structure-and-view/m-p/1819069#M350279</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-01-23T11:18:06Z</dc:date>
    </item>
    <item>
      <title>Re: difference between structure and view</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/difference-between-structure-and-view/m-p/1819070#M350280</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Basically structure and view are logical concepts.The view is derived from one or more tables which is created only with the required fields from the database table(s). A structure can be considered as a temporary work area which can hold one record at a time.We can define the structure type by manually specifying the individual fields or can declare it as type of a table.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Plz reward points if u find the above useful.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 23 Jan 2007 11:48:19 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/difference-between-structure-and-view/m-p/1819070#M350280</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-01-23T11:48:19Z</dc:date>
    </item>
  </channel>
</rss>

