<?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: 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/1951188#M391810</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;"#EC is used to hide the errors.&lt;/P&gt;&lt;P&gt;&lt;A href="http://help.sap.com/saphelp_nw2004s/helpdata/en/d1/801afd454211d189710000e8322d00/content.htm" target="test_blank"&gt;http://help.sap.com/saphelp_nw2004s/helpdata/en/d1/801afd454211d189710000e8322d00/content.htm&lt;/A&gt;&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 ...). &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="http://help.sap.com/saphelp_nw2004s/helpdata/en/cf/f2bbcb142c11d3b93a0000e8353423/content.htm" target="test_blank"&gt;http://help.sap.com/saphelp_nw2004s/helpdata/en/cf/f2bbcb142c11d3b93a0000e8353423/content.htm&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Message was edited by: &lt;/P&gt;&lt;P&gt;        Judith Jessie Selvi&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 09 Feb 2007 06:40:03 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2007-02-09T06:40:03Z</dc:date>
    <item>
      <title>Extended syntax check</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/extended-syntax-check/m-p/1951182#M391804</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi experts,&lt;/P&gt;&lt;P&gt;  after the completion of my object, i tested it through EXTENDED SYNTAX CHECK"   its showing errors, warnings and messages.&lt;/P&gt;&lt;P&gt;Error: No exception to set SY-SUBRC  declared for CALL FUNCTION 'SPELL_AMOUNT'.&lt;/P&gt;&lt;P&gt;Warnings : Field string zref_lfa1is not reflected statically in the program.&lt;/P&gt;&lt;P&gt;The message can be hidden with "#EC*.&lt;/P&gt;&lt;P&gt;Explain me whats the functionality of  "#EC*.&lt;/P&gt;&lt;P&gt;And how to make my object free from errors and warnings.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;akmal.&lt;/P&gt;&lt;P&gt; Waiting for replies.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 09 Feb 2007 06:18:05 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/extended-syntax-check/m-p/1951182#M391804</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-02-09T06:18:05Z</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/1951183#M391805</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;refer.&lt;/P&gt;&lt;P&gt;&lt;A href="https://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/com.sapportals.km.docs/library/abap/evaluating%20the%20quality%20of%20your%20abap%20programs%20and%20other%20repository%20objects%20with%20the%20code%20inspector" target="test_blank"&gt;https://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/com.sapportals.km.docs/library/abap/evaluating%20the%20quality%20of%20your%20abap%20programs%20and%20other%20repository%20objects%20with%20the%20code%20inspector&lt;/A&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 09 Feb 2007 06:23:25 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/extended-syntax-check/m-p/1951183#M391805</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-02-09T06:23:25Z</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/1951184#M391806</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;For the error about sy-subrc after the function,uncomment the lines "If sy-subrc..."that generally follow after the function is called.So that the code can throw an exception if sy-subrc is not 0.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;For the warning,they can be hidden by commenting the line with "#EC*.That is,&lt;/P&gt;&lt;P&gt;say you are getting this warning for the following line of code:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Read table.....    .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Then you can hide this warning by using:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Read table......    ."#EC*&lt;/P&gt;&lt;P&gt;These errors can be suppressed.In the slin check,if you don not tick the Suppressed errors radio-button,then these warnings can be hidden.&lt;/P&gt;&lt;P&gt;Then this warning will not be visible in your slin check.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Beejal&lt;/P&gt;&lt;P&gt;**Reward if this helps&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 09 Feb 2007 06:27:10 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/extended-syntax-check/m-p/1951184#M391806</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-02-09T06:27:10Z</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/1951185#M391807</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;  After the function call .. first check for SY-SUBRC &amp;lt;&amp;gt; 0 and then use else&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;   Call function ..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;    if sy-subrc &amp;lt;&amp;gt; 0..&lt;/P&gt;&lt;P&gt;    else.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;    endif.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;And for the warning  about Field string   not reflected ...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  Use "#EC at the line specified by the EPC ..&lt;/P&gt;&lt;P&gt;  It will still show this as a warning in EPC .. but don't bother ...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;GSR.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 09 Feb 2007 06:31:00 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/extended-syntax-check/m-p/1951185#M391807</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-02-09T06:31:00Z</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/1951186#M391808</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;not reflecting means, just comment that line.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;rams&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 09 Feb 2007 06:34:51 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/extended-syntax-check/m-p/1951186#M391808</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-02-09T06:34:51Z</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/1951187#M391809</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;"#EC* will disable the errors and hide them during the syntax check.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This is in a way to override the syntax check errors and warnings.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Subramanian&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 09 Feb 2007 06:34:53 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/extended-syntax-check/m-p/1951187#M391809</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-02-09T06:34:53Z</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/1951188#M391810</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;"#EC is used to hide the errors.&lt;/P&gt;&lt;P&gt;&lt;A href="http://help.sap.com/saphelp_nw2004s/helpdata/en/d1/801afd454211d189710000e8322d00/content.htm" target="test_blank"&gt;http://help.sap.com/saphelp_nw2004s/helpdata/en/d1/801afd454211d189710000e8322d00/content.htm&lt;/A&gt;&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 ...). &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="http://help.sap.com/saphelp_nw2004s/helpdata/en/cf/f2bbcb142c11d3b93a0000e8353423/content.htm" target="test_blank"&gt;http://help.sap.com/saphelp_nw2004s/helpdata/en/cf/f2bbcb142c11d3b93a0000e8353423/content.htm&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Message was edited by: &lt;/P&gt;&lt;P&gt;        Judith Jessie Selvi&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 09 Feb 2007 06:40:03 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/extended-syntax-check/m-p/1951188#M391810</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-02-09T06:40:03Z</dc:date>
    </item>
  </channel>
</rss>

