<?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 Regarding internal table in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-internal-table/m-p/5951589#M1336232</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Dear Friends,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;       You cant use internal table as work area, i got this error. so what could be the problem. Please help me.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Sun, 26 Jul 2009 13:17:26 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2009-07-26T13:17:26Z</dc:date>
    <item>
      <title>Regarding internal table</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-internal-table/m-p/5951589#M1336232</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Dear Friends,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;       You cant use internal table as work area, i got this error. so what could be the problem. Please help me.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 26 Jul 2009 13:17:26 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-internal-table/m-p/5951589#M1336232</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-07-26T13:17:26Z</dc:date>
    </item>
    <item>
      <title>Re: Regarding internal table</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-internal-table/m-p/5951590#M1336233</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 your SELECT statement ..you might be missing Table Statement&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;SELECT spras auart bezei FROM tvakt
INTO  TABLE t_itt1                               " Check here
WHERE bezei IN s_bezei
AND auart IN s_auart.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Edited by: Avinash Kodarapu on Jul 26, 2009 6:59 PM&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 26 Jul 2009 13:25:51 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-internal-table/m-p/5951590#M1336233</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-07-26T13:25:51Z</dc:date>
    </item>
    <item>
      <title>Re: Regarding internal table</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-internal-table/m-p/5951591#M1336234</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You would have to give the exact point in code where you are facing this error for resolution of the problem. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If you have not defined the internal table with headerline, then you can not use the name of internal table-field in a loop at the itab.&lt;/P&gt;&lt;P&gt;meaning the lines below are valid only if the internal table itab has a headerline:&lt;/P&gt;&lt;P&gt;loop at itab.&lt;/P&gt;&lt;P&gt;itab-field = xyz.&lt;/P&gt;&lt;P&gt;endloop.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;also, you may face this error if you are giving a select single into table itab. For a select single you have to give a single target; i.e give a select single into itab.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope it helps.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 26 Jul 2009 15:02:40 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-internal-table/m-p/5951591#M1336234</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-07-26T15:02:40Z</dc:date>
    </item>
    <item>
      <title>Re: Regarding internal table</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-internal-table/m-p/5951592#M1336235</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;This can happen in several places.&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;1. In the Select statement, if you forget to use INTO TABLE&lt;/P&gt;&lt;P&gt;2. APPEND ITAB and forget to use APPEND WA to ITAB.&lt;/P&gt;&lt;P&gt;3. LOOP AT ITAB and forget to use INTO WA.&lt;/P&gt;&lt;P&gt;4. READ ITAB and forget to use INTO WA.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;etc etc etc.....&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Make sure your ITAB declarations are as below:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Types: Begin of t_Itab,&lt;/P&gt;&lt;P&gt;fld1,&lt;/P&gt;&lt;P&gt;fld2 &lt;/P&gt;&lt;P&gt;etc,&lt;/P&gt;&lt;P&gt;End of t_ITAB&lt;/P&gt;&lt;P&gt;data: itab type standard table of t_itab.&lt;/P&gt;&lt;P&gt;data: wa_itab like line of itab.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Kiran&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 26 Jul 2009 15:26:27 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-internal-table/m-p/5951592#M1336235</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-07-26T15:26:27Z</dc:date>
    </item>
  </channel>
</rss>

