<?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: Table maintainance in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/table-maintainance/m-p/2482179#M559436</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Balaji,&lt;/P&gt;&lt;P&gt;  &lt;/P&gt;&lt;P&gt;wat is viewname and update ?&lt;/P&gt;&lt;P&gt;View name is nothing but table name for which u want to create t-code,&lt;/P&gt;&lt;P&gt; and update flag is for aloowing update the table.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;For step 1 and step 2 as per above kishi suggestions exactly for that purpose we are using those two parameters.&lt;/P&gt;&lt;P&gt;Hope this helps you. Reply for queries, shall post the updates.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards.  &lt;/P&gt;&lt;P&gt;Kumar&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 21 Jun 2007 06:39:23 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2007-06-21T06:39:23Z</dc:date>
    <item>
      <title>Table maintainance</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/table-maintainance/m-p/2482177#M559434</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;&lt;/P&gt;&lt;P&gt;When we try to assign transaction code for table maintainance generator..we are giving the &amp;lt;b&amp;gt;VIEWNAME =  ztable&amp;lt;/b&amp;gt; and &lt;/P&gt;&lt;P&gt;              &amp;lt;b&amp;gt;UPDATE = X.&amp;lt;/b&amp;gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;May i know why we are givin this ...wats happend internally ?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;wat is&amp;lt;b&amp;gt; viewname&amp;lt;/b&amp;gt; and &amp;lt;b&amp;gt;update&amp;lt;/b&amp;gt; ?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;also pls tel me what is the difference in One step and two step table maintainace ?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;lt;b&amp;gt;ur matchin answer wil b defintely rewarded......&amp;lt;/b&amp;gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks in advance ...&lt;/P&gt;&lt;P&gt;BALAJI&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 21 Jun 2007 06:29:08 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/table-maintainance/m-p/2482177#M559434</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-06-21T06:29:08Z</dc:date>
    </item>
    <item>
      <title>Re: Table maintainance</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/table-maintainance/m-p/2482178#M559435</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;in 2 step the first screen will display key fields and char fields while all other fields will be displayed in second screen.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;now, if u go for 1 step all fields will be displayed in one screen which is a better view. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;when you create a two-step maintenance, the first screen is made for giving only an overview to the user by presenting the key and some text. The second (detail-)screen shows the whole dataset. &lt;/P&gt;&lt;P&gt;However the generated screens have always had some kind of suggestional character. So a developer is invited to add or remove fields of his choice manually at the selected screen. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Assume your table has the fields KEY1; KEY2, F1, F2, and F2 has not been generated to the overview screen. After you have added Field F1 in the screen layout, just don't forget to add the appropriate field-statements to the flow logic like this:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;process before output.&lt;/P&gt;&lt;P&gt; module liste_initialisieren.&lt;/P&gt;&lt;P&gt; loop at extract with control&lt;/P&gt;&lt;P&gt;  tctrl_table1 cursor nextline.&lt;/P&gt;&lt;P&gt;   module liste_show_liste.&lt;/P&gt;&lt;P&gt; endloop.&lt;/P&gt;&lt;P&gt;*&lt;/P&gt;&lt;P&gt;process after input.&lt;/P&gt;&lt;P&gt; module liste_exit_command at exit-command.&lt;/P&gt;&lt;P&gt; module liste_before_loop.&lt;/P&gt;&lt;P&gt; loop at extract.&lt;/P&gt;&lt;P&gt;   module liste_init_workarea.&lt;/P&gt;&lt;P&gt;   chain.&lt;/P&gt;&lt;P&gt;    field table1-key1 .&lt;/P&gt;&lt;P&gt;    field table1-key2.&lt;/P&gt;&lt;P&gt;    field table1-f1.&lt;/P&gt;&lt;P&gt;    field table1-f2.   "&amp;lt;&amp;lt;&amp;lt;&amp;lt;&amp;lt;&amp;lt;&amp;lt;&amp;lt;&amp;lt;&amp;lt;&amp;lt;&amp;lt;&amp;lt;ADD&lt;/P&gt;&lt;P&gt;    module set_update_flag on chain-request.&lt;/P&gt;&lt;P&gt;   endchain.&lt;/P&gt;&lt;P&gt;   field vim_marked module liste_mark_checkbox.&lt;/P&gt;&lt;P&gt;   chain.&lt;/P&gt;&lt;P&gt;    field table1-key1 .&lt;/P&gt;&lt;P&gt;    field table1-key2.&lt;/P&gt;&lt;P&gt;    module liste_update_liste.&lt;/P&gt;&lt;P&gt;   endchain.&lt;/P&gt;&lt;P&gt; endloop.&lt;/P&gt;&lt;P&gt; module liste_after_loop.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 21 Jun 2007 06:32:58 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/table-maintainance/m-p/2482178#M559435</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-06-21T06:32:58Z</dc:date>
    </item>
    <item>
      <title>Re: Table maintainance</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/table-maintainance/m-p/2482179#M559436</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Balaji,&lt;/P&gt;&lt;P&gt;  &lt;/P&gt;&lt;P&gt;wat is viewname and update ?&lt;/P&gt;&lt;P&gt;View name is nothing but table name for which u want to create t-code,&lt;/P&gt;&lt;P&gt; and update flag is for aloowing update the table.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;For step 1 and step 2 as per above kishi suggestions exactly for that purpose we are using those two parameters.&lt;/P&gt;&lt;P&gt;Hope this helps you. Reply for queries, shall post the updates.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards.  &lt;/P&gt;&lt;P&gt;Kumar&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 21 Jun 2007 06:39:23 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/table-maintainance/m-p/2482179#M559436</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-06-21T06:39:23Z</dc:date>
    </item>
    <item>
      <title>Re: Table maintainance</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/table-maintainance/m-p/2482180#M559437</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 name = ztable name --&amp;gt; this enables the user to correctly cal the particular ztable for which the tcode is created and table maintainence is done.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Update = X --&amp;gt; enables the user to give in new entries thro transaction SM31 when the table/its tcode is executed.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Diff betw one step and two step:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In 2 step the key fields and char fields wil b displayed in the first screen, while all other fields will be displayed in second screen.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;but for 1 step all fields are simultaneously displayed in one screen.This 1 step is mostly preferred.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope this answer is helpful.&lt;/P&gt;&lt;P&gt;*****Reward points if so.&lt;/P&gt;&lt;P&gt;All the best&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 21 Jun 2007 06:45:34 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/table-maintainance/m-p/2482180#M559437</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-06-21T06:45:34Z</dc:date>
    </item>
  </channel>
</rss>

