<?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 Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/table-control/m-p/4322511#M1030024</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;         I think what you can do is to restrict your SELECT Query based on the Order Number. You can use the WHERE Clause to compare the Order Number and then your Internal Table will be filled with only those fields matching the Input / Output Field Value. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope it was clear.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks and Regards,&lt;/P&gt;&lt;P&gt;Venkat Phani Prasad Konduri&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 20 Aug 2008 16:02:59 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2008-08-20T16:02:59Z</dc:date>
    <item>
      <title>Table Control</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/table-control/m-p/4322510#M1030023</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 had got a table control with 4 fields,, &lt;/P&gt;&lt;P&gt;orderno  item  material  quantity&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;when i click the button 'DISPALY'  it dispalys all the record from ztable , that is fine , but my requirement is when the user enters say orderno ' 5 ', in the  input/output field . &lt;/P&gt;&lt;P&gt;Then it should show only the records of that particular orderno.&lt;/P&gt;&lt;P&gt;how should i approach for this kind of scenario.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;this is my select query , it gives me the records of entire ztable..&lt;/P&gt;&lt;P&gt;this should not happen, it should depend on the user.&lt;/P&gt;&lt;P&gt;also tell me how to get the values of that orderno in text button.&lt;/P&gt;&lt;P&gt;when 'DISPLAY'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;      select orderno&lt;/P&gt;&lt;P&gt;             posnr&lt;/P&gt;&lt;P&gt;             matnr&lt;/P&gt;&lt;P&gt;             zmeng&lt;/P&gt;&lt;P&gt;             into table it_test&lt;/P&gt;&lt;P&gt;             from ztest2.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regards, &lt;/P&gt;&lt;P&gt;Pawan&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 20 Aug 2008 15:30:39 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/table-control/m-p/4322510#M1030023</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-08-20T15:30:39Z</dc:date>
    </item>
    <item>
      <title>Re: Table Control</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/table-control/m-p/4322511#M1030024</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;         I think what you can do is to restrict your SELECT Query based on the Order Number. You can use the WHERE Clause to compare the Order Number and then your Internal Table will be filled with only those fields matching the Input / Output Field Value. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope it was clear.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks and Regards,&lt;/P&gt;&lt;P&gt;Venkat Phani Prasad Konduri&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 20 Aug 2008 16:02:59 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/table-control/m-p/4322511#M1030024</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-08-20T16:02:59Z</dc:date>
    </item>
    <item>
      <title>Re: Table Control</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/table-control/m-p/4322512#M1030025</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi,&lt;/P&gt;&lt;P&gt;this is my select query with where clause &lt;/P&gt;&lt;P&gt;select orderno&lt;/P&gt;&lt;P&gt;             posnr&lt;/P&gt;&lt;P&gt;             matnr&lt;/P&gt;&lt;P&gt;             zmeng&lt;/P&gt;&lt;P&gt;             into table it_test&lt;/P&gt;&lt;P&gt;             from ztest2&lt;/P&gt;&lt;P&gt;             where orderno = ztest2-orderno.&lt;/P&gt;&lt;P&gt;      append wa_test to it_test&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;but it shows me the default order number ie the first record, but i want when the user enters orderno . it shows me the record of that ordernumber in table control.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;name of i/o field :- number&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regarsd,&lt;/P&gt;&lt;P&gt;Pawan.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 20 Aug 2008 17:09:58 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/table-control/m-p/4322512#M1030025</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-08-20T17:09:58Z</dc:date>
    </item>
    <item>
      <title>Re: Table Control</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/table-control/m-p/4322513#M1030026</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;This is a very basic question. I don't know if it will help because I think I'm not understanding your problem.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If the i/o field is called "number" the select needs to look like&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
select orderno
posnr
matnr
zmeng
into table it_test
from ztest2
where orderno = number.
&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 20 Aug 2008 17:28:47 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/table-control/m-p/4322513#M1030026</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-08-20T17:28:47Z</dc:date>
    </item>
  </channel>
</rss>

