<?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 in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/code-inspector/m-p/2836167#M664077</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;your SELECT is not index supported and therefore slow if the table is large.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;That is what the code inspector tells you, either accept it, there youi can add an escape seqeuence to override the code inspector or change it, i.e. specify an index field, better a first index field in the WHERE condition or create an index with your fields of the WHERE condition.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Siegfried&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 04 Oct 2007 11:47:53 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2007-10-04T11:47:53Z</dc:date>
    <item>
      <title>Code Inspector</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/code-inspector/m-p/2836163#M664073</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Friends,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have written a program to generate a report using the table EKBE and during releasing to transport (SE10),  I am getting the following Errors in the Code Inspector.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;1. Message code 0502.&lt;/P&gt;&lt;P&gt;    Large table EKBE. No field of table index in where condition.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;2. Message code 0503.&lt;/P&gt;&lt;P&gt;    Prog xxxxxxx include xxxxxx Row xxx column xx.&lt;/P&gt;&lt;P&gt;    Large table EKBE.  No first field of a table indes in where condition.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Kinldy could you explain me what is index problem and how to do the same.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;TIA.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Mark K&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 04 Oct 2007 11:37:21 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/code-inspector/m-p/2836163#M664073</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-10-04T11:37:21Z</dc:date>
    </item>
    <item>
      <title>Re: Code Inspector</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/code-inspector/m-p/2836164#M664074</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;The message 1 implies&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In coding reading large table EKBE without any where statement which is very time consuming.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The message 2 implies&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In reading large table EKBE, first field of indexes (primary key) is not being used in where statement.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope this helps&lt;/P&gt;&lt;P&gt;anya&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 04 Oct 2007 11:41:22 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/code-inspector/m-p/2836164#M664074</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-10-04T11:41:22Z</dc:date>
    </item>
    <item>
      <title>Re: Code Inspector</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/code-inspector/m-p/2836165#M664075</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Have a look in your WHERE condition of your select statements. There is no field of the primary key or from a index of ekbe. So your response time will be bad, try to select the fields&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;EBELN&lt;/P&gt;&lt;P&gt;EBELP&lt;/P&gt;&lt;P&gt;ZEKKN&lt;/P&gt;&lt;P&gt;VGABE&lt;/P&gt;&lt;P&gt;GJAHR&lt;/P&gt;&lt;P&gt;BELNR&lt;/P&gt;&lt;P&gt;BUZEI&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;which are the primary key of table ekbe. (Fields that are check in the column key in transaction se11/se12)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Kind regards&lt;/P&gt;&lt;P&gt;Matthias&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 04 Oct 2007 11:44:14 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/code-inspector/m-p/2836165#M664075</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-10-04T11:44:14Z</dc:date>
    </item>
    <item>
      <title>Re: Code Inspector</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/code-inspector/m-p/2836166#M664076</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 in that where condition put one primary field so that this will remove &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;that error&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 04 Oct 2007 11:45:09 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/code-inspector/m-p/2836166#M664076</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-10-04T11:45:09Z</dc:date>
    </item>
    <item>
      <title>Re: Code Inspector</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/code-inspector/m-p/2836167#M664077</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;your SELECT is not index supported and therefore slow if the table is large.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;That is what the code inspector tells you, either accept it, there youi can add an escape seqeuence to override the code inspector or change it, i.e. specify an index field, better a first index field in the WHERE condition or create an index with your fields of the WHERE condition.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Siegfried&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 04 Oct 2007 11:47:53 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/code-inspector/m-p/2836167#M664077</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-10-04T11:47:53Z</dc:date>
    </item>
    <item>
      <title>Re: Code Inspector</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/code-inspector/m-p/2836168#M664078</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Could you pls tell me as to how to create index.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 04 Oct 2007 12:10:25 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/code-inspector/m-p/2836168#M664078</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-10-04T12:10:25Z</dc:date>
    </item>
  </channel>
</rss>

