<?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: Call a Table Control screen with specific input values from another screen. in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/call-a-table-control-screen-with-specific-input-values-from-another-screen/m-p/8791165#M1679187</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;in the second screen but the declarations needs be declared in TOP INCLUDE.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 11 Jun 2012 11:06:45 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2012-06-11T11:06:45Z</dc:date>
    <item>
      <title>Call a Table Control screen with specific input values from another screen.</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/call-a-table-control-screen-with-specific-input-values-from-another-screen/m-p/8791157#M1679179</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Gurus,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I am in a situation where in i need to display data in table control, by specifying the input values in another screen .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;let me explain it.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;in Screen 1--i have one input field.&lt;/P&gt;&lt;P&gt;&amp;nbsp; by giving proper inputs i'll display table control by calling another screen i.e., Screen 2.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;What i did is ,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;in calling screen(screen 1) used CHAIN Statement.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;selected the fields from the table to display,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;read statement, calls screen( screen2) with table control.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;But this seems not working for me.Please suggest me proper way.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks &amp;amp; Regards.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #ff0000;"&gt;&amp;lt;&amp;lt; Moderator message - basic screen processing - unmarked as a question &amp;gt;&amp;gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Message was edited by: Rob Burbank&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 11 Jun 2012 07:00:27 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/call-a-table-control-screen-with-specific-input-values-from-another-screen/m-p/8791157#M1679179</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2012-06-11T07:00:27Z</dc:date>
    </item>
    <item>
      <title>Re: Call a Table Control screen with specific input values from another screen.</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/call-a-table-control-screen-with-specific-input-values-from-another-screen/m-p/8791158#M1679180</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi Rohan,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;please follow below logic it works &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; &lt;STRONG&gt;PROCESS BEFORE &lt;SPAN class="L0S52"&gt;OUTPUT.&lt;/SPAN&gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN class="L0S52"&gt; &lt;/SPAN&gt;LT_ZSRA is your internal table&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&lt;SPAN class="L0S52"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN class="L0S52"&gt;LOOP &lt;/SPAN&gt;&lt;SPAN class="L0S52"&gt;AT&amp;nbsp;&amp;nbsp; &lt;/SPAN&gt;LT_ZSRA(internal table)&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;SPAN class="L0S52"&gt;WITH &lt;/SPAN&gt;&lt;SPAN class="L0S52"&gt;CONTROL &lt;/SPAN&gt;ZEDIT (your table control)&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;SPAN class="L0S52"&gt;CURSOR (your table control)&lt;/SPAN&gt;ZEDIT&lt;SPAN class="L0S70"&gt;-&lt;/SPAN&gt;CURRENT_LINE.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp; &lt;SPAN class="L0S52"&gt;field &lt;/SPAN&gt;LT_ZSRA&lt;SPAN class="L0S70"&gt;-&lt;/SPAN&gt;ZCASE_NUMBER &lt;SPAN class="L0S52"&gt;module &lt;/SPAN&gt;POPULAT_DATE.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp; &lt;SPAN class="L0S52"&gt;ENDLOOP.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN class="L0S52"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&lt;SPAN class="L0S52"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN class="L0S52"&gt;MODULE &lt;/SPAN&gt;populat_date &lt;SPAN class="L0S52"&gt;OUTPUT.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN class="L0S52"&gt;zedit is your table control &lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp; &lt;SPAN class="L0S52"&gt;MOVE-CORRESPONDING &lt;/SPAN&gt;lt_zsra &lt;SPAN class="L0S52"&gt;TO &lt;/SPAN&gt;zedit.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; &lt;SPAN class="L0S52"&gt;ENDMODULE.&amp;nbsp; &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN class="L0S52"&gt;thank you,&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN class="L0S52"&gt;jacob.kata.&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&lt;SPAN class="L0S52"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 11 Jun 2012 07:59:09 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/call-a-table-control-screen-with-specific-input-values-from-another-screen/m-p/8791158#M1679180</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2012-06-11T07:59:09Z</dc:date>
    </item>
    <item>
      <title>Re: Call a Table Control screen with specific input values from another screen.</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/call-a-table-control-screen-with-specific-input-values-from-another-screen/m-p/8791159#M1679181</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Jacob,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; Whether i have to write this code iin my calling screen or to be called screen.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; like if i use it in calling screen, its a modle dialog box.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; Where should i do it.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thank You.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 11 Jun 2012 08:08:50 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/call-a-table-control-screen-with-specific-input-values-from-another-screen/m-p/8791159#M1679181</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2012-06-11T08:08:50Z</dc:date>
    </item>
    <item>
      <title>Re: Call a Table Control screen with specific input values from another screen.</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/call-a-table-control-screen-with-specific-input-values-from-another-screen/m-p/8791160#M1679182</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Rohan&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You can place the suggested code in the PBO of your screen 2.&lt;/P&gt;&lt;P&gt;Make sure that your internal table is globally declared.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Vic&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 11 Jun 2012 08:33:01 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/call-a-table-control-screen-with-specific-input-values-from-another-screen/m-p/8791160#M1679182</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2012-06-11T08:33:01Z</dc:date>
    </item>
    <item>
      <title>Re: Call a Table Control screen with specific input values from another screen.</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/call-a-table-control-screen-with-specific-input-values-from-another-screen/m-p/8791161#M1679183</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Vic,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; but i'm calling from another screen , how should i trigger that from my calling screen ,SCREEN1.&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, 11 Jun 2012 08:48:32 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/call-a-table-control-screen-with-specific-input-values-from-another-screen/m-p/8791161#M1679183</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2012-06-11T08:48:32Z</dc:date>
    </item>
    <item>
      <title>Re: Call a Table Control screen with specific input values from another screen.</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/call-a-table-control-screen-with-specific-input-values-from-another-screen/m-p/8791162#M1679184</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Rohan&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Screen 1:&lt;/P&gt;&lt;P&gt;PAI&amp;nbsp; "User clicks on Button or presses enter.&lt;/P&gt;&lt;P&gt;Module User_command.&lt;/P&gt;&lt;P&gt;case ok_code when 'Button1'.&lt;/P&gt;&lt;P&gt;Get data and fill itab.&lt;/P&gt;&lt;P&gt;if sy-subrc = 0.&lt;/P&gt;&lt;P&gt;Call screen 2.&lt;/P&gt;&lt;P&gt;endif.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Screen2 PBO.&lt;/P&gt;&lt;P&gt;Place Selected Data into table control table. (Suggested code above)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Vic&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 11 Jun 2012 08:56:02 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/call-a-table-control-screen-with-specific-input-values-from-another-screen/m-p/8791162#M1679184</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2012-06-11T08:56:02Z</dc:date>
    </item>
    <item>
      <title>Re: Call a Table Control screen with specific input values from another screen.</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/call-a-table-control-screen-with-specific-input-values-from-another-screen/m-p/8791163#M1679185</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Vic,&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;&lt;P&gt;case ok_code when 'Button1'.&lt;/P&gt;&lt;P&gt;Get data and fill itab.&lt;/P&gt;&lt;P&gt;if sy-subrc = 0.&lt;/P&gt;&lt;P&gt;Call screen 2.&lt;/P&gt;&lt;P&gt;endif.&lt;/P&gt;&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;Here Get Data and Fill Itab.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;we should write a select query right.&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, 11 Jun 2012 09:27:29 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/call-a-table-control-screen-with-specific-input-values-from-another-screen/m-p/8791163#M1679185</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2012-06-11T09:27:29Z</dc:date>
    </item>
    <item>
      <title>Re: Call a Table Control screen with specific input values from another screen.</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/call-a-table-control-screen-with-specific-input-values-from-another-screen/m-p/8791164#M1679186</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Rohan&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Correct. After the User decides what Data they would like to see, in other words they have typed values into your screen 1, then you can go and get the data they require.&lt;/P&gt;&lt;P&gt;After you have the data they want to see then you can display it in your Table Control.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Vic&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 11 Jun 2012 09:34:30 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/call-a-table-control-screen-with-specific-input-values-from-another-screen/m-p/8791164#M1679186</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2012-06-11T09:34:30Z</dc:date>
    </item>
    <item>
      <title>Re: Call a Table Control screen with specific input values from another screen.</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/call-a-table-control-screen-with-specific-input-values-from-another-screen/m-p/8791165#M1679187</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;in the second screen but the declarations needs be declared in TOP INCLUDE.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 11 Jun 2012 11:06:45 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/call-a-table-control-screen-with-specific-input-values-from-another-screen/m-p/8791165#M1679187</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2012-06-11T11:06:45Z</dc:date>
    </item>
    <item>
      <title>Re: Call a Table Control screen with specific input values from another screen.</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/call-a-table-control-screen-with-specific-input-values-from-another-screen/m-p/8791166#M1679188</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;A __default_attr="273275" __jive_macro_name="user" class="jive_macro jive_macro_user" href="https://community.sap.com/"&gt;&lt;/A&gt; ,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hi Jacob,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;&lt;P&gt;&lt;SPAN class="L0S52"&gt;LOOP &lt;/SPAN&gt;&lt;SPAN class="L0S52"&gt;AT&amp;nbsp;&amp;nbsp; &lt;/SPAN&gt;LT_ZSRA(internal table)&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;SPAN class="L0S52"&gt;WITH &lt;/SPAN&gt;&lt;SPAN class="L0S52"&gt;CONTROL &lt;/SPAN&gt;ZEDIT (your table control)&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;SPAN class="L0S52"&gt;CURSOR (your table control)&lt;/SPAN&gt;ZEDIT&lt;SPAN class="L0S70"&gt;-&lt;/SPAN&gt;CURRENT_LINE.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp; &lt;STRONG&gt;&lt;SPAN class="L0S52"&gt;field &lt;/SPAN&gt;LT_ZSRA&lt;SPAN class="L0S70"&gt;-&lt;/SPAN&gt;ZCASE_NUMBER &lt;SPAN class="L0S52"&gt;module &lt;/SPAN&gt;POPULAT_DATE.&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN class="L0S52"&gt;ENDLOOP.&lt;/SPAN&gt;&lt;/P&gt;&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt; here field &lt;STRONG&gt;lt_zsra-zcase_number&lt;/STRONG&gt; is it my input field.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;if so what if i have more than one input field.&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, 11 Jun 2012 11:23:30 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/call-a-table-control-screen-with-specific-input-values-from-another-screen/m-p/8791166#M1679188</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2012-06-11T11:23:30Z</dc:date>
    </item>
    <item>
      <title>Re: Call a Table Control screen with specific input values from another screen.</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/call-a-table-control-screen-with-specific-input-values-from-another-screen/m-p/8791167#M1679189</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Guys,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; i never got the satisfied answer for this thread so, please help me to solve this particular problem of mine.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;i tried all possible way to display data in table control by giving input in another screen but i couldn't get the solution please HELP.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;thakns &amp;amp; Regards.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 12 Jun 2012 11:15:44 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/call-a-table-control-screen-with-specific-input-values-from-another-screen/m-p/8791167#M1679189</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2012-06-12T11:15:44Z</dc:date>
    </item>
  </channel>
</rss>

