<?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 control in screen exit in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/table-control-in-screen-exit/m-p/2755387#M641113</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Naveen&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;            Go to CMOD . create new project .Tab Enhancement assignment , Entry 'MM06E005' and choose Tab Component. you will see the screen exit which you can modify as you like&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Wiboon&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 14 Sep 2007 09:17:53 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2007-09-14T09:17:53Z</dc:date>
    <item>
      <title>table control in screen exit</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/table-control-in-screen-exit/m-p/2755386#M641112</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;I have a development like creating a custom screen with table control for tcode ME21n, ME22n and ME23n at item level. A tab will be displayed at item level and it contains a table control in display mode only. i have the exit MM06E005 for this.  But i don't know how to add table control in screen exit. Please anybody help me in this regard.&lt;/P&gt;&lt;P&gt;Any help will be appreciated.&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>Fri, 14 Sep 2007 09:09:12 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/table-control-in-screen-exit/m-p/2755386#M641112</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-09-14T09:09:12Z</dc:date>
    </item>
    <item>
      <title>Re: table control in screen exit</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/table-control-in-screen-exit/m-p/2755387#M641113</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Naveen&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;            Go to CMOD . create new project .Tab Enhancement assignment , Entry 'MM06E005' and choose Tab Component. you will see the screen exit which you can modify as you like&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Wiboon&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 14 Sep 2007 09:17:53 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/table-control-in-screen-exit/m-p/2755387#M641113</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-09-14T09:17:53Z</dc:date>
    </item>
    <item>
      <title>Re: table control in screen exit</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/table-control-in-screen-exit/m-p/2755388#M641114</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;i know all process otherthan table control in screen. when i create a table control in subscreen  and activats it gives a error like control statement is missing.  but where to give the control statement? its an include program&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 14 Sep 2007 09:28:23 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/table-control-in-screen-exit/m-p/2755388#M641114</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-09-14T09:28:23Z</dc:date>
    </item>
    <item>
      <title>Re: table control in screen exit</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/table-control-in-screen-exit/m-p/2755389#M641115</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Naveen &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;   you need to add more code for table control .&lt;/P&gt;&lt;P&gt;declare variable for control (assume tc_main), internal table for loop the table control : itab. &lt;/P&gt;&lt;P&gt;C&lt;/P&gt;&lt;P&gt;in the screen exit&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;PROCESS BEFORE OUTPUT.&lt;/P&gt;&lt;P&gt;  MODULE status_0100.&lt;/P&gt;&lt;P&gt;  LOOP AT itab&lt;/P&gt;&lt;P&gt;   WITH CONTROL tc_main CURSOR tc_main-top_line.&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;PROCESS AFTER INPUT.&lt;/P&gt;&lt;P&gt;  LOOP AT itab .&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;Regards&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 14 Sep 2007 09:58:09 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/table-control-in-screen-exit/m-p/2755389#M641115</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-09-14T09:58:09Z</dc:date>
    </item>
  </channel>
</rss>

