<?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: Unicode error in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/unicode-error/m-p/5666916#M1288730</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;Is this part of some standard code or custom code? Plz share your code which will be more helpful to analyse the problem.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;BR,&lt;/P&gt;&lt;P&gt;Suhas&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 25 May 2009 07:44:13 GMT</pubDate>
    <dc:creator>SuhaSaha</dc:creator>
    <dc:date>2009-05-25T07:44:13Z</dc:date>
    <item>
      <title>Unicode error</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/unicode-error/m-p/5666909#M1288723</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;I am getting  error - 'The key of internal table "SYS_TABL" contains components of type "X" or&lt;/P&gt;&lt;P&gt;    "XSTRING". The "READ TABLE SYS_TABL" statement is not permitted '  &lt;/P&gt;&lt;P&gt;for the following read statment&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;READ TABLE SYS_TABL.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The internal table SYS_TABL defined  as-&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DATA: BEGIN OF SYS_TABL OCCURS 50.&lt;/P&gt;&lt;P&gt;       INCLUDE STRUCTURE MSXXLIST.&lt;/P&gt;&lt;P&gt;DATA: END OF SYS_TABL.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The structure MSXXLIST contains fields with hexadecimal .&lt;/P&gt;&lt;P&gt;How can I solve this problem ?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 24 May 2009 06:24:17 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/unicode-error/m-p/5666909#M1288723</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-05-24T06:24:17Z</dc:date>
    </item>
    <item>
      <title>Re: Unicode error</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/unicode-error/m-p/5666910#M1288724</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;try moving the data to workarea after read.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;data : wa_sys_tabl like sys_tabl.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;read table  sys_tabl into wa_sys_tabl index 1.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Atul&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 24 May 2009 06:30:54 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/unicode-error/m-p/5666910#M1288724</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-05-24T06:30:54Z</dc:date>
    </item>
    <item>
      <title>Re: Unicode error</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/unicode-error/m-p/5666911#M1288725</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Atul ,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;My read statment itself is failing, so moving it to work areay is not the right solution.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 24 May 2009 06:56:56 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/unicode-error/m-p/5666911#M1288725</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-05-24T06:56:56Z</dc:date>
    </item>
    <item>
      <title>Re: Unicode error</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/unicode-error/m-p/5666912#M1288726</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;Try using the method CONVERT of the class CL_ABAP_CONV_IN_CE.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This method converts the data of type X or Xstring to character type data object.&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;Edited by: Archna Raja on May 25, 2009 8:30 AM&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 25 May 2009 06:30:18 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/unicode-error/m-p/5666912#M1288726</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-05-25T06:30:18Z</dc:date>
    </item>
    <item>
      <title>Re: Unicode error</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/unicode-error/m-p/5666913#M1288727</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;The READ TABLE syntax is not complete.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If you want to read the first entry of the table use:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;READ TABLE &lt;EM&gt;table&lt;/EM&gt; INDEX 1.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;or &lt;/P&gt;&lt;P&gt;If you want to read table based on some value then try the syntax:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;READ TABLE &lt;EM&gt;table&lt;/EM&gt; WITH KEY &lt;EM&gt;host&lt;/EM&gt; = '.....'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The syntax "READ TABLE &lt;EM&gt;table&lt;/EM&gt;." is not complete and so you are getting error when activating the code.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;George&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 25 May 2009 06:53:24 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/unicode-error/m-p/5666913#M1288727</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-05-25T06:53:24Z</dc:date>
    </item>
    <item>
      <title>Re: Unicode error</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/unicode-error/m-p/5666914#M1288728</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hai , &lt;/P&gt;&lt;P&gt;u have used the data type xstring in strucuture MSXXLIST ,&lt;/P&gt;&lt;P&gt;so just change it to type string and it might solve ur problem&lt;/P&gt;&lt;P&gt;afzal&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 25 May 2009 06:56:41 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/unicode-error/m-p/5666914#M1288728</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-05-25T06:56:41Z</dc:date>
    </item>
    <item>
      <title>Re: Unicode error</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/unicode-error/m-p/5666915#M1288729</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;break up the declaration, that is redeclare the internal table manually without referring to the structure directly, but by using all the fields of the structure one by one.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Then when you encounter the filed that has the Hexa decimal part, use the class CL_ABAP_CHAR_UTILITIES. Go through the documentation of this once.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;CONSTANTS: lc_tab TYPE x VALUE '09',  " Tab delimiter&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;  CONSTANTS: lc_tab TYPE c VALUE CL_ABAP_CHAR_UTILITIES=&amp;gt;HORIZONTAL_TAB,&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 25 May 2009 07:09:18 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/unicode-error/m-p/5666915#M1288729</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-05-25T07:09:18Z</dc:date>
    </item>
    <item>
      <title>Re: Unicode error</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/unicode-error/m-p/5666916#M1288730</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;Is this part of some standard code or custom code? Plz share your code which will be more helpful to analyse the problem.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;BR,&lt;/P&gt;&lt;P&gt;Suhas&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 25 May 2009 07:44:13 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/unicode-error/m-p/5666916#M1288730</guid>
      <dc:creator>SuhaSaha</dc:creator>
      <dc:date>2009-05-25T07:44:13Z</dc:date>
    </item>
  </channel>
</rss>

