<?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/4730516#M1110216</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;put a constant to 'Store%'. you wont get next time.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regards&lt;/P&gt;&lt;P&gt;guru&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 13 Sep 2011 08:11:44 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2011-09-13T08:11:44Z</dc:date>
    <item>
      <title>Extended syntax check</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/extended-syntax-check/m-p/4730511#M1110211</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;In ECC 6.0, I have two errors in my extended syntax check &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;1).   Char. strings w/o text elements will not be translated:
'Store%'
(The message can be hidden with "#EC NOTEXT)&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;with below coding&lt;/P&gt;&lt;P&gt; &lt;STRONG&gt;SELECT  kunnr name2 j_3astcu&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;    &lt;STRONG&gt;FROM kna1&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;    &lt;STRONG&gt;INTO TABLE gt_kna1&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;    &lt;STRONG&gt;FOR ALL ENTRIES IN gt_soldto1&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;    &lt;STRONG&gt;WHERE ( name2    LIKE 'STORE%'&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;     &lt;STRONG&gt;OR     name2    LIKE 'Store%'&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;     &lt;STRONG&gt;OR     name2    LIKE 'store%'&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;     &lt;STRONG&gt;OR     name2    LIKE 'DC%'&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;    &lt;STRONG&gt;AND     land1    =    'US' )&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;    &lt;STRONG&gt;OR   ( j_3astcu  = gt_soldto1-store_no&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;    &lt;STRONG&gt;AND    land1     = 'US' ).&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;2).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;SELECT-OPTIONS : s_mail1 FOR somlreci1-receiver NO INTERVALS.&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;The current ABAP command is obsolete
 With "LOOP AT itab", one of the additions "INTO", "ASSIGNING", or "TRANSPORTING NO
 FIELDS" is required in the 00 context
Internal Message Code: LOOP 012
 (The message cannot be hidden using pseudo-comment "#EC .., bzw. durch SET
 EXTENDED CHECK OFF/ON)&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;    &lt;STRONG&gt;LOOP AT s_mail1.&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;*&lt;STRONG&gt;-----If email id entered on the selection screen doesnot contain&lt;/STRONG&gt;&lt;/P&gt;&lt;UL&gt;&lt;UL&gt;&lt;LI level="2" type="ul"&gt;&lt;P&gt;    '@' and '.', then give relevent message to user as popup.*&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;/UL&gt;&lt;P&gt;      &lt;STRONG&gt;IF s_mail1-low NA gc_at OR s_mail1-low NA gc_dot.&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;        &lt;STRONG&gt;MESSAGE e038(zs) WITH text-m08 text-m09 text-m13.&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;      &lt;STRONG&gt;ENDIF.&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;    &lt;STRONG&gt;ENDLOOP.&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please suggest me howcan I avoid string Store% as well as select-option.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 07 Nov 2008 20:11:38 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/extended-syntax-check/m-p/4730511#M1110211</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-11-07T20:11:38Z</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/4730512#M1110212</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) &lt;/P&gt;&lt;P&gt;'Store%'(001)...add (001) to the text...then double click on the 001 to create the text element..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;2) Create a work area and use that in the loop at...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;data: wa_mail1 like line of s_mail1.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;LOOP AT s_mail1 INTO wa_mail1.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ENDLOOP.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;P&gt;Naren&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 07 Nov 2008 20:38:11 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/extended-syntax-check/m-p/4730512#M1110212</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-11-07T20:38:11Z</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/4730513#M1110213</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;1. Check out the SAPhelp for the where sql_cond (LIKE) in a select stmt. &lt;/P&gt;&lt;P&gt;2. You must either use a work area to loop into  or use field symbols.  Itabs with header lines are obsolete.  Again SAP help for loop at itab will be a great help.&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;Greg Kern&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 07 Nov 2008 20:38:54 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/extended-syntax-check/m-p/4730513#M1110213</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-11-07T20:38:54Z</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/4730514#M1110214</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;1. Declare the "Store%" in text elements and use in select statment&lt;/P&gt;&lt;P&gt; Eg :     WHERE  name2 LIKE text-001&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;2. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;data : wa_receiver like line of s_mail1.&lt;/P&gt;&lt;P&gt;LOOP AT s_mail1 into wa_receiver.&lt;/P&gt;&lt;P&gt;...&lt;/P&gt;&lt;P&gt;...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ENDLOOP.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; a®&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 07 Nov 2008 20:40:06 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/extended-syntax-check/m-p/4730514#M1110214</guid>
      <dc:creator>former_member194669</dc:creator>
      <dc:date>2008-11-07T20:40:06Z</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/4730515#M1110215</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;In my opinion, the answers given to your first question so far, are wrong.  When there is a &lt;STRONG&gt;specific&lt;/STRONG&gt; reason for using a text string in a select, then it should remain precisely as that.  So you should use "#EC NOTEXT.  It is &lt;STRONG&gt;wrong&lt;/STRONG&gt; to put them in a text element, as they will &lt;STRONG&gt;never&lt;/STRONG&gt; be translated.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The extended syntax check doesn't exist so that you can remove the cause, it is so that you can address it.  Many violations of the extended syntax checker have a valid reason.  That's why you get the "#EC exceptions.  But if you use them, then make sure you can justify it.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;matt&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 07 Nov 2008 21:00:05 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/extended-syntax-check/m-p/4730515#M1110215</guid>
      <dc:creator>matt</dc:creator>
      <dc:date>2008-11-07T21:00: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/4730516#M1110216</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;put a constant to 'Store%'. you wont get next time.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regards&lt;/P&gt;&lt;P&gt;guru&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 13 Sep 2011 08:11:44 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/extended-syntax-check/m-p/4730516#M1110216</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2011-09-13T08:11:44Z</dc:date>
    </item>
  </channel>
</rss>

