<?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: Code inspector warning in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/code-inspector-warning/m-p/2177452#M462644</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Cynthia,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Remove the Variables , Constants, Work areas and Internal tables which are all not used by your code.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Suresh&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 20 Apr 2007 12:23:08 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2007-04-20T12:23:08Z</dc:date>
    <item>
      <title>Code inspector warning</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/code-inspector-warning/m-p/2177448#M462640</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;Can anyone help me with this..&lt;/P&gt;&lt;P&gt;  i am getting so many warning while running the code inspector like "no read access to internal table itab[] " wat is the reason for that. &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>Fri, 20 Apr 2007 12:10:29 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/code-inspector-warning/m-p/2177448#M462640</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-04-20T12:10:29Z</dc:date>
    </item>
    <item>
      <title>Re: Code inspector warning</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/code-inspector-warning/m-p/2177449#M462641</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Cynthia,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;U r getting data into some internal table.  But no where u r reading the table entries.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If u used the internal table for download or the case where no need of reading then u can ignore the message&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;reward with points if useful&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Krishna K&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 20 Apr 2007 12:13:07 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/code-inspector-warning/m-p/2177449#M462641</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-04-20T12:13:07Z</dc:date>
    </item>
    <item>
      <title>Re: Code inspector warning</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/code-inspector-warning/m-p/2177450#M462642</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Double click on internal table name and see where it is used if not then you can remove it. Unessecarily it will alliocate memory.&lt;/P&gt;&lt;P&gt;You can suppress these messages using Psuedo messages.&lt;/P&gt;&lt;P&gt;Reward if useful.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 20 Apr 2007 12:18:48 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/code-inspector-warning/m-p/2177450#M462642</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-04-20T12:18:48Z</dc:date>
    </item>
    <item>
      <title>Re: Code inspector warning</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/code-inspector-warning/m-p/2177451#M462643</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;Try to check this code:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;DATA: BEGIN OF ITAB OCCURS 0,
      FIELD,
      END   OF ITAB.


APPEND ITAB.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Here an internal table is defined and a record is appended to it, but no reading of that table is done, so ths system gives a warning to indicate you're filling an internal table but then u're using it, so probably that table is useless.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Max&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 20 Apr 2007 12:19:09 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/code-inspector-warning/m-p/2177451#M462643</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-04-20T12:19:09Z</dc:date>
    </item>
    <item>
      <title>Re: Code inspector warning</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/code-inspector-warning/m-p/2177452#M462644</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Cynthia,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Remove the Variables , Constants, Work areas and Internal tables which are all not used by your code.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Suresh&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 20 Apr 2007 12:23:08 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/code-inspector-warning/m-p/2177452#M462644</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-04-20T12:23:08Z</dc:date>
    </item>
    <item>
      <title>Re: Code inspector warning</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/code-inspector-warning/m-p/2177453#M462645</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;Declared internal table and u r not using that table. u can comment or delete that table and check it out.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Vara Prasad&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 20 Apr 2007 12:47:48 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/code-inspector-warning/m-p/2177453#M462645</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-04-20T12:47:48Z</dc:date>
    </item>
    <item>
      <title>Re: Code inspector warning</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/code-inspector-warning/m-p/2177454#M462646</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 that u might be coded to read data directly from the bod of itab. i.e.,  u r not able to read data from body directly so, u have to transfer data to wa of itab.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;if  the code is like  READ ITAB[ ] then it can shows error.&lt;/P&gt;&lt;P&gt;for this u have to declare wa and body separeately.&lt;/P&gt;&lt;P&gt;thanks &amp;amp; regards,&lt;/P&gt;&lt;P&gt;J.prakash&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 20 Apr 2007 12:56:07 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/code-inspector-warning/m-p/2177454#M462646</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-04-20T12:56:07Z</dc:date>
    </item>
  </channel>
</rss>

