<?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: Doubt in Table Control in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/doubt-in-table-control/m-p/3501365#M842191</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;Try like this. I assume in 1st tabl ctrl having plants only&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I aaume it_tablctrl have fieldanme as plant&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This process wil take place whenever u press enter.&lt;/P&gt;&lt;P&gt;PROCESS AFTER INPUT.&lt;/P&gt;&lt;P&gt;loop at it_tblctrl. &lt;/P&gt;&lt;P&gt;module disp.&lt;/P&gt;&lt;P&gt;endloop.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;module disp Input.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;    t_plant = tblc1-plant.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;    now,&lt;/P&gt;&lt;P&gt;    select sloc from &amp;lt;tablename&amp;gt; into itab where plant = t_plant.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  loop at itab into wa.&lt;/P&gt;&lt;P&gt;        wa2-sloc = wa_sloc.&lt;/P&gt;&lt;P&gt;       append wa2 to tblctrl2.&lt;/P&gt;&lt;P&gt;  endloop.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;REWARD POINTS IF HELPFUL. any questions revert me back.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards.&lt;/P&gt;&lt;P&gt;s.senthil kumar&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Sat, 01 Mar 2008 08:38:10 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2008-03-01T08:38:10Z</dc:date>
    <item>
      <title>Doubt in Table Control</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/doubt-in-table-control/m-p/3501364#M842190</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Dear All,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I developed a dialog program for stock query.&lt;/P&gt;&lt;P&gt;In that i have a list box in a screen that lists all the materials. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Also i have two table controls  to display the plants and Sloc in which the selected material is kept.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;when i select  the material from the list box, plant are placed is the table control 1.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;But my requirement is when i select a  single plant from the table control 1, the TC2 should display all the Sloc in that plant.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Can Anybody help me out in this regard,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks in Advance,&lt;/P&gt;&lt;P&gt;Sridhar S&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 01 Mar 2008 06:22:54 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/doubt-in-table-control/m-p/3501364#M842190</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-03-01T06:22:54Z</dc:date>
    </item>
    <item>
      <title>Re: Doubt in Table Control</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/doubt-in-table-control/m-p/3501365#M842191</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;Try like this. I assume in 1st tabl ctrl having plants only&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I aaume it_tablctrl have fieldanme as plant&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This process wil take place whenever u press enter.&lt;/P&gt;&lt;P&gt;PROCESS AFTER INPUT.&lt;/P&gt;&lt;P&gt;loop at it_tblctrl. &lt;/P&gt;&lt;P&gt;module disp.&lt;/P&gt;&lt;P&gt;endloop.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;module disp Input.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;    t_plant = tblc1-plant.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;    now,&lt;/P&gt;&lt;P&gt;    select sloc from &amp;lt;tablename&amp;gt; into itab where plant = t_plant.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  loop at itab into wa.&lt;/P&gt;&lt;P&gt;        wa2-sloc = wa_sloc.&lt;/P&gt;&lt;P&gt;       append wa2 to tblctrl2.&lt;/P&gt;&lt;P&gt;  endloop.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;REWARD POINTS IF HELPFUL. any questions revert me back.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards.&lt;/P&gt;&lt;P&gt;s.senthil kumar&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 01 Mar 2008 08:38:10 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/doubt-in-table-control/m-p/3501365#M842191</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-03-01T08:38:10Z</dc:date>
    </item>
    <item>
      <title>Re: Doubt in Table Control</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/doubt-in-table-control/m-p/3501366#M842192</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Senthil..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; Thank u for ur response.&lt;/P&gt;&lt;P&gt;It will be helpful for me if u send me the solution with some more clarity.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I couldnt get u exactly.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Sridhar&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 03 Mar 2008 08:33:53 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/doubt-in-table-control/m-p/3501366#M842192</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-03-03T08:33:53Z</dc:date>
    </item>
  </channel>
</rss>

