<?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: manipulating table maintenance dialog in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/manipulating-table-maintenance-dialog/m-p/789663#M39926</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Problem solved &lt;SPAN __jive_emoticon_name="happy"&gt;&lt;/SPAN&gt; . Thanks guys.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 18 Jun 2004 02:06:54 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2004-06-18T02:06:54Z</dc:date>
    <item>
      <title>manipulating table maintenance dialog</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/manipulating-table-maintenance-dialog/m-p/789660#M39923</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello again people. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Is there a possibility to manipulate the table maintenance dialog so that the fields displayed would be filtered? I have a database table which contains several fields, including &amp;lt;i&amp;gt;company code&amp;lt;/i&amp;gt;. The only fields i want to display are those belonging to a specific company code. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have an initial screen that passes the verified value of the company code to the table maintenance dialog. The plan is, once CALL TRANSACTION is used and the table maintenance opens, only those with the company code specified in the first screen would be displayed, while those with different company codes would just remain in the database table, but will not be displayed.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope my explanation is not too messed up. Thank you in advance.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 17 Jun 2004 09:52:35 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/manipulating-table-maintenance-dialog/m-p/789660#M39923</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2004-06-17T09:52:35Z</dc:date>
    </item>
    <item>
      <title>Re: manipulating table maintenance dialog</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/manipulating-table-maintenance-dialog/m-p/789661#M39924</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Vanessa,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;One of the approaches could be:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;1. Generate the table maintenance for your table.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;2. Goto the function group you had specified in the table maintenance generator screen.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;3. Display the screen which is for your table.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;4. Add a module in the PAI to display the fields you want. Select the relevant fields here and carry on with the desired processing. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The above steps would help you to have your own screen to enter the company code. Next you can call the SM30 transaction from the code, skipping the first screen and this would allow you to display only those fields which you want to display.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope this helped.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Tathagata&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 17 Jun 2004 10:16:34 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/manipulating-table-maintenance-dialog/m-p/789661#M39924</guid>
      <dc:creator>tathagata_sengupta</dc:creator>
      <dc:date>2004-06-17T10:16:34Z</dc:date>
    </item>
    <item>
      <title>Re: manipulating table maintenance dialog</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/manipulating-table-maintenance-dialog/m-p/789662#M39925</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Vanessa,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;perhaps it's possible to solve your problem with &lt;/P&gt;&lt;P&gt;the function VIEW_MAINTENANCE_CALL&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;example:  &lt;/P&gt;&lt;P&gt;          CALL FUNCTION 'VIEW_MAINTENANCE_CALL'&lt;/P&gt;&lt;P&gt;           EXPORTING&lt;/P&gt;&lt;P&gt;                ACTION                = 'S'&lt;/P&gt;&lt;P&gt;                VIEW_NAME             = 'YOUR_TABLE'&lt;/P&gt;&lt;P&gt;                complex_selconds_used = 'X'&lt;/P&gt;&lt;P&gt;           TABLES&lt;/P&gt;&lt;P&gt;                dba_sellist           = seltab.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;append your filter-criteria to seltab ( Type VIMSELLIST )&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Good speed!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Andreas&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 17 Jun 2004 10:56:00 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/manipulating-table-maintenance-dialog/m-p/789662#M39925</guid>
      <dc:creator>andreas_mann3</dc:creator>
      <dc:date>2004-06-17T10:56:00Z</dc:date>
    </item>
    <item>
      <title>Re: manipulating table maintenance dialog</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/manipulating-table-maintenance-dialog/m-p/789663#M39926</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Problem solved &lt;SPAN __jive_emoticon_name="happy"&gt;&lt;/SPAN&gt; . Thanks guys.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 18 Jun 2004 02:06:54 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/manipulating-table-maintenance-dialog/m-p/789663#M39926</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2004-06-18T02:06:54Z</dc:date>
    </item>
    <item>
      <title>Re: manipulating table maintenance dialog</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/manipulating-table-maintenance-dialog/m-p/789664#M39927</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Vanessa,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The best approach that I have seen, thus far is to start table maintenance with restrictions, there you might specify the condition like display only the rows that have company code 1000 and so on.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please explore on that.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Pavan&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 18 Jun 2004 04:01:27 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/manipulating-table-maintenance-dialog/m-p/789664#M39927</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2004-06-18T04:01:27Z</dc:date>
    </item>
  </channel>
</rss>

