<?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, Split Variable at HEX 00 into ITAB in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/unicode-error-split-variable-at-hex-00-into-itab/m-p/1719869#M314268</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;try this:&lt;/P&gt;&lt;P&gt;data hex type x value '00'.                 &lt;/P&gt;&lt;P&gt;field-symbols: &amp;lt;hex&amp;gt; type x,&amp;lt;char&amp;gt; type c.  &lt;/P&gt;&lt;P&gt;data: begin of i_apqd occurs 0.             &lt;/P&gt;&lt;P&gt;include structure apqd.                     &lt;/P&gt;&lt;P&gt;data: end of i_apqd.                        &lt;/P&gt;&lt;P&gt;data: begin of itab occurs 0,               &lt;/P&gt;&lt;P&gt;field(150),                                 &lt;/P&gt;&lt;P&gt;end of itab.                                &lt;/P&gt;&lt;P&gt;assign hex to &amp;lt;hex&amp;gt;. &lt;/P&gt;&lt;P&gt;assign &amp;lt;hex&amp;gt; to &amp;lt;char&amp;gt; casting.&lt;/P&gt;&lt;P&gt;split i_apqd-vardata+20 at &amp;lt;char&amp;gt; into table itab.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 07 Nov 2006 23:35:53 GMT</pubDate>
    <dc:creator>former_member186741</dc:creator>
    <dc:date>2006-11-07T23:35:53Z</dc:date>
    <item>
      <title>Unicode error, Split Variable at HEX 00 into ITAB</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/unicode-error-split-variable-at-hex-00-into-itab/m-p/1719868#M314267</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello all,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;We will be changing our system to a Unicode system next year.  As we are modifying existing programs, we are setting the Unicode flag and correcting any errors.  In this one particular program I have run across a situation  for which I have not been able to find a solution.  Any thoughts would be greatly appreciated.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This error occurs when the following code is checked.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;HEX must be a character-type data object&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;data hex type x.    "Binary zeros&lt;/P&gt;&lt;P&gt;data: begin of i_apqd occurs 0.&lt;/P&gt;&lt;P&gt;        include structure apqd.&lt;/P&gt;&lt;P&gt;data: end of i_apqd.&lt;/P&gt;&lt;P&gt;data: begin of itab occurs 0,&lt;/P&gt;&lt;P&gt;        field(150),&lt;/P&gt;&lt;P&gt;      end of itab.&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;split i_apqd-vardata+20 at hex into table itab. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This is what i_apqd-vardata+20 looks like in the debugger.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;##SAPMF05A0100##BKPF-BLDAT#11072006#BKPF-BLART#KR#BKPF-BUKRS#100#BKPF-budat#11072006&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This program is a custom developed utility program to display the contents of a BDC session.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;P&gt;Bruce&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 07 Nov 2006 20:33:36 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/unicode-error-split-variable-at-hex-00-into-itab/m-p/1719868#M314267</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-11-07T20:33:36Z</dc:date>
    </item>
    <item>
      <title>Re: Unicode error, Split Variable at HEX 00 into ITAB</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/unicode-error-split-variable-at-hex-00-into-itab/m-p/1719869#M314268</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;try this:&lt;/P&gt;&lt;P&gt;data hex type x value '00'.                 &lt;/P&gt;&lt;P&gt;field-symbols: &amp;lt;hex&amp;gt; type x,&amp;lt;char&amp;gt; type c.  &lt;/P&gt;&lt;P&gt;data: begin of i_apqd occurs 0.             &lt;/P&gt;&lt;P&gt;include structure apqd.                     &lt;/P&gt;&lt;P&gt;data: end of i_apqd.                        &lt;/P&gt;&lt;P&gt;data: begin of itab occurs 0,               &lt;/P&gt;&lt;P&gt;field(150),                                 &lt;/P&gt;&lt;P&gt;end of itab.                                &lt;/P&gt;&lt;P&gt;assign hex to &amp;lt;hex&amp;gt;. &lt;/P&gt;&lt;P&gt;assign &amp;lt;hex&amp;gt; to &amp;lt;char&amp;gt; casting.&lt;/P&gt;&lt;P&gt;split i_apqd-vardata+20 at &amp;lt;char&amp;gt; into table itab.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 07 Nov 2006 23:35:53 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/unicode-error-split-variable-at-hex-00-into-itab/m-p/1719869#M314268</guid>
      <dc:creator>former_member186741</dc:creator>
      <dc:date>2006-11-07T23:35:53Z</dc:date>
    </item>
    <item>
      <title>Re: Unicode error, Split Variable at HEX 00 into ITAB</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/unicode-error-split-variable-at-hex-00-into-itab/m-p/1719870#M314269</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks Neil,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Your code example worked beautifully.  &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Bruce&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 08 Nov 2006 00:19:53 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/unicode-error-split-variable-at-hex-00-into-itab/m-p/1719870#M314269</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-11-08T00:19:53Z</dc:date>
    </item>
  </channel>
</rss>

