<?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: #EC in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/ec/m-p/2563089#M584603</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;&lt;/P&gt;&lt;P&gt;I need some help in this regard,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;***********&lt;STRONG&gt;Points will be rewarded&lt;/STRONG&gt;***********&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Study SAP&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Message was edited by: &lt;/P&gt;&lt;P&gt;        Study Sap&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 08 Aug 2007 06:41:37 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2007-08-08T06:41:37Z</dc:date>
    <item>
      <title>#EC</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/ec/m-p/2563088#M584602</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;&lt;/P&gt;&lt;P&gt;What is the mean of &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;"#EC NEEDED &lt;/P&gt;&lt;P&gt;and &lt;/P&gt;&lt;P&gt;"#EC CALLED&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks in Advance,&lt;/P&gt;&lt;P&gt;Study SAP&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 31 Jul 2007 10:34:55 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/ec/m-p/2563088#M584602</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-07-31T10:34:55Z</dc:date>
    </item>
    <item>
      <title>Re: #EC</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/ec/m-p/2563089#M584603</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;&lt;/P&gt;&lt;P&gt;I need some help in this regard,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;***********&lt;STRONG&gt;Points will be rewarded&lt;/STRONG&gt;***********&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Study SAP&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Message was edited by: &lt;/P&gt;&lt;P&gt;        Study Sap&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 08 Aug 2007 06:41:37 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/ec/m-p/2563089#M584603</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-08-08T06:41:37Z</dc:date>
    </item>
    <item>
      <title>Re: #EC</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/ec/m-p/2563090#M584604</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;Comments &lt;/P&gt;&lt;P&gt;Normal comments &lt;/P&gt;&lt;P&gt;The * character in the first position in a line in a program indicates that the line is a comment line. A comment line can contain any content you wish and is ignored when the program is generated by the ABAP Compiler. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If you enter " in any position in a line, the remaining content to the end of the line is a comment (line end comment), which is also ignored when the program is generated by the ABAP Compiler. This rule does not apply to " in character literals. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Pseudo comments &lt;/P&gt;&lt;P&gt;The character string "#EC after a statement defines that the content following it is a pseudo comment. Pseudo comments influence the extended program check or define test properties for test classes (as of release 7.0). "#EC can either be followed by a text documented during the extended program check to stop the corresponding check for this line, or by a test property after the CLASS statement with the addition FOR TESTING. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Note &lt;/P&gt;&lt;P&gt;In non-Unicode systems, no characters should be used in lines that are not available in all code pages supported by SAP. In the worst case scenario, a program used with a different code page to that in which it was created can no longer be executed. SAP recommends that you only use 7-bit ASCII characters. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Example &lt;/P&gt;&lt;P&gt;The first line is a comment line. The pseudo comment "#EC NEEDED suppresses the report from the extended program check that f is not subject to read access. The last line contains a comment after ". &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;Demo extended check &lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;DATA: f TYPE string,   "#EC NEEDED &lt;/P&gt;&lt;P&gt;      g TYPE string. &lt;/P&gt;&lt;P&gt;f = g.                 "Value assignment &lt;/P&gt;&lt;P&gt;&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;Vivek&lt;/P&gt;&lt;P&gt;&amp;lt;b&amp;gt;&lt;/P&gt;&lt;P&gt;Reward if useful&amp;lt;/b&amp;gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 08 Aug 2007 07:07:27 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/ec/m-p/2563090#M584604</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-08-08T07:07:27Z</dc:date>
    </item>
    <item>
      <title>Re: #EC</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/ec/m-p/2563091#M584605</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks Vivek&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 08 Aug 2007 07:12:42 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/ec/m-p/2563091#M584605</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-08-08T07:12:42Z</dc:date>
    </item>
  </channel>
</rss>

