<?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: Internal Table Error in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/internal-table-error/m-p/4479157#M1060669</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Eeshwar Baddam,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;DATA: itab LIKE yyhcobd OCCURS 0 WITH HEADER LINE.

SELECT * FROM yyhcobd INTO TABLE itab.

LOOP AT itab.
  WRITE:/ itab.
ENDLOOP.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;yyhcobd&lt;/STRONG&gt; ---&amp;gt; this table does not contain the Quantity and currency Fields .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;That is the reason it is working fine.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If the table contains the Currency or quantity fields then you need to give the fields also.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Best regards,&lt;/P&gt;&lt;P&gt;raam&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 11 Sep 2008 05:23:08 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2008-09-11T05:23:08Z</dc:date>
    <item>
      <title>Internal Table Error</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/internal-table-error/m-p/4479146#M1060658</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 have the code like below in 4.6c version.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;data: itab like mara occurs 0 with header line.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;select * from mara into table itab.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;loop at itab.&lt;/P&gt;&lt;P&gt;write:/ itab.&lt;/P&gt;&lt;P&gt;endloop.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This code is working in 4.6c version.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;But if i try the same code in ECC 6.0 version iam getting the error as&lt;/P&gt;&lt;P&gt;"ITAB cannot be converted to charector-type field".&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;How to overcome this in ECC6.0 without declaring each field.&lt;/P&gt;&lt;P&gt;(ex:I mean itab-matnr)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks in Advance.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 11 Sep 2008 04:53:40 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/internal-table-error/m-p/4479146#M1060658</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-09-11T04:53:40Z</dc:date>
    </item>
    <item>
      <title>Re: Internal Table Error</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/internal-table-error/m-p/4479147#M1060659</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;this is not an error.&lt;/P&gt;&lt;P&gt;it's just a warning message just activate and ignore this message and run your program.&lt;/P&gt;&lt;P&gt;don't bother much.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 11 Sep 2008 05:00:26 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/internal-table-error/m-p/4479147#M1060659</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-09-11T05:00:26Z</dc:date>
    </item>
    <item>
      <title>Re: Internal Table Error</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/internal-table-error/m-p/4479148#M1060660</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;The error is in this part of code.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;loop at itab.&lt;/P&gt;&lt;P&gt;write:/ itab.&lt;/P&gt;&lt;P&gt;endloop.&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;we can not do it like that we need to display all the fields individually.&lt;/P&gt;&lt;P&gt;try it like that, Hope it will work.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Rajesh Kumar&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 11 Sep 2008 05:02:23 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/internal-table-error/m-p/4479148#M1060660</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-09-11T05:02:23Z</dc:date>
    </item>
    <item>
      <title>Re: Internal Table Error</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/internal-table-error/m-p/4479149#M1060661</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Eeshwar,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;IN ECC 6.0 version, writing the internal table as a whole is not UNICODE compatible. So what you need to do is, you need to write individual fields for your output.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;As follows:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;LOOP AT ITAB INTO WA_ITAB.&lt;/P&gt;&lt;P&gt;  WRITE:/ WA-ITAB-field1,&lt;/P&gt;&lt;P&gt;                WA-ITAB-field2.&lt;/P&gt;&lt;P&gt;ENDLOOP.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This would help you solve that error/ warning.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Best Regards,&lt;/P&gt;&lt;P&gt;Ram.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 11 Sep 2008 05:02:42 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/internal-table-error/m-p/4479149#M1060661</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-09-11T05:02:42Z</dc:date>
    </item>
    <item>
      <title>Re: Internal Table Error</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/internal-table-error/m-p/4479150#M1060662</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi eeshwar Baddam,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;DATA: itab LIKE yyhcobd OCCURS 0 WITH HEADER LINE.

SELECT * FROM yyhcobd INTO TABLE itab.

LOOP AT itab.
  WRITE:/ itab.
ENDLOOP.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This code is working fine in ECC 6.0.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Best regards,&lt;/P&gt;&lt;P&gt;raam&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 11 Sep 2008 05:05:02 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/internal-table-error/m-p/4479150#M1060662</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-09-11T05:05:02Z</dc:date>
    </item>
    <item>
      <title>Re: Internal Table Error</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/internal-table-error/m-p/4479151#M1060663</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi eshwar.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;                   try this way&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;          &lt;/P&gt;&lt;P&gt;data: itab type table of  mara.&lt;/P&gt;&lt;P&gt;data:wa_itab type mara.&lt;/P&gt;&lt;P&gt;select * from mara into table itab.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;loop at itab into wa_itab.&lt;/P&gt;&lt;P&gt;write:/ wa_itab-matnr.&lt;/P&gt;&lt;P&gt;endloop.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Mahesh.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 11 Sep 2008 05:06:14 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/internal-table-error/m-p/4479151#M1060663</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-09-11T05:06:14Z</dc:date>
    </item>
    <item>
      <title>Re: Internal Table Error</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/internal-table-error/m-p/4479152#M1060664</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;if your internal table contains any qty , decimals, currency fields then it is not possible to use directly using write itab, and it gives &lt;STRONG&gt;error&lt;/STRONG&gt;. you need to specify the fields what ever you want to display.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;loop at itab.
write:/ itab. "it works only for char/string etc but fails for QTY,currency etc.
endloop.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 11 Sep 2008 05:07:10 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/internal-table-error/m-p/4479152#M1060664</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-09-11T05:07:10Z</dc:date>
    </item>
    <item>
      <title>Re: Internal Table Error</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/internal-table-error/m-p/4479153#M1060665</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;IN ECC 6.0, just writing "loop at itab" wont work as its not compatible with the standards.&lt;/P&gt;&lt;P&gt;First declare the workarea for the table, read all records in to the workarea and then indivisually write all the records. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Loop at itab into wa_itab.&lt;/P&gt;&lt;P&gt;write : wa_itab-f1.&lt;/P&gt;&lt;P&gt;endloop.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;preet&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 11 Sep 2008 05:08:26 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/internal-table-error/m-p/4479153#M1060665</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-09-11T05:08:26Z</dc:date>
    </item>
    <item>
      <title>Re: Internal Table Error</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/internal-table-error/m-p/4479154#M1060666</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;Use the below method for creating internal table and work area in the ECC 6.0.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;types: begin of y_struc,&lt;/P&gt;&lt;P&gt;          &lt;/P&gt;&lt;P&gt;          field1 type dbtable-field1,&lt;/P&gt;&lt;P&gt;  &lt;/P&gt;&lt;P&gt;          field2 type dbtable-field2,&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;         end of y_struc.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;data: itab type standard table of y_struc,&lt;/P&gt;&lt;P&gt;        wa type y_struc.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;loop at itab into wa.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;write: wa-field1, wa-field2.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;clear wa.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;endloop.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 11 Sep 2008 05:08:31 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/internal-table-error/m-p/4479154#M1060666</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-09-11T05:08:31Z</dc:date>
    </item>
    <item>
      <title>Re: Internal Table Error</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/internal-table-error/m-p/4479155#M1060667</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;&lt;/P&gt;&lt;P&gt;write this way.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;loop at itab.&lt;/P&gt;&lt;P&gt;write:/ itab-matnr, itab-makt......&lt;/P&gt;&lt;P&gt;endloop.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Or best is to use workarea .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;loop at itab into wa_itab&lt;/P&gt;&lt;P&gt;write:/ wa_itab-matn, wa_itab-makt...&lt;/P&gt;&lt;P&gt;endloop.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;if your internal table contains any quantity , decimals or  currency fields then it is not possible to use write itab, and it gives error so you need to specify the fields that are to be displayed.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;thanx.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 11 Sep 2008 05:11:46 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/internal-table-error/m-p/4479155#M1060667</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-09-11T05:11:46Z</dc:date>
    </item>
    <item>
      <title>Re: Internal Table Error</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/internal-table-error/m-p/4479156#M1060668</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Raam,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I dont want to write the individual fields, Becuase the table has more than 100 fields.&lt;/P&gt;&lt;P&gt;Also the code is not working in ECC6.0 but you are saying it is working fine?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;please clarify...............&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 11 Sep 2008 05:16:17 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/internal-table-error/m-p/4479156#M1060668</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-09-11T05:16:17Z</dc:date>
    </item>
    <item>
      <title>Re: Internal Table Error</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/internal-table-error/m-p/4479157#M1060669</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Eeshwar Baddam,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;DATA: itab LIKE yyhcobd OCCURS 0 WITH HEADER LINE.

SELECT * FROM yyhcobd INTO TABLE itab.

LOOP AT itab.
  WRITE:/ itab.
ENDLOOP.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;yyhcobd&lt;/STRONG&gt; ---&amp;gt; this table does not contain the Quantity and currency Fields .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;That is the reason it is working fine.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If the table contains the Currency or quantity fields then you need to give the fields also.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Best regards,&lt;/P&gt;&lt;P&gt;raam&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 11 Sep 2008 05:23:08 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/internal-table-error/m-p/4479157#M1060669</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-09-11T05:23:08Z</dc:date>
    </item>
    <item>
      <title>Re: Internal Table Error</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/internal-table-error/m-p/4479158#M1060670</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;data: itab like mara occurs 0 with header line.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;jus t change this as.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;data: itab like table of mara occurs 0 with header line.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 11 Sep 2008 05:28:08 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/internal-table-error/m-p/4479158#M1060670</guid>
      <dc:creator>kesavadas_thekkillath</dc:creator>
      <dc:date>2008-09-11T05:28:08Z</dc:date>
    </item>
    <item>
      <title>Re: Internal Table Error</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/internal-table-error/m-p/4479159#M1060671</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 think in mara table i have faced the same problem. the only solution is the fields that are requied should be declared one by one , not by refferrring it to whole table.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 11 Sep 2008 05:31:04 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/internal-table-error/m-p/4479159#M1060671</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-09-11T05:31:04Z</dc:date>
    </item>
    <item>
      <title>Re: Internal Table Error</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/internal-table-error/m-p/4479160#M1060672</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I do not want to use individual fields to display.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In there any other option to do without using individual fields in ECC 6.0&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 11 Sep 2008 05:31:19 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/internal-table-error/m-p/4479160#M1060672</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-09-11T05:31:19Z</dc:date>
    </item>
    <item>
      <title>Re: Internal Table Error</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/internal-table-error/m-p/4479161#M1060673</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi...&lt;/P&gt;&lt;P&gt;u can use an option in pattern where u need to only select the fields that u want, if u r interested i will help you with navigation.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 11 Sep 2008 05:33:08 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/internal-table-error/m-p/4479161#M1060673</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-09-11T05:33:08Z</dc:date>
    </item>
  </channel>
</rss>

