<?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 Regarding EPC in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-epc/m-p/3199990#M762659</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi..&lt;/P&gt;&lt;P&gt;Can anyone please explain about Extended Program Check.&lt;/P&gt;&lt;P&gt;Wats the purpose of that.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Sandeep Reddy&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 17 Dec 2007 05:05:24 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2007-12-17T05:05:24Z</dc:date>
    <item>
      <title>Regarding EPC</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-epc/m-p/3199990#M762659</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi..&lt;/P&gt;&lt;P&gt;Can anyone please explain about Extended Program Check.&lt;/P&gt;&lt;P&gt;Wats the purpose of that.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Sandeep Reddy&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 17 Dec 2007 05:05:24 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-epc/m-p/3199990#M762659</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-12-17T05:05:24Z</dc:date>
    </item>
    <item>
      <title>Re: Regarding EPC</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-epc/m-p/3199991#M762660</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;STRONG&gt;Extended Program Check for ABAP Programs (SLIN)&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;The extended program check makes static checks that are too laborious for the normal syntax check.&lt;/P&gt;&lt;P&gt;When you choose Perform Check, the checks selected in the Checks group box are carried out. If you choose Perform Std. Check, the system report those errors that are particularly critical. Since all results from the standard test are saved, this test is usually very fast.&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Using the Checks&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;For performance reasons, and to make them easier to use, the extended check is divided into 19 separate checks. Use F1 help to display details about a particular check.&lt;/P&gt;&lt;P&gt;You can use any number of the sub-checks in any combination. They can take up to 10 times longer to run than the normal syntax check. However, they do use an internal cache, so if you use them repeatedly, the runtime does become significantly shorter.&lt;/P&gt;&lt;P&gt;The results are displayed as an overview (unless you have selected the first of the Additional Functions . If you double-click a list item, the error description appears. A second double-click branches to the point in the source code where the error occurred.&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Defining Exceptions&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;You can suppress SLIN messages which, in certain cases, are irrelevant. You cannot suppress messages sent by the normal syntax check (such as syntax errors or warnings from the syntax check). The following applies for other errors:&lt;/P&gt;&lt;P&gt;You can exclude a section of code from the check using&lt;/P&gt;&lt;P&gt;SET EXTENDED CHECK OFF&lt;/P&gt;&lt;P&gt;&amp;lt;Coding&amp;gt;&lt;/P&gt;&lt;P&gt;SET EXTENDED CHECK ON(CHECK OFF).&lt;/P&gt;&lt;P&gt;If you want to type the interfaces of FORMS or function modules fully you may have to use the type ANY.&lt;/P&gt;&lt;P&gt;You can use a pseudo-comment ("#EC *) to exclude the current line from the check. You can explicitly exclude certain problematic error messages:&lt;/P&gt;&lt;P&gt;1. ("#EC *) exculdes error messages regarding the current ABAP command&lt;/P&gt;&lt;P&gt;2. ("#EC NOTEXT) indicates that a string does not have to be stored as a text element&lt;/P&gt;&lt;P&gt;3. ("#EC CALLED) indicates that a FORM has a PERFORM call&lt;/P&gt;&lt;P&gt;4. ("#EC NEEDED) - no messages are output about a field that is only read&lt;/P&gt;&lt;P&gt;5. ("#EC PORTABLE) turns off the ASCII/EBCDIC test&lt;/P&gt;&lt;P&gt;6. ("#EC NOBREAK) - no messages are sent at BREAK-POINTs&lt;/P&gt;&lt;P&gt;7. ("#EC TRANSLANG) specifies that the use of TOUPPER or TOLOWER is also safe in multilingual systems.&lt;/P&gt;&lt;P&gt;8. ("#EC SYNTCHAR) specifies that the data TOUPPER or TOLOWER is used on contains only characters from the syntactical character set.&lt;/P&gt;&lt;P&gt;You should remember that comments in macros are not copied over.&lt;/P&gt;&lt;P&gt;If you want to put your own comments after a pseudo-comment, you must leave at least one space after the pseudo-comment. ("#EC NEEDED: SLIN comment) is not interpreted as a pseudo-comment, but ("#EC NEEDED SLIN comment) is.&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Additional Functions&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;If you select Display Check Results as a Simple List, all of the test results are output immediately as a list. This is particularly useful if you want to print the results.&lt;/P&gt;&lt;P&gt;If you activate Also Include Suppressed Errors, the system outputs errors which would otherwise be suppressed.&lt;/P&gt;&lt;P&gt;Examples of Exceptions&lt;/P&gt;&lt;P&gt;DATA: I TYPE I. "#EC NEEDED&lt;/P&gt;&lt;P&gt;I = 4.&lt;/P&gt;&lt;P&gt;BREAK-POINT.    "#EC NOBREAK&lt;/P&gt;&lt;P&gt;WRITE 'Hugo'.   "#EC NOTEXT&lt;/P&gt;&lt;P&gt;IF 'a' &amp;lt; 'c'.   "#EC PORTABLE&lt;/P&gt;&lt;P&gt;ENDIF.&lt;/P&gt;&lt;P&gt;FORM AB.        "#EC CALLED&lt;/P&gt;&lt;P&gt;ENDFORM.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 17 Dec 2007 05:14:22 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-epc/m-p/3199991#M762660</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-12-17T05:14:22Z</dc:date>
    </item>
    <item>
      <title>Re: Regarding EPC</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-epc/m-p/3199992#M762661</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Sandeep,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Extended program check is done for developing the error free&lt;/P&gt;&lt;P&gt;programs. we hav 2 methods to do extended program check. they are slin and scid check.&lt;/P&gt;&lt;P&gt;Slin tcode is extended program check and SCID tcde for performance.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Check this link for more details.&lt;/P&gt;&lt;P&gt;help.sap.com/saphelp_nw70/helpdata/en/d1/801afd454211d189710000e8322d00/content.htm &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;help.sap.com/saphelp_nw04/helpdata/en/cf/f2bbcb142c11d3b93a0000e8353423/content.htm &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;help.sap.com/saphelp_nw04s/helpdata/en/cf/f2bbcb142c11d3b93a0000e8353423/content.htm &lt;/P&gt;&lt;P&gt;help.sap.com/saphelp_nw70/helpdata/en/d1/801af0454211d189710000e8322d00/content.htm &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Sana.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;hope with this u get an exact idea abt it..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Reward if found helpful.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 17 Dec 2007 05:17:55 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-epc/m-p/3199992#M762661</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-12-17T05:17:55Z</dc:date>
    </item>
  </channel>
</rss>

