<?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 Native SQL with Unicode in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/error-native-sql-with-unicode/m-p/7252146#M1527754</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Well, it doesn't really look like a unicode problem.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Have you verified by debugging that wa_unicode-desint actuall holds the correct value?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Rob&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 24 Sep 2010 16:01:42 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2010-09-24T16:01:42Z</dc:date>
    <item>
      <title>Error Native SQL with Unicode</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/error-native-sql-with-unicode/m-p/7252145#M1527753</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi people,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have problem with upgrade ECC 5.0 (non-unicode) to ECC 6.0 (Unicode). The following command is not working in ECC 6.0 :&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  DATA: BEGIN OF wa_unicode,&lt;/P&gt;&lt;P&gt;    codlot(6)   type i,&lt;/P&gt;&lt;P&gt;    codsis(2)   type c,&lt;/P&gt;&lt;P&gt;    datger(4)   type c,&lt;/P&gt;&lt;P&gt;    desint(40)  type c,&lt;/P&gt;&lt;P&gt;    desref(50)  type c,&lt;/P&gt;&lt;P&gt;    usuger(15)  type c,&lt;/P&gt;&lt;P&gt;    usupro(6)   type c,&lt;/P&gt;&lt;P&gt;    datpro(4)   type c,&lt;/P&gt;&lt;P&gt;    horpro(3)   type c,&lt;/P&gt;&lt;P&gt;    stalot(1)   type c,&lt;/P&gt;&lt;P&gt;  END OF wa_unicode. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;********&lt;/P&gt;&lt;P&gt;     EXEC SQL.&lt;/P&gt;&lt;P&gt;        INSERT INTO R800ILT (CODSIS, CODLOT, DATGER, DESINT, DESREF, USUGER, USUPRO, DATPRO, STALOT)&lt;/P&gt;&lt;P&gt;        VALUES&lt;/P&gt;&lt;P&gt;         ('RON',&lt;/P&gt;&lt;P&gt;         :wa_unicode-codlot,&lt;/P&gt;&lt;P&gt;         :wa_unicode-datger,&lt;/P&gt;&lt;P&gt;         :wa_unicode-desint,&lt;/P&gt;&lt;P&gt;         :wa_unicode-desref,&lt;/P&gt;&lt;P&gt;         :wa_unicode-usuger,&lt;/P&gt;&lt;P&gt;         :wa_unicode-usupro,&lt;/P&gt;&lt;P&gt;         :wa_unicode-datpro, 1)&lt;/P&gt;&lt;P&gt;      ENDEXEC.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The value of field wa_unicode-desint is 'INTERFACE SAP HR X RONDA ACESSO', but when save in Oracle the value is 'INTERFACE SAP HR', don't save the value completely. The structure table of Oracle is the same of  wa_unicode.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;But, I insert the value is work&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;        INSERT INTO R800ILT (CODSIS, CODLOT, DATGER, DESINT, DESREF, USUGER, USUPRO, DATPRO, STALOT)&lt;/P&gt;&lt;P&gt;        VALUES&lt;/P&gt;&lt;P&gt;         ('RON',&lt;/P&gt;&lt;P&gt;         :wa_unicode-codlot,&lt;/P&gt;&lt;P&gt;         :wa_unicode-datger,&lt;/P&gt;&lt;P&gt;        'INTERFACE SAP HR X RONDA ACESSO'&lt;/P&gt;&lt;P&gt;         :wa_unicode-desref,&lt;/P&gt;&lt;P&gt;         :wa_unicode-usuger,&lt;/P&gt;&lt;P&gt;         :wa_unicode-usupro,&lt;/P&gt;&lt;P&gt;         :wa_unicode-datpro, 1)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Do you know about this problem? &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 24 Sep 2010 15:18:40 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/error-native-sql-with-unicode/m-p/7252145#M1527753</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-09-24T15:18:40Z</dc:date>
    </item>
    <item>
      <title>Re: Error Native SQL with Unicode</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/error-native-sql-with-unicode/m-p/7252146#M1527754</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Well, it doesn't really look like a unicode problem.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Have you verified by debugging that wa_unicode-desint actuall holds the correct value?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Rob&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 24 Sep 2010 16:01:42 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/error-native-sql-with-unicode/m-p/7252146#M1527754</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-09-24T16:01:42Z</dc:date>
    </item>
    <item>
      <title>Re: Error Native SQL with Unicode</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/error-native-sql-with-unicode/m-p/7252147#M1527755</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Rob, By debugging that wa_unicode-desint is with value correct, but in the table of the Oracle only is save one part value.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The strange thing is that the Internal Table SAP e database Oracle have the same structure.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 27 Sep 2010 13:28:43 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/error-native-sql-with-unicode/m-p/7252147#M1527755</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-09-27T13:28:43Z</dc:date>
    </item>
  </channel>
</rss>

