<?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 Table maitenance through selection screen in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/table-maitenance-through-selection-screen/m-p/4205374#M1005038</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;Can any one help me out in this,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have requirement wher in i need to display the table maitanance from the selection screen where the user enters table name as input in the selection screen.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;naveen&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 28 Jul 2008 10:35:50 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2008-07-28T10:35:50Z</dc:date>
    <item>
      <title>Table maitenance through selection screen</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/table-maitenance-through-selection-screen/m-p/4205374#M1005038</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;Can any one help me out in this,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have requirement wher in i need to display the table maitanance from the selection screen where the user enters table name as input in the selection screen.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;naveen&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 28 Jul 2008 10:35:50 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/table-maitenance-through-selection-screen/m-p/4205374#M1005038</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-07-28T10:35:50Z</dc:date>
    </item>
    <item>
      <title>Re: Table maitenance through selection screen</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/table-maitenance-through-selection-screen/m-p/4205375#M1005039</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;First create the Tablemaintenance , and then create the Trasnaction Code to the Table maintenance &lt;/P&gt;&lt;P&gt;You need to use the Function module to maintain the view using the program.&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;VIEW_MAINTENANCE_CALL&lt;/STRONG&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 28 Jul 2008 10:40:56 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/table-maitenance-through-selection-screen/m-p/4205375#M1005039</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-07-28T10:40:56Z</dc:date>
    </item>
    <item>
      <title>Re: Table maitenance through selection screen</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/table-maitenance-through-selection-screen/m-p/4205376#M1005040</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Sample program for testing purpose..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;REPORT  ZTEST_MAINTAIN.

parameters: p_view(30).

call function 'VIEW_MAINTENANCE_CALL'
         exporting
              action                       = 'S'
              view_name                    = p_view
         exceptions
              client_reference             = 1
              foreign_lock                 = 2
              invalid_action               = 3
              no_clientindependent_auth    = 4
              no_database_function         = 5
              no_editor_function           = 6
              no_show_auth                 = 7
              no_tvdir_entry               = 8
              no_upd_auth                  = 9
              only_show_allowed            = 10
              system_failure               = 11
              unknown_field_in_dba_sellist = 12
              view_not_found               = 13
              others                       = 14.
    if sy-subrc &amp;lt;&amp;gt; 0.

    endif.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Vijay Babu Dudla&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 28 Jul 2008 10:45:57 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/table-maitenance-through-selection-screen/m-p/4205376#M1005040</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-07-28T10:45:57Z</dc:date>
    </item>
    <item>
      <title>Re: Table maitenance through selection screen</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/table-maitenance-through-selection-screen/m-p/4205377#M1005041</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;use the function module "VIEW_MAINTENANCE_CALL"&lt;/P&gt;&lt;P&gt; and pass &lt;/P&gt;&lt;P&gt;ACTION      : S for Display&lt;/P&gt;&lt;P&gt;                    U for maintain&lt;/P&gt;&lt;P&gt;                    T for transport&lt;/P&gt;&lt;P&gt;VIEW_NAME : table name&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;cheers!!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;reward points if helpful&lt;/P&gt;&lt;P&gt;gautam&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 28 Jul 2008 11:51:57 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/table-maitenance-through-selection-screen/m-p/4205377#M1005041</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-07-28T11:51:57Z</dc:date>
    </item>
  </channel>
</rss>

