<?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: Syntax Check Error in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/syntax-check-error/m-p/3419103#M821233</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;can you please elaborate about the correction.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Are you suggesting to change the declaration.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Raju.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 18 Feb 2008 22:12:05 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2008-02-18T22:12:05Z</dc:date>
    <item>
      <title>Syntax Check Error</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/syntax-check-error/m-p/3419101#M821231</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I am having a syntax check problem in my program.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Code for the same,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  &lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;constants: c_tab type x value '09'.      "tab character!!!
 field-symbols: &amp;lt;f_separator&amp;gt;.

assign c_tab to &amp;lt;f_separator&amp;gt; type 'C'.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The Error is ,&lt;/P&gt;&lt;P&gt;The length of "C_TAB" in bytes must be a multiple of the size of a Unicode character (regardless of the size of the Unicode character).&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 18 Feb 2008 20:29:02 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/syntax-check-error/m-p/3419101#M821231</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-02-18T20:29:02Z</dc:date>
    </item>
    <item>
      <title>Re: Syntax Check Error</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/syntax-check-error/m-p/3419102#M821232</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Use &lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;CL_ABAP_CHAR_UTILITIES=&amp;gt;HORIZONTAL_TAB&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;in Unicode systems&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 18 Feb 2008 21:57:48 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/syntax-check-error/m-p/3419102#M821232</guid>
      <dc:creator>former_member182670</dc:creator>
      <dc:date>2008-02-18T21:57:48Z</dc:date>
    </item>
    <item>
      <title>Re: Syntax Check Error</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/syntax-check-error/m-p/3419103#M821233</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;can you please elaborate about the correction.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Are you suggesting to change the declaration.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Raju.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 18 Feb 2008 22:12:05 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/syntax-check-error/m-p/3419103#M821233</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-02-18T22:12:05Z</dc:date>
    </item>
    <item>
      <title>Re: Syntax Check Error</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/syntax-check-error/m-p/3419104#M821234</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Will try to explain what Tomasz what advicing you:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Current Declaration:&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&amp;gt;constants: c_tab type x value '09'.      "tab character!!!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In Unicode enabled systems or Unicode Check active programs, we have few stricter syntax checks which result if errors compared to earlier mechanisms.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;So for above declaration, you can define the same as a character field as below:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Change to:&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&amp;gt;constants: c_tab type C value cl_abap_char_utilities=&amp;gt;horizontal_tab.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Now you can use the same. Value of both definitions is same.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Eswar&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 19 Feb 2008 00:53:58 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/syntax-check-error/m-p/3419104#M821234</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-02-19T00:53:58Z</dc:date>
    </item>
  </channel>
</rss>

