<?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: Error in Extended Syntax check in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/error-in-extended-syntax-check/m-p/1117439#M107875</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;Use function module AIPC_CONVERT_TO_UPPERCASE to resolve the error.&lt;/P&gt;&lt;P&gt;Thank you.&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Karun M&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 17 Feb 2006 11:47:55 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2006-02-17T11:47:55Z</dc:date>
    <item>
      <title>Error in Extended Syntax check</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/error-in-extended-syntax-check/m-p/1117438#M107874</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;&lt;/P&gt;&lt;P&gt;Iam geeting this follwing error in Extended syntax check&lt;/P&gt;&lt;P&gt;"Dangerous use of TRANSLATE in a multilingual system"&lt;/P&gt;&lt;P&gt;Code: translate i_hd_data_in-bukrs to upper case.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;How to resolve this error.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 17 Feb 2006 11:46:24 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/error-in-extended-syntax-check/m-p/1117438#M107874</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-02-17T11:46:24Z</dc:date>
    </item>
    <item>
      <title>Re: Error in Extended Syntax check</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/error-in-extended-syntax-check/m-p/1117439#M107875</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;Use function module AIPC_CONVERT_TO_UPPERCASE to resolve the error.&lt;/P&gt;&lt;P&gt;Thank you.&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Karun M&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 17 Feb 2006 11:47:55 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/error-in-extended-syntax-check/m-p/1117439#M107875</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-02-17T11:47:55Z</dc:date>
    </item>
    <item>
      <title>Re: Error in Extended Syntax check</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/error-in-extended-syntax-check/m-p/1117440#M107876</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;You can hide this error .write below statements at the end of your statement.&lt;/P&gt;&lt;P&gt;#EC TRANSLANG or "#EC SYNTCHAR&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 17 Feb 2006 11:51:43 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/error-in-extended-syntax-check/m-p/1117440#M107876</guid>
      <dc:creator>Laxmana_Appana_</dc:creator>
      <dc:date>2006-02-17T11:51:43Z</dc:date>
    </item>
    <item>
      <title>Re: Error in Extended Syntax check</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/error-in-extended-syntax-check/m-p/1117441#M107877</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi swaminathan,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;1. Don't worry.&lt;/P&gt;&lt;P&gt;   Its just like warning.&lt;/P&gt;&lt;P&gt;   The program will run fine.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;2. The error comes bcos of :&lt;/P&gt;&lt;P&gt;   BUKRS field.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;3. BUKRS in SAP is company code&lt;/P&gt;&lt;P&gt;   and is meant for use in different languages.&lt;/P&gt;&lt;P&gt;   If u don't define the variable as BUKRS,&lt;/P&gt;&lt;P&gt;   and simply CHAR(4)&lt;/P&gt;&lt;P&gt;   it won't give any error.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;4. see this code :&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;REPORT  zam_temp169                             .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DATA : a(10) TYPE c.&lt;/P&gt;&lt;P&gt;TRANSLATE a TO UPPER CASE.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;*----&lt;/P&gt;&lt;HR originaltext="----------" /&gt;&lt;P&gt; this will give error&lt;/P&gt;&lt;P&gt;DATA : bukrs LIKE t001-bukrs.&lt;/P&gt;&lt;P&gt;TRANSLATE bukrs TO UPPER CASE.&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;amit m.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 17 Feb 2006 11:51:46 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/error-in-extended-syntax-check/m-p/1117441#M107877</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-02-17T11:51:46Z</dc:date>
    </item>
    <item>
      <title>Re: Error in Extended Syntax check</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/error-in-extended-syntax-check/m-p/1117442#M107878</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;From SAP HELP:&lt;/P&gt;&lt;P&gt;Problems may occur if the language of the text environment differs from the language in which the data to be processed is entered. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Use SET LOCALE before using TRANSLATE.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SET LOCALE LANGUAGE lang [COUNTRY cntry] [MODIFIER mod].&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 17 Feb 2006 11:52:52 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/error-in-extended-syntax-check/m-p/1117442#M107878</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-02-17T11:52:52Z</dc:date>
    </item>
  </channel>
</rss>

