<?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 (Tabstrip) in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/table-control-tabstrip/m-p/3680015#M886185</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;check the following&lt;/P&gt;&lt;P&gt;did you gave the correct name for sub screen which you gave in screen painter&lt;/P&gt;&lt;P&gt;name of the tabstrip is same in both program and screen painter&lt;/P&gt;&lt;P&gt;check whether all screens are active or not&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;its better to mention call subscreen before the module( note : its not an error) &lt;/P&gt;&lt;P&gt;regards&lt;/P&gt;&lt;P&gt;prasanth&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 21 Apr 2008 09:29:56 GMT</pubDate>
    <dc:creator>prasanth_kasturi</dc:creator>
    <dc:date>2008-04-21T09:29:56Z</dc:date>
    <item>
      <title>Table control (Tabstrip)</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/table-control-tabstrip/m-p/3680012#M886182</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I'm working on very basic level of Dynpro programming with Tabstrip.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I looked through the sample program&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;'DEMO_DYNPRO_TABSTRIP_LOCAL' and made my program almost the same with the sample one.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;but everytime I tried to execute, it doesn't even work.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CONTROL_NOT_FOUND error occurs&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;and the place the error occurs is the second line of CALL SUBSCREEN.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;There was no problem with executing the first line but why it happen?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Here is the code for reference.&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;  CALL SUBSCREEN: SUB1 INCLUDING SY-REPID '0110',&lt;/P&gt;&lt;P&gt;                                 SUB2 INCLUDING SY-REPID '0120',  &amp;lt;-Error&lt;/P&gt;&lt;P&gt;                                 SUB3 INCLUDING SY-REPID '0130'.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 21 Apr 2008 09:13:40 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/table-control-tabstrip/m-p/3680012#M886182</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-04-21T09:13:40Z</dc:date>
    </item>
    <item>
      <title>Re: Table control (Tabstrip)</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/table-control-tabstrip/m-p/3680013#M886183</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;The following way of writing code will cause errors.&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;CALL SUBSCREEN: SUB1 INCLUDING SY-REPID '0110',&lt;/P&gt;&lt;P&gt;SUB2 INCLUDING SY-REPID '0120', &amp;lt;-Error&lt;/P&gt;&lt;P&gt;SUB3 INCLUDING SY-REPID '0130'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Check the following, it will work.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;PROCESS BEFORE OUTPUT.&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;MODULE STATUS_0100.&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;CALL SUBSCREEN  SUB1 INCLUDING SY-REPID '0110'.&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;CALL SUBSCREEN SUB2 INCLUDING SY-REPID '0120'.&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;CALL SUBSCREEN SUB3 INCLUDING SY-REPID '0130'.&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;And check whether all the screens are active or not.&lt;/P&gt;&lt;P&gt;Did you gave the correct name for sub screen which you gave in screen painter&lt;/P&gt;&lt;P&gt;name of the tabstrip is same in both program and screen painter&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Reward if Helpful&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Jagadish&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 21 Apr 2008 09:17:58 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/table-control-tabstrip/m-p/3680013#M886183</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-04-21T09:17:58Z</dc:date>
    </item>
    <item>
      <title>Re: Table control (Tabstrip)</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/table-control-tabstrip/m-p/3680014#M886184</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Kim,&lt;/P&gt;&lt;P&gt;That is the Not the process for calling a subscreen try out this this will help you.&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 STATUS_0100.&lt;/P&gt;&lt;P&gt;call subscreen sub1 including sy-repid '0110'.&lt;/P&gt;&lt;P&gt;call subscreen sub2 including sy-repid '0120'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Reward if Helpfull,&lt;/P&gt;&lt;P&gt;Naresh.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 21 Apr 2008 09:23:26 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/table-control-tabstrip/m-p/3680014#M886184</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-04-21T09:23:26Z</dc:date>
    </item>
    <item>
      <title>Re: Table control (Tabstrip)</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/table-control-tabstrip/m-p/3680015#M886185</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;check the following&lt;/P&gt;&lt;P&gt;did you gave the correct name for sub screen which you gave in screen painter&lt;/P&gt;&lt;P&gt;name of the tabstrip is same in both program and screen painter&lt;/P&gt;&lt;P&gt;check whether all screens are active or not&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;its better to mention call subscreen before the module( note : its not an error) &lt;/P&gt;&lt;P&gt;regards&lt;/P&gt;&lt;P&gt;prasanth&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 21 Apr 2008 09:29:56 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/table-control-tabstrip/m-p/3680015#M886185</guid>
      <dc:creator>prasanth_kasturi</dc:creator>
      <dc:date>2008-04-21T09:29:56Z</dc:date>
    </item>
    <item>
      <title>Re: Table control (Tabstrip)</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/table-control-tabstrip/m-p/3680016#M886186</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I'm sorry to say the problem was not that.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Actually &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CALL SUBSCREEN: SUB1 INCLUDING SY-REPID '0110',&lt;/P&gt;&lt;P&gt;                               SUB2 INCLUDING SY-REPID '0120',&lt;/P&gt;&lt;P&gt;                               SUB3 INCLUDING SY-REPID '0130'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;works properly.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You will see that once you see &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;demo program 'DEMO_DYNPRO_TABSTRIP_LOCAL'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The problem was that the name of table controller on the program was not the same with the name of TABSTRIP on screen painter (element tab of the main screen).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Some how I got the answer and thanks all.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 22 Apr 2008 01:05:21 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/table-control-tabstrip/m-p/3680016#M886186</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-04-22T01:05:21Z</dc:date>
    </item>
  </channel>
</rss>

