<?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: not unicode convertible in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/not-unicode-convertible/m-p/2328848#M512157</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;The structures do NOT have to be the same for a CORRESPONDING FIELDS.  This works in a test program I have:  &lt;/P&gt;&lt;P&gt;==================&lt;/P&gt;&lt;P&gt;DATA: itab  TYPE STANDARD TABLE OF istruct.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SELECT *&lt;/P&gt;&lt;P&gt;  FROM ztab&lt;/P&gt;&lt;P&gt;  INTO CORRESPONDING FIELDS OF TABLE itab&lt;/P&gt;&lt;P&gt;  WHERE vkorg = 'XYZ'&lt;/P&gt;&lt;P&gt;    AND zyear = '2007'&lt;/P&gt;&lt;P&gt;    AND werks = '00A'.&lt;/P&gt;&lt;P&gt;===================&lt;/P&gt;&lt;P&gt;where "istruct" is the same as the DB table definition but with two additional columns and without MANDT.  &lt;/P&gt;&lt;P&gt;However, in another program I get the "not Unicode compatible" error when I try to activate it.  &lt;/P&gt;&lt;P&gt;Why does it work in one case and not the other?  Is it some program setting?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 09 Dec 2010 16:33:18 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2010-12-09T16:33:18Z</dc:date>
    <item>
      <title>not unicode convertible</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/not-unicode-convertible/m-p/2328845#M512154</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;INSERT ZBALTAB FROM TABLE ITAB_HYP.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I get an error for the above line.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ITAB_HYP are not unicode convertible.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regards&lt;/P&gt;&lt;P&gt;Bala&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 31 May 2007 11:10:39 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/not-unicode-convertible/m-p/2328845#M512154</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-05-31T11:10:39Z</dc:date>
    </item>
    <item>
      <title>Re: not unicode convertible</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/not-unicode-convertible/m-p/2328846#M512155</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;Maintain the same structure for the internal table as the db table.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 31 May 2007 11:15:58 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/not-unicode-convertible/m-p/2328846#M512155</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-05-31T11:15:58Z</dc:date>
    </item>
    <item>
      <title>Re: not unicode convertible</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/not-unicode-convertible/m-p/2328847#M512156</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;       this error comes only when the format/structure of ZBALTB and ITAB_HYP is diffrent..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;both table's sturucture should be same....  solution is to define YTAB_HYP same as ZBALTAB... like &lt;/P&gt;&lt;P&gt;data : YTAB_HYP like ZBALTAB occurs 0.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regards,&lt;/P&gt;&lt;P&gt;shardul shah&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 31 May 2007 11:16:31 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/not-unicode-convertible/m-p/2328847#M512156</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-05-31T11:16:31Z</dc:date>
    </item>
    <item>
      <title>Re: not unicode convertible</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/not-unicode-convertible/m-p/2328848#M512157</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;The structures do NOT have to be the same for a CORRESPONDING FIELDS.  This works in a test program I have:  &lt;/P&gt;&lt;P&gt;==================&lt;/P&gt;&lt;P&gt;DATA: itab  TYPE STANDARD TABLE OF istruct.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SELECT *&lt;/P&gt;&lt;P&gt;  FROM ztab&lt;/P&gt;&lt;P&gt;  INTO CORRESPONDING FIELDS OF TABLE itab&lt;/P&gt;&lt;P&gt;  WHERE vkorg = 'XYZ'&lt;/P&gt;&lt;P&gt;    AND zyear = '2007'&lt;/P&gt;&lt;P&gt;    AND werks = '00A'.&lt;/P&gt;&lt;P&gt;===================&lt;/P&gt;&lt;P&gt;where "istruct" is the same as the DB table definition but with two additional columns and without MANDT.  &lt;/P&gt;&lt;P&gt;However, in another program I get the "not Unicode compatible" error when I try to activate it.  &lt;/P&gt;&lt;P&gt;Why does it work in one case and not the other?  Is it some program setting?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 09 Dec 2010 16:33:18 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/not-unicode-convertible/m-p/2328848#M512157</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-12-09T16:33:18Z</dc:date>
    </item>
  </channel>
</rss>

