<?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 Input Screen before table maintainance genrator in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/input-screen-before-table-maintainance-genrator/m-p/5569208#M1270497</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;&lt;/P&gt;&lt;P&gt;   I m creating one table maintenance. before entering in that i want to give on input screen for that table maintenance . i want to do link between input screen and that table maintenance.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;From&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; Nikhil&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 15 May 2009 05:29:47 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2009-05-15T05:29:47Z</dc:date>
    <item>
      <title>Input Screen before table maintainance genrator</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/input-screen-before-table-maintainance-genrator/m-p/5569208#M1270497</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;&lt;/P&gt;&lt;P&gt;   I m creating one table maintenance. before entering in that i want to give on input screen for that table maintenance . i want to do link between input screen and that table maintenance.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;From&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; Nikhil&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 15 May 2009 05:29:47 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/input-screen-before-table-maintainance-genrator/m-p/5569208#M1270497</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-05-15T05:29:47Z</dc:date>
    </item>
    <item>
      <title>Re: Input Screen before table maintainance genrator</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/input-screen-before-table-maintainance-genrator/m-p/5569209#M1270498</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello, &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;1 . Develop a report program and write the code as below .&lt;/P&gt;&lt;P&gt;Sample code:&lt;/P&gt;&lt;P&gt;REPORT  zxxxx&lt;/P&gt;&lt;P&gt;TABLES: ztest.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DATA : itab LIKE &amp;lt; &amp;gt; OCCURS 0 WITH HEADER LINE.&lt;/P&gt;&lt;P&gt;SELECTION-SCREEN BEGIN OF BLOCK b1 WITH FRAME TITLE text-001.&lt;/P&gt;&lt;P&gt;SELECTION-SCREEN SKIP.&lt;/P&gt;&lt;P&gt;SELECT-OPTIONS : &amp;lt;selection varaibles which u wanted to have in selection screen&amp;gt;&lt;/P&gt;&lt;P&gt;SELECTION-SCREEN SKIP.&lt;/P&gt;&lt;P&gt;SELECTION-SCREEN END OF BLOCK b1.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;AT SELECTION-SCREEN.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  IF sy-ucomm = 'ONLI'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;    SELECT * FROM &amp;lt;&amp;gt;&lt;/P&gt;&lt;P&gt;                INTO CORRESPONDING FIELDS OF TABLE itab&lt;/P&gt;&lt;P&gt;                WHERE &amp;lt;condition&amp;gt;&lt;/P&gt;&lt;P&gt;    EXPORT itab FROM itab TO MEMORY ID 'ABCD'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;    CALL TRANSACTION '&amp;lt;Table maintanence transaction&amp;gt;'  ENDIF.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  endloop.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Now goto the Fun tion group of u r TMG and import the data from the internal table then &lt;/P&gt;&lt;P&gt;check the entries from TOTAL table of TMG do the necessary manipulations to display only the required data .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 15 May 2009 05:48:17 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/input-screen-before-table-maintainance-genrator/m-p/5569209#M1270498</guid>
      <dc:creator>shishupalreddy</dc:creator>
      <dc:date>2009-05-15T05:48:17Z</dc:date>
    </item>
    <item>
      <title>Re: Input Screen before table maintainance genrator</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/input-screen-before-table-maintainance-genrator/m-p/5569210#M1270499</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Please let me know if u still need further information&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 15 May 2009 06:54:03 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/input-screen-before-table-maintainance-genrator/m-p/5569210#M1270499</guid>
      <dc:creator>shishupalreddy</dc:creator>
      <dc:date>2009-05-15T06:54:03Z</dc:date>
    </item>
    <item>
      <title>Re: Input Screen before table maintainance genrator</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/input-screen-before-table-maintainance-genrator/m-p/5569211#M1270500</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;We could create a transaction code,&lt;/P&gt;&lt;P&gt;and call SM30 in it.&lt;/P&gt;&lt;P&gt;In the last section, we can give the name of the custom table which has to be maintained.&lt;/P&gt;&lt;P&gt;Regs,&lt;/P&gt;&lt;P&gt;Venkat&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 15 May 2009 08:19:50 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/input-screen-before-table-maintainance-genrator/m-p/5569211#M1270500</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-05-15T08:19:50Z</dc:date>
    </item>
    <item>
      <title>Re: Input Screen before table maintainance genrator</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/input-screen-before-table-maintainance-genrator/m-p/5569212#M1270501</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;1.) use radio button 'Enter Conditions' for inputs in SM30 or&lt;/P&gt;&lt;P&gt;2.) use FM VIEW_MAINTENANCE_CALL from program with view_name   =  table name&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 15 May 2009 17:52:07 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/input-screen-before-table-maintainance-genrator/m-p/5569212#M1270501</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-05-15T17:52:07Z</dc:date>
    </item>
    <item>
      <title>Re: Input Screen before table maintainance genrator</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/input-screen-before-table-maintainance-genrator/m-p/5569213#M1270502</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;We can use VIEW_MAINTANENCE_CALL  Fm and can give view name as table name or we can do it by writing a program and call the Transaction for TMG. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 18 May 2009 06:09:26 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/input-screen-before-table-maintainance-genrator/m-p/5569213#M1270502</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-05-18T06:09:26Z</dc:date>
    </item>
  </channel>
</rss>

