<?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: SLIN/SCI error - Clarrification in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/slin-sci-error-clarrification/m-p/8126638#M1618948</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;STRONG&gt;&lt;SPAN __default_attr="red" __jive_macro_name="color"&gt;Do not ignore these errors&lt;/SPAN&gt;&lt;/STRONG&gt; The statements are &lt;STRONG&gt;obsolete&lt;/STRONG&gt; in this context. They are flagged up because&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;a) they are not necessary &lt;/P&gt;&lt;P&gt;b) they are not syntactically correct in all contexts.&lt;/P&gt;&lt;P&gt;c) they may be flagged as actual errors in the future&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Therefore - do not use them. Use the alternatives. It's really not difficult.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 24 Aug 2011 12:06:18 GMT</pubDate>
    <dc:creator>matt</dc:creator>
    <dc:date>2011-08-24T12:06:18Z</dc:date>
    <item>
      <title>SLIN/SCI error - Clarrification</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/slin-sci-error-clarrification/m-p/8126630#M1618940</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;In SLIN, I am getting below error.&lt;/P&gt;&lt;P&gt;can you please tell me how to consider this.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;1)Messages for Obsolete Statements(Error)&lt;/P&gt;&lt;P&gt;The current ABAP command is obsolete&lt;/P&gt;&lt;P&gt;Within classes and interfaces, you can only use "TYPE" to refer to ABAP Dictionary&lt;/P&gt;&lt;P&gt;types, not "LIKE" or "STRUCTURE".&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;FORM F_OUTPUT_SVF&lt;/P&gt;&lt;P&gt;  USING&lt;/P&gt;&lt;P&gt;        LI_CSVFILEHEADER_IN LIKE I_CSVFILEHEADER&lt;/P&gt;&lt;P&gt;        LI_CSVFILEDATA_IN LIKE I_CSVFILEDATA&lt;/P&gt;&lt;P&gt;        L_LNAME TYPE RSPOLNAME&lt;/P&gt;&lt;P&gt;        L_PMODE TYPE CHAR1&lt;/P&gt;&lt;P&gt;  CHANGING&lt;/P&gt;&lt;P&gt;        L_RC TYPE CHAR1&lt;/P&gt;&lt;P&gt;        L_STATUS LIKE EXTCMDEXEX-STATUS &amp;lt;-Pointing here&lt;/P&gt;&lt;P&gt;        L_R_FILENAME TYPE STRING.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;2)In SCI..Performance Checks&lt;/P&gt;&lt;P&gt;....Analysis of WHERE Condition for SELECT&lt;/P&gt;&lt;P&gt;......Warnings&lt;/P&gt;&lt;P&gt;........Message Code 0003&lt;/P&gt;&lt;P&gt;..........Program ZGTPPO010 Include ZACGZ010 Row 81 Column 0&lt;/P&gt;&lt;P&gt;.......... Table ZACGT03: No First Field of a Table Index in WHERE&lt;/P&gt;&lt;P&gt;..........Condition&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In source code&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SELECT SINGLE JOBID FORM OUTFILEPATH&lt;/P&gt;&lt;P&gt;    FROM ZACGT03&lt;/P&gt;&lt;P&gt;    INTO (LWA_ZACGT03-JOBID,&lt;/P&gt;&lt;P&gt;             LWA_ZACGT03-FORM,&lt;/P&gt;&lt;P&gt;             LWA_ZACGT03-OUTFILEPATH)&lt;/P&gt;&lt;P&gt;    WHERE PROGRAMID = SY-REPID.  &amp;lt;-Pointing here.&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;Chandra&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 24 Aug 2011 09:29:08 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/slin-sci-error-clarrification/m-p/8126630#M1618940</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2011-08-24T09:29:08Z</dc:date>
    </item>
    <item>
      <title>Re: SLIN/SCI error - Clarrification</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/slin-sci-error-clarrification/m-p/8126631#M1618941</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;In form: &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;FORM F_OUTPUT_SVF&lt;/P&gt;&lt;P&gt;USING&lt;/P&gt;&lt;P&gt;LI_CSVFILEHEADER_IN LIKE I_CSVFILEHEADER&lt;/P&gt;&lt;P&gt;LI_CSVFILEDATA_IN LIKE I_CSVFILEDATA&lt;/P&gt;&lt;P&gt;L_LNAME TYPE RSPOLNAME&lt;/P&gt;&lt;P&gt;L_PMODE TYPE CHAR1&lt;/P&gt;&lt;P&gt;CHANGING&lt;/P&gt;&lt;P&gt;L_RC TYPE CHAR1&lt;/P&gt;&lt;P&gt;L_STATUS LIKE EXTCMDEXEX-STATUS &amp;lt;-Pointing here&lt;/P&gt;&lt;P&gt;L_R_FILENAME TYPE STRING.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Replace with:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;FORM F_OUTPUT_SVF&lt;/P&gt;&lt;P&gt;USING&lt;/P&gt;&lt;P&gt;LI_CSVFILEHEADER_IN TYPE I_CSVFILEHEADER&lt;/P&gt;&lt;P&gt;LI_CSVFILEDATA_IN TYPE I_CSVFILEDATA&lt;/P&gt;&lt;P&gt;L_LNAME TYPE RSPOLNAME&lt;/P&gt;&lt;P&gt;L_PMODE TYPE CHAR1&lt;/P&gt;&lt;P&gt;CHANGING&lt;/P&gt;&lt;P&gt;L_RC TYPE CHAR1&lt;/P&gt;&lt;P&gt;L_STATUS TYPE EXTCMDEXEX-STATUS &amp;lt;-Pointing here&lt;/P&gt;&lt;P&gt;L_R_FILENAME TYPE STRING.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;and supply key fields from ZACGT03&lt;/P&gt;&lt;P&gt; in select query:&lt;/P&gt;&lt;P&gt;SELECT SINGLE JOBID FORM OUTFILEPATH&lt;/P&gt;&lt;P&gt;FROM ZACGT03&lt;/P&gt;&lt;P&gt;INTO (LWA_ZACGT03-JOBID,&lt;/P&gt;&lt;P&gt;LWA_ZACGT03-FORM,&lt;/P&gt;&lt;P&gt;LWA_ZACGT03-OUTFILEPATH)&lt;/P&gt;&lt;P&gt;WHERE PROGRAMID = SY-REPID. &amp;lt;-Pointing here.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope this helps.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;BR&lt;/P&gt;&lt;P&gt;Dep&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 24 Aug 2011 09:36:53 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/slin-sci-error-clarrification/m-p/8126631#M1618941</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2011-08-24T09:36:53Z</dc:date>
    </item>
    <item>
      <title>Re: SLIN/SCI error - Clarrification</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/slin-sci-error-clarrification/m-p/8126632#M1618942</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;Change LIKE to TYPE here. L_STATUS TYPE EXTCMDEXEX-STATUS&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hide the message using the command shown in SLIN...may be "#EC NO FIRST FIELD. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Ganga&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 24 Aug 2011 09:37:58 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/slin-sci-error-clarrification/m-p/8126632#M1618942</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2011-08-24T09:37:58Z</dc:date>
    </item>
    <item>
      <title>Re: SLIN/SCI error - Clarrification</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/slin-sci-error-clarrification/m-p/8126633#M1618943</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;1) But in SAP help says, both LIKE and TYPE in USING or Changing are allowed right?&lt;/P&gt;&lt;P&gt;Is this pottential error to be corrected?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;2)Does this error is potential to be correct.&lt;/P&gt;&lt;P&gt;can you please tell me how it could affect in program. In my case key fields are not known at this point of time.&lt;/P&gt;&lt;P&gt;so i cant use in Where condition.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 24 Aug 2011 09:45:23 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/slin-sci-error-clarrification/m-p/8126633#M1618943</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2011-08-24T09:45:23Z</dc:date>
    </item>
    <item>
      <title>Re: SLIN/SCI error - Clarrification</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/slin-sci-error-clarrification/m-p/8126634#M1618944</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 self  join  i.e   like  below   mara .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;select single * from  mara &lt;/P&gt;&lt;P&gt;where bismt = bismt &lt;/P&gt;&lt;P&gt;and matnr  = matnr  .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SELECT SINGLE JOBID FORM OUTFILEPATH&lt;/P&gt;&lt;P&gt;FROM ZACGT03&lt;/P&gt;&lt;P&gt;INTO (LWA_ZACGT03-JOBID,&lt;/P&gt;&lt;P&gt;LWA_ZACGT03-FORM,&lt;/P&gt;&lt;P&gt;LWA_ZACGT03-OUTFILEPATH)&lt;/P&gt;&lt;P&gt;WHERE PROGRAMID = SY-REPID&lt;/P&gt;&lt;P&gt;and      jobid = jobid&lt;/P&gt;&lt;P&gt;and    form = form .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;and  When  you Declare  using Like  . i.e you are allocating  memory  initially   .&lt;/P&gt;&lt;P&gt;       when you declare   using TYPE  i.e  it will allocate memory dynamically  .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regards&lt;/P&gt;&lt;P&gt;Deepak.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 24 Aug 2011 10:07:55 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/slin-sci-error-clarrification/m-p/8126634#M1618944</guid>
      <dc:creator>deepak_dhamat</dc:creator>
      <dc:date>2011-08-24T10:07:55Z</dc:date>
    </item>
    <item>
      <title>Re: SLIN/SCI error - Clarrification</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/slin-sci-error-clarrification/m-p/8126635#M1618945</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;Thanks for reply.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;1) In my case, table ZACGT03 has 4 key fields&lt;/P&gt;&lt;P&gt;MANDT Client&lt;/P&gt;&lt;P&gt;JOBID SVF JOBID&lt;/P&gt;&lt;P&gt;PROGRAMID ABAP Program Name&lt;/P&gt;&lt;P&gt;OUTPUTFLG  Processing division（doesn't use）&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Now i want to fetch SVF JOBID,FORM,OUTFILEPATH fields from this table.&lt;/P&gt;&lt;P&gt;So i have no other go, except to use only PROGRAMID to fetch JOBID  and FORM and file path.&lt;/P&gt;&lt;P&gt;So how to avoid this error in this case?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;2)In form using, LIKE and TYPE both are used for fields.&lt;/P&gt;&lt;P&gt;How to find out LIKE should be replaced with TYPE?  &lt;/P&gt;&lt;P&gt;I would like to know is this potential error to be corrected or not? because looks like this erro&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;REgards&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 24 Aug 2011 10:28:57 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/slin-sci-error-clarrification/m-p/8126635#M1618945</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2011-08-24T10:28:57Z</dc:date>
    </item>
    <item>
      <title>Re: SLIN/SCI error - Clarrification</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/slin-sci-error-clarrification/m-p/8126636#M1618946</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  all 4 key fields   in where condition  &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;where &lt;/P&gt;&lt;P&gt;MANDT  = mandt &lt;/P&gt;&lt;P&gt;JOBID  = jobid &lt;/P&gt;&lt;P&gt;PROGRAMID = sy-repid &lt;/P&gt;&lt;P&gt;outputflg = outputflg &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;and   use "#EC CALLED&lt;/P&gt;&lt;P&gt;like below  after dot  .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;FORM F_OUTPUT_SVF &lt;/P&gt;&lt;P&gt;USING&lt;/P&gt;&lt;P&gt;LI_CSVFILEHEADER_IN LIKE I_CSVFILEHEADER&lt;/P&gt;&lt;P&gt;LI_CSVFILEDATA_IN LIKE I_CSVFILEDATA&lt;/P&gt;&lt;P&gt;L_LNAME TYPE RSPOLNAME&lt;/P&gt;&lt;P&gt;L_PMODE TYPE CHAR1&lt;/P&gt;&lt;P&gt;CHANGING&lt;/P&gt;&lt;P&gt;L_RC TYPE CHAR1&lt;/P&gt;&lt;P&gt;L_STATUS LIKE EXTCMDEXEX-STATUS &lt;/P&gt;&lt;P&gt;L_R_FILENAME TYPE STRING.  ""#EC CALLED&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;&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;Deepak.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Edited by: Deepak Dhamat on Aug 24, 2011 12:40 PM&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 24 Aug 2011 10:36:55 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/slin-sci-error-clarrification/m-p/8126636#M1618946</guid>
      <dc:creator>deepak_dhamat</dc:creator>
      <dc:date>2011-08-24T10:36:55Z</dc:date>
    </item>
    <item>
      <title>Re: SLIN/SCI error - Clarrification</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/slin-sci-error-clarrification/m-p/8126637#M1618947</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;These are not potential errors. You can ignore them.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Ganga&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 24 Aug 2011 11:54:11 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/slin-sci-error-clarrification/m-p/8126637#M1618947</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2011-08-24T11:54:11Z</dc:date>
    </item>
    <item>
      <title>Re: SLIN/SCI error - Clarrification</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/slin-sci-error-clarrification/m-p/8126638#M1618948</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;STRONG&gt;&lt;SPAN __default_attr="red" __jive_macro_name="color"&gt;Do not ignore these errors&lt;/SPAN&gt;&lt;/STRONG&gt; The statements are &lt;STRONG&gt;obsolete&lt;/STRONG&gt; in this context. They are flagged up because&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;a) they are not necessary &lt;/P&gt;&lt;P&gt;b) they are not syntactically correct in all contexts.&lt;/P&gt;&lt;P&gt;c) they may be flagged as actual errors in the future&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Therefore - do not use them. Use the alternatives. It's really not difficult.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 24 Aug 2011 12:06:18 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/slin-sci-error-clarrification/m-p/8126638#M1618948</guid>
      <dc:creator>matt</dc:creator>
      <dc:date>2011-08-24T12:06:18Z</dc:date>
    </item>
    <item>
      <title>Re: SLIN/SCI error - Clarrification</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/slin-sci-error-clarrification/m-p/8126639#M1618949</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;thanks&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 07 Oct 2011 09:48:58 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/slin-sci-error-clarrification/m-p/8126639#M1618949</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2011-10-07T09:48:58Z</dc:date>
    </item>
  </channel>
</rss>

