<?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 Program Check in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/extended-program-check/m-p/1962865#M395689</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;THANK u&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;still it is not satisfying the condition.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;RANGES: r_lgtyp FOR LGTYP.&lt;/P&gt;&lt;P&gt;DATA : rs_LGTYP LIKE LINE OF R_LGTYP.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;R_LGTYP-SIGN   = C_I.&lt;/P&gt;&lt;P&gt;  R_LGTYP-OPTION = C_EQ.&lt;/P&gt;&lt;P&gt;  R_LGTYP-LOW    = C_CR1.&lt;/P&gt;&lt;P&gt;  APPEND R_LGTYP to r_lgtyp.&lt;/P&gt;&lt;P&gt;  CLEAR R_LGTYP.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  R_LGTYP-SIGN   = C_I.&lt;/P&gt;&lt;P&gt;  R_LGTYP-OPTION = C_EQ.&lt;/P&gt;&lt;P&gt;  R_LGTYP-LOW    = C_CR2.&lt;/P&gt;&lt;P&gt;  APPEND R_LGTYP to r_lgtyp.&lt;/P&gt;&lt;P&gt;  CLEAR R_LGTYP.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  R_LGTYP-SIGN   = C_I.&lt;/P&gt;&lt;P&gt;  R_LGTYP-OPTION = C_EQ.&lt;/P&gt;&lt;P&gt;  R_LGTYP-LOW    = C_CR3.&lt;/P&gt;&lt;P&gt;  APPEND R_LGTYP to r_lgtyp.&lt;/P&gt;&lt;P&gt;  CLEAR R_LGTYP.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  R_LGTYP-SIGN   = C_I.&lt;/P&gt;&lt;P&gt;  R_LGTYP-OPTION = C_EQ.&lt;/P&gt;&lt;P&gt;  R_LGTYP-LOW    = C_CR4.&lt;/P&gt;&lt;P&gt;  APPEND R_LGTYP to r_lgtyp.&lt;/P&gt;&lt;P&gt;  CLEAR R_LGTYP.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;plz reply for the above condition.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 26 Feb 2007 13:51:34 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2007-02-26T13:51:34Z</dc:date>
    <item>
      <title>Extended Program Check</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/extended-program-check/m-p/1962861#M395685</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;          the following error occured in the extended program check&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;      &amp;lt;b&amp;gt; Messages for Obsolete Statements(Error)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;      The current ABAP command is obsolete&lt;/P&gt;&lt;P&gt; You cannot use the "RANGES" statement within classes. Instead, use the "DATA"&lt;/P&gt;&lt;P&gt; statement with the type "TYPE/LIKE RANGE OF" . . . . . . . . .&lt;/P&gt;&lt;P&gt;Internal Message Code: RANGES 004&lt;/P&gt;&lt;P&gt; (The message cannot be hidden using pseudo-comment "#EC .., bzw. durch SET&lt;/P&gt;&lt;P&gt; EXTENDED CHECK OFF/ON)&amp;lt;/b&amp;gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;the following lines were used in the program for which the above error occured&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;data: lgtyp type lgtyp.&lt;/P&gt;&lt;P&gt;ranges: r_lgtyp for lgtyp.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please give me some solution&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks in advance&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 26 Feb 2007 13:24:38 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/extended-program-check/m-p/1962861#M395685</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-02-26T13:24:38Z</dc:date>
    </item>
    <item>
      <title>Re: Extended Program Check</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/extended-program-check/m-p/1962862#M395686</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;data: lgtyp type lgtyp,&lt;/P&gt;&lt;P&gt;r_lgtyp for lgtyp type range of lgtyp.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 26 Feb 2007 13:37:53 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/extended-program-check/m-p/1962862#M395686</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-02-26T13:37:53Z</dc:date>
    </item>
    <item>
      <title>Re: Extended Program Check</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/extended-program-check/m-p/1962863#M395687</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello Ranjith,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Instead of the this stmt&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;lt;b&amp;gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;ranges: r_lgtyp for lgtyp.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&amp;lt;/b&amp;gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Use&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;DATA: r_lgtyp type range of lgtyp with header line.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Vasanth&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 26 Feb 2007 13:39:14 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/extended-program-check/m-p/1962863#M395687</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-02-26T13:39:14Z</dc:date>
    </item>
    <item>
      <title>Re: Extended Program Check</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/extended-program-check/m-p/1962864#M395688</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;Use the Following Syntax.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DATA : r_lgtyp TYPE RANGE OF LGTYP.&lt;/P&gt;&lt;P&gt;DATA : rs_LGTYP LIKE LINE OF R_LGTYP.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regards,&lt;/P&gt;&lt;P&gt;Mahesh&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 26 Feb 2007 13:40:25 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/extended-program-check/m-p/1962864#M395688</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-02-26T13:40:25Z</dc:date>
    </item>
    <item>
      <title>Re: Extended Program Check</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/extended-program-check/m-p/1962865#M395689</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;THANK u&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;still it is not satisfying the condition.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;RANGES: r_lgtyp FOR LGTYP.&lt;/P&gt;&lt;P&gt;DATA : rs_LGTYP LIKE LINE OF R_LGTYP.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;R_LGTYP-SIGN   = C_I.&lt;/P&gt;&lt;P&gt;  R_LGTYP-OPTION = C_EQ.&lt;/P&gt;&lt;P&gt;  R_LGTYP-LOW    = C_CR1.&lt;/P&gt;&lt;P&gt;  APPEND R_LGTYP to r_lgtyp.&lt;/P&gt;&lt;P&gt;  CLEAR R_LGTYP.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  R_LGTYP-SIGN   = C_I.&lt;/P&gt;&lt;P&gt;  R_LGTYP-OPTION = C_EQ.&lt;/P&gt;&lt;P&gt;  R_LGTYP-LOW    = C_CR2.&lt;/P&gt;&lt;P&gt;  APPEND R_LGTYP to r_lgtyp.&lt;/P&gt;&lt;P&gt;  CLEAR R_LGTYP.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  R_LGTYP-SIGN   = C_I.&lt;/P&gt;&lt;P&gt;  R_LGTYP-OPTION = C_EQ.&lt;/P&gt;&lt;P&gt;  R_LGTYP-LOW    = C_CR3.&lt;/P&gt;&lt;P&gt;  APPEND R_LGTYP to r_lgtyp.&lt;/P&gt;&lt;P&gt;  CLEAR R_LGTYP.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  R_LGTYP-SIGN   = C_I.&lt;/P&gt;&lt;P&gt;  R_LGTYP-OPTION = C_EQ.&lt;/P&gt;&lt;P&gt;  R_LGTYP-LOW    = C_CR4.&lt;/P&gt;&lt;P&gt;  APPEND R_LGTYP to r_lgtyp.&lt;/P&gt;&lt;P&gt;  CLEAR R_LGTYP.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;plz reply for the above condition.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 26 Feb 2007 13:51:34 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/extended-program-check/m-p/1962865#M395689</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-02-26T13:51:34Z</dc:date>
    </item>
    <item>
      <title>Re: Extended Program Check</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/extended-program-check/m-p/1962866#M395690</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Remove this line from the code:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;RANGES: r_lgtyp FOR LGTYP.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;TO define the Ranges &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;DATA : rs_LGTYP TYPE RANGE OF LGTYP occurs 0 with header line.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 26 Feb 2007 13:54:00 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/extended-program-check/m-p/1962866#M395690</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-02-26T13:54:00Z</dc:date>
    </item>
    <item>
      <title>Re: Extended Program Check</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/extended-program-check/m-p/1962867#M395691</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;the problem is that the statement "ranges" is obsolete by now. Atleast when dealing with ABAP Óbject Orientated.&lt;/P&gt;&lt;P&gt;So as long as a Ranges statement appears in your code the extended Syntaxcheck will alert you.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;But like you can see above, the ranges statement isnt neccesary anymore, since it has been replaced by the data statement with the option ranges.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;BUT be aware the statement "with header line" is obsolete as well, and not only when dealing with ABAP OO, it´s generally obsolete.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Message was edited by: &lt;/P&gt;&lt;P&gt;        Florian Kemmer&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Message was edited by: &lt;/P&gt;&lt;P&gt;        Florian Kemmer&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 26 Feb 2007 14:28:23 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/extended-program-check/m-p/1962867#M395691</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-02-26T14:28:23Z</dc:date>
    </item>
  </channel>
</rss>

