<?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: select query on pool table T030 in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/select-query-on-pool-table-t030/m-p/5487474#M1256001</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Total Posts:  91  &lt;/P&gt;&lt;P&gt;Total Questions:  66 (64 unresolved)  &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please clean up your old posts.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I don't see anything wrong with what you have written. What do you mean by "its not working"?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Rob&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 23 Apr 2009 13:23:09 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2009-04-23T13:23:09Z</dc:date>
    <item>
      <title>select query on pool table T030</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/select-query-on-pool-table-t030/m-p/5487473#M1256000</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;I need to fatch data from T030 table which is a pool table but when i am writing select query its not working.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;select KTOPL KOMOK KONTS KONTH  from t030 into table fs_t030 where KTOPL = '1000' and&lt;/P&gt;&lt;P&gt;                                                                   komok = fs_kont-kont1.&lt;/P&gt;&lt;P&gt;Please tell me how should i fatch data?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks &amp;amp; Regards,&lt;/P&gt;&lt;P&gt;Amit&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 23 Apr 2009 13:05:13 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/select-query-on-pool-table-t030/m-p/5487473#M1256000</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-04-23T13:05:13Z</dc:date>
    </item>
    <item>
      <title>Re: select query on pool table T030</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/select-query-on-pool-table-t030/m-p/5487474#M1256001</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Total Posts:  91  &lt;/P&gt;&lt;P&gt;Total Questions:  66 (64 unresolved)  &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please clean up your old posts.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I don't see anything wrong with what you have written. What do you mean by "its not working"?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Rob&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 23 Apr 2009 13:23:09 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/select-query-on-pool-table-t030/m-p/5487474#M1256001</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-04-23T13:23:09Z</dc:date>
    </item>
    <item>
      <title>Re: select query on pool table T030</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/select-query-on-pool-table-t030/m-p/5487475#M1256002</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;just put a breakpoint on the select query and .....&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;if fs_kont-kont1 is the work area of another internal table than &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;pls make sure that u have some value in fs_kont-kont1 and check wether KTOPL is having value 1000 in the table &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;also make sure that the table T030 have entries in it.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;code&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;data:
  t_to30 type standard table of t030.

select * from t030 into table t_t030
where ktopl eq '1000' and komok eq fs_kont-kont1.

if sy-subrc ne 0.
message 'No Records Found' type 'E'.
endif.
&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;hope this solves the issue...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;thanks&lt;/P&gt;&lt;P&gt;ravi&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 24 Apr 2009 04:37:24 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/select-query-on-pool-table-t030/m-p/5487475#M1256002</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-04-24T04:37:24Z</dc:date>
    </item>
    <item>
      <title>Re: select query on pool table T030</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/select-query-on-pool-table-t030/m-p/5487476#M1256003</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi amit&lt;/P&gt;&lt;P&gt;the query is working fine&lt;/P&gt;&lt;P&gt;may be there is no entry for KTOPL = '1000' in t030 because i didnt fine any value in t030 for KTOPL = '1000' in se11.&lt;/P&gt;&lt;P&gt;so plz check the data in t030.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 24 Apr 2009 11:32:26 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/select-query-on-pool-table-t030/m-p/5487476#M1256003</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-04-24T11:32:26Z</dc:date>
    </item>
  </channel>
</rss>

