<?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 Extended syntax check in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/extended-syntax-check/m-p/3199018#M762380</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;            what is the role of extended syntax check in performance tuning?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Rakesh.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 18 Dec 2007 12:48:27 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2007-12-18T12:48:27Z</dc:date>
    <item>
      <title>Extended syntax check</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/extended-syntax-check/m-p/3199018#M762380</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;            what is the role of extended syntax check in performance tuning?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Rakesh.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 18 Dec 2007 12:48:27 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/extended-syntax-check/m-p/3199018#M762380</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-12-18T12:48:27Z</dc:date>
    </item>
    <item>
      <title>Re: Extended syntax check</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/extended-syntax-check/m-p/3199019#M762381</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;good luck with your interview or exam!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;extended syntax check or code inspector will find non-performant database operations, e.g. when no primary key or index is used, bypassing of table buffers, nested selects, updates in loops etc.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 18 Dec 2007 12:57:41 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/extended-syntax-check/m-p/3199019#M762381</guid>
      <dc:creator>ThomasZloch</dc:creator>
      <dc:date>2007-12-18T12:57:41Z</dc:date>
    </item>
    <item>
      <title>Re: Extended syntax check</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/extended-syntax-check/m-p/3199020#M762382</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;extended syntax check or code inspector will find &lt;STRONG&gt;possibly&lt;/STRONG&gt; non-performant database operations...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;It doesn't always get it right.  Hence the requirement for exclusions.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;matt&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 18 Dec 2007 13:04:37 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/extended-syntax-check/m-p/3199020#M762382</guid>
      <dc:creator>matt</dc:creator>
      <dc:date>2007-12-18T13:04:37Z</dc:date>
    </item>
    <item>
      <title>Re: Extended syntax check</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/extended-syntax-check/m-p/3199021#M762383</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;STRONG&gt;Hi Rakesh&lt;/STRONG&gt;,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Extended Program Check&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Many checks are excluded from the standard syntax check for performance reasons. The extended program check performs a complete check that includes the interfaces of external procedures called from your program. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Errors in the extended program check cause exceptions, which in turn cause runtime errors when you run the program. You must correct them. The exception to this is coding that cannot be reached. However, you should delete this to minimize the size of your program and make the source code easier to understand. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Warnings in the extended program check should also be corrected. If your program contains statements that are definitely correct but still produce warnings in the extended program check, you can exclude them from the check using pseudocomments ( "#EC&amp;amp;#8230; ). &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You should always run the extended program check on a new program. You have not finished developing a new program until you can run the extended program check on it without any errors or warnings. Messages are permissible, since they are generally not critical. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The extended program check is also only a static check. It cannot eliminate all of the circumstances that could lead to exception situations or runtime errors. For example, any statements in which you specify arguments dynamically as the contents of fields, or in which you call procedures dynamically, cannot be checked statically. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Plz Reward if it is useful,&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Mahi&lt;/STRONG&gt;.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 18 Dec 2007 13:11:42 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/extended-syntax-check/m-p/3199021#M762383</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-12-18T13:11:42Z</dc:date>
    </item>
  </channel>
</rss>

