<?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: maintainence view in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/maintainence-view/m-p/3461859#M831815</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;It's used to maintain entires in a table view, i.e. multiple tables can be updated through one screen.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 07 Mar 2008 12:31:46 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2008-03-07T12:31:46Z</dc:date>
    <item>
      <title>maintainence view</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/maintainence-view/m-p/3461858#M831814</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;tell me something about maintenance view&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 07 Mar 2008 12:28:51 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/maintainence-view/m-p/3461858#M831814</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-03-07T12:28:51Z</dc:date>
    </item>
    <item>
      <title>Re: maintainence view</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/maintainence-view/m-p/3461859#M831815</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;It's used to maintain entires in a table view, i.e. multiple tables can be updated through one screen.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 07 Mar 2008 12:31:46 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/maintainence-view/m-p/3461859#M831815</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-03-07T12:31:46Z</dc:date>
    </item>
    <item>
      <title>Re: maintainence view</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/maintainence-view/m-p/3461860#M831816</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;Data that is distributed on more than one table often forms a logical unit, called an application object.&lt;/P&gt;&lt;P&gt;You should be able to display, change and create the data of such an application object together. Users&lt;/P&gt;&lt;P&gt;usually are not interested in the technical implementation of the application object, such as the&lt;/P&gt;&lt;P&gt;distribution of the data on several tables.&lt;/P&gt;&lt;P&gt;You can maintain complex application objects in a simple way using a maintenance view. The data is&lt;/P&gt;&lt;P&gt;automatically distributed on the underlying database tables.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;All the tables used in a maintenance view must be linked with a foreign key. This means that the join&lt;/P&gt;&lt;P&gt;conditions are always derived from the foreign key in the maintenance view. You cannot enter the join&lt;/P&gt;&lt;P&gt;conditions directly as in a database view.&lt;/P&gt;&lt;P&gt;A maintenance interface with which the data of the view can be displayed, changed and created must be&lt;/P&gt;&lt;P&gt;generated from the definition of a maintenance view in the ABAP Dictionary.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;When the maintenance interface is created, function modules that distribute the data maintained with the&lt;/P&gt;&lt;P&gt;view on the underlying tables are automatically generated.&lt;/P&gt;&lt;P&gt;The maintenance interface is generated with the Transaction Generate Table View (Transaction SE54)&lt;/P&gt;&lt;P&gt;or from the view maintenance screen with Environment -&amp;gt; Tab.maint.generator.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Maintenance views implement an outer join.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Hope this helps, Do reward.&lt;/STRONG&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 07 Mar 2008 12:35:08 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/maintainence-view/m-p/3461860#M831816</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-03-07T12:35:08Z</dc:date>
    </item>
    <item>
      <title>Re: maintainence view</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/maintainence-view/m-p/3461861#M831817</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Message: Hai.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;check this.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The followings are different types of views:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;- Database View (SE11)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Database views are implement an inner join, that is, only records of the primary table (selected via the join operation) for which the corresponding records of the secondary tables also exist are fetched. Inconsistencies between primary and secondary table could, therefore, lead to a reduced selection set.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In database views, the join conditions can be formulated using equality relationships between any base fields. In the other types of view, they must be taken from existing foreign keys. That is, tables can only be collected in a maintenance or help view if they are linked to one another via foreign keys.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;- Help View ( SE54)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Help views are used to output additional information when the online help system is called.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;When the F4 button is pressed for a screen field, a check is first made on whether a matchcode is defined for this field. If this is not the case, the help view is displayed in which the check table of the field is the primary table. Thus, for each table no more than one help view can be created, that is, a table can only be primary table in at most one help view.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Go thru this link plzz&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="http://help.sap.com/saphelp_nw2004s/helpdata/en/cf/21ecf9446011d189700000e8322d00/frameset.htm" target="test_blank"&gt;http://help.sap.com/saphelp_nw2004s/helpdata/en/cf/21ecf9446011d189700000e8322d00/frameset.htm&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A class="jive_macro jive_macro_message" href="https://community.sap.com/" __jive_macro_name="message" modifiedtitle="true" __default_attr="449235"&gt;&lt;/A&gt;&lt;/P&gt;&lt;P&gt;- Projection View&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Projection views are used to suppress or mask certain fields in a table (projection), thus minimizing the number of interfaces. This means that only the data that is actually required is exchanged when the database is accessed.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;A projection view can draw upon only one table. Selection conditions cannot be specified for projection views.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;- Maintenance View ( SE54 )&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Maintenance views enable a business-oriented approach to looking at data, while at the same time, making it possible to maintain the data involved. Data from several tables can be summarized in a maintenance view and maintained collectively via this view. That is, the data is entered via the view and then distributed to the underlying tables by the system.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please have a look at below link. It will help you.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="http://help.sap.com/saphelp_nw04/helpdata/en/cf/21ed06446011d189700000e8322d00/frameset.htm" target="test_blank"&gt;http://help.sap.com/saphelp_nw04/helpdata/en/cf/21ed06446011d189700000e8322d00/frameset.htm&lt;/A&gt;&lt;/P&gt;&lt;P&gt;for more detailed info look on:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="http://www.sap-img.com/abap/what-is-the-different-types-and-usage-of-views.htm" target="test_blank"&gt;http://www.sap-img.com/abap/what-is-the-different-types-and-usage-of-views.htm&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&amp;amp;&lt;/P&gt;&lt;P&gt;&lt;A href="https://www.sdn.sap.com/irj/sdn/wiki?path=/display/home/abap+dictionary&amp;amp;" target="test_blank"&gt;https://www.sdn.sap.com/irj/sdn/wiki?path=/display/home/abap+dictionary&amp;amp;&lt;/A&gt;;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;1.Go to se11&lt;/P&gt;&lt;P&gt;2. select view radiobutton and give a name&lt;/P&gt;&lt;P&gt;3. Create&lt;/P&gt;&lt;P&gt;4. select type of view you want to create. Such as database view.&lt;/P&gt;&lt;P&gt;5. give short description&lt;/P&gt;&lt;P&gt;6. give a table name such as mara&lt;/P&gt;&lt;P&gt;7. press the pushbutton relationship. here you will find all the tables which are allowed to create view with mara.&lt;/P&gt;&lt;P&gt;8. select one or mane tables.&lt;/P&gt;&lt;P&gt;8 copy&lt;/P&gt;&lt;P&gt;9.save , check and activate.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 07 Mar 2008 12:36:37 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/maintainence-view/m-p/3461861#M831817</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-03-07T12:36:37Z</dc:date>
    </item>
    <item>
      <title>Re: maintainence view</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/maintainence-view/m-p/3461862#M831818</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;When you run the Maintenance view, it will not allow you to change the primary keys fields they will be grayed out, other than that all the non primary key fields will be input enabled,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;There you can directly change the values and save. they will reflect in the respective database tables.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I hope this give you fair idea about the maintenance view.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Let me know if you need detailed steps for the same&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 07 Mar 2008 12:37:53 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/maintainence-view/m-p/3461862#M831818</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-03-07T12:37:53Z</dc:date>
    </item>
  </channel>
</rss>

