<?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 Check error for type-incompatible.... in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/unicode-check-error-for-type-incompatible/m-p/3112419#M738953</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi try givin complete offset.for ex:BHDGI-T1+0(70).You have to mention complete offset in Unicode systems&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Sat, 17 Nov 2007 05:55:03 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2007-11-17T05:55:03Z</dc:date>
    <item>
      <title>Unicode Check error for type-incompatible....</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/unicode-check-error-for-type-incompatible/m-p/3112418#M738952</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 for unicode check for below statement...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;   &lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt; DO VARYING BHDGI-HF FROM BHDGI-T1+0 NEXT BHDGI-T1+1.
      IF BHDGI-HF &amp;lt;&amp;gt; SPACE OR BHDGI-INDEX GE 70.
        EXIT.
      ENDIF.
      BHDGI-INDEX = SY-INDEX.
    ENDDO.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The  Error is &amp;lt;b&amp;gt;"BHDGI-T1" and "BHDGI-HF" are type-incompatible.&amp;lt;/b&amp;gt; .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The data type of "BHDGI-T1" is...&lt;/P&gt;&lt;P&gt;data :       BHDGI-T1(70)    TYPE C.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The data type of  "BHDGI-HF" is....&lt;/P&gt;&lt;P&gt;DATA: BHDGI-HF(1)     TYPE C.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If we try to remove a Unicode check of the program, no error is getting.&lt;/P&gt;&lt;P&gt;If we try to put the check again then we are getting above error.....&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In fact we are upgrading our system from 4.7 to ECC 6.0. So we need to put a Unicode check before upgrading a system, that we can reduce the technical issues after upgrade of the system.....&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have tried with number of options of changing the type of above variables, but not getting way to come out of it....&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Any other option or any replacement of the above code. or suggetions....&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Kindly advice above issue..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks in advance....&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Cheers,&lt;/P&gt;&lt;P&gt;Sagun Desai.......&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 17 Nov 2007 05:52:06 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/unicode-check-error-for-type-incompatible/m-p/3112418#M738952</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-11-17T05:52:06Z</dc:date>
    </item>
    <item>
      <title>Re: Unicode Check error for type-incompatible....</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/unicode-check-error-for-type-incompatible/m-p/3112419#M738953</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi try givin complete offset.for ex:BHDGI-T1+0(70).You have to mention complete offset in Unicode systems&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 17 Nov 2007 05:55:03 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/unicode-check-error-for-type-incompatible/m-p/3112419#M738953</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-11-17T05:55:03Z</dc:date>
    </item>
    <item>
      <title>Re: Unicode Check error for type-incompatible....</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/unicode-check-error-for-type-incompatible/m-p/3112420#M738954</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;ABAP and Unicode &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;From Release 6.10, ABAP supports multi-byte coding for characters in Unicode. Prior to Release 6.10, ABAP used only character sets that were based on single-byte codes &amp;#150; such as ASCII and EBCDIC &amp;#150; or double-byte codes, such as SJIS and BIG5. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This switch to Unicode affects all statements where an explicit or implicit assumption is made about the internal length of a character. If you use these statements in a program that is designed to exploit the Unicode capabilities of the runtime environment, they must be checked and changed if necessary. Once a Unicode-enabled program has been changed accordingly, it behaves in the same way in both Unicode and non-Unicode systems. You can develop programs in a non-Unicode system (NUS) and then import them into a Unicode system (US). The following sections describe the conversions that are necessary:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ref&amp;lt;b&amp;gt;er this link you will find much info&amp;lt;/b&amp;gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="http://help.sap.com/saphelp_erp2004/helpdata/en/ce/b518b6513611d194a50000e8353423/frameset.htm" target="test_blank"&gt;http://help.sap.com/saphelp_erp2004/helpdata/en/ce/b518b6513611d194a50000e8353423/frameset.htm&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;lt;b&amp;gt;examples&amp;lt;/b&amp;gt;&lt;/P&gt;&lt;P&gt;&lt;A href="http://help.sap.com/saphelp_erp2004/helpdata/en/ce/b518b6513611d194a50000e8353423/frameset.htm" target="test_blank"&gt;http://help.sap.com/saphelp_erp2004/helpdata/en/ce/b518b6513611d194a50000e8353423/frameset.htm&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;lt;b&amp;gt;reward if usefull&amp;lt;/b&amp;gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 17 Nov 2007 05:59:07 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/unicode-check-error-for-type-incompatible/m-p/3112420#M738954</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-11-17T05:59:07Z</dc:date>
    </item>
    <item>
      <title>Re: Unicode Check error for type-incompatible....</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/unicode-check-error-for-type-incompatible/m-p/3112421#M738955</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;PRE&gt;&lt;CODE&gt;
DO VARYING BHDGI-HF FROM BHDGI-T1+0(1) NEXT BHDGI-T1+1(1).
      IF BHDGI-HF &amp;lt;&amp;gt; SPACE OR BHDGI-INDEX GE 70.
        EXIT.
      ENDIF.
      BHDGI-INDEX = SY-INDEX.
    ENDDO.

&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;it may wok&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regards&lt;/P&gt;&lt;P&gt;shiba dutta&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 17 Nov 2007 06:25:42 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/unicode-check-error-for-type-incompatible/m-p/3112421#M738955</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-11-17T06:25:42Z</dc:date>
    </item>
    <item>
      <title>Re: Unicode Check error for type-incompatible....</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/unicode-check-error-for-type-incompatible/m-p/3112422#M738956</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P style="margin-bottom: .0001pt;"&gt;&lt;SPAN lang="EN-US" style="font-size: 10pt; font-family: Arial, sans-serif;"&gt;Hi,&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;&lt;SPAN lang="EN-US" style="font-size: 10pt; font-family: Arial, sans-serif;"&gt;I have the same probleme as &lt;/SPAN&gt;&lt;/EM&gt;&lt;STRONG style="margin: -9px 0 0; font-size: 11px; background-color: #ffffff; color: #333333; text-align: right;"&gt;&lt;EM&gt;&lt;SPAN style="text-decoration: underline;"&gt;&lt;SPAN lang="EN-US" style="font-size: 10.0pt; font-family: 'Arial','sans-serif'; color: #3778c7; background: white;"&gt;sagun desai&lt;/SPAN&gt;&lt;/SPAN&gt; &lt;SPAN lang="EN-US" style="font-size: 10.0pt; font-family: 'Arial','sans-serif'; color: #333333; background: white; font-weight: normal;"&gt;but with x Type and no c Type !&lt;/SPAN&gt;&lt;/EM&gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;P style="margin-bottom: .0001pt;"&gt;&lt;STRONG&gt;&lt;EM&gt;&lt;SPAN lang="EN-US" style="font-size: 10.0pt; font-family: 'Arial','sans-serif'; color: #333333; background: white; font-weight: normal;"&gt; &lt;/SPAN&gt;&lt;/EM&gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;P style="margin-bottom: .0001pt;"&gt;&lt;STRONG&gt;&lt;EM&gt;&lt;SPAN lang="EN-US" style="font-size: 10.0pt; font-family: 'Arial','sans-serif'; color: #333333; background: white; font-weight: normal;"&gt;Error is : "WT_FICOUT-Z_EE" and "STR " are type-incompatible&lt;/SPAN&gt;&lt;/EM&gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;P style="margin-bottom: .0001pt;"&gt;&lt;STRONG&gt;&lt;EM&gt;&lt;SPAN lang="EN-US" style="font-size: 10.0pt; font-family: 'Arial','sans-serif'; color: #333333; background: white; font-weight: normal;"&gt; &lt;/SPAN&gt;&lt;/EM&gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;P style="margin-bottom: .0001pt;"&gt;&lt;STRONG&gt;&lt;EM&gt;&lt;SPAN lang="EN-US" style="font-size: 10.0pt; font-family: 'Arial','sans-serif'; color: #333333; background: white; font-weight: normal;"&gt;My code is :&lt;/SPAN&gt;&lt;/EM&gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;P style="margin-bottom: .0001pt;"&gt;&lt;STRONG&gt;&lt;EM&gt;&lt;SPAN lang="EN-US" style="font-size: 10.0pt; font-family: 'Arial','sans-serif'; color: #333333; background: white; font-weight: normal;"&gt; &lt;/SPAN&gt;&lt;/EM&gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&lt;SPAN lang="EN-US" style="font-size: 10pt; font-family: Arial, sans-serif;"&gt;DO len TIMES VARYING str FROM wt_ficout-z_ee NEXT wt_ficout-z_ee+1.&lt;/SPAN&gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&lt;SPAN lang="EN-US" style="font-size: 10pt; font-family: Arial, sans-serif;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN lang="EN-US" style="font-size: 10.0pt; font-family: 'Arial','sans-serif';"&gt;Str is declared like this :&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN lang="EN-US" style="font-size: 10.0pt; font-family: 'Arial','sans-serif';"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN lang="EN-US" style="font-size: 10.0pt; font-family: 'Arial','sans-serif';"&gt;&amp;nbsp; &lt;EM&gt;DATA: BEGIN OF str,&lt;/EM&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;&lt;SPAN lang="EN-US" style="font-size: 10.0pt; font-family: 'Arial','sans-serif';"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; hex TYPE x,&lt;/SPAN&gt;&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;&lt;SPAN lang="EN-US" style="font-size: 10.0pt; font-family: 'Arial','sans-serif';"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; END OF str.&lt;/SPAN&gt;&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;&lt;SPAN lang="EN-US" style="font-size: 10.0pt; font-family: 'Arial','sans-serif';"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN lang="EN-US" style="font-size: 10.0pt; font-family: 'Arial','sans-serif';"&gt;And wt_ficout :&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN lang="EN-US" style="font-size: 10.0pt; font-family: 'Arial','sans-serif';"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN lang="EN-US" style="font-size: 10.0pt; font-family: 'Arial','sans-serif';"&gt;DATA : BEGIN OF wt_ficout OCCURS 5,&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN lang="EN-US" style="font-size: 10.0pt; font-family: 'Arial','sans-serif';"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; z_ee(80),&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN lang="EN-US" style="font-size: 10.0pt; font-family: 'Arial','sans-serif';"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; END OF wt_ficout.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN lang="EN-US" style="font-size: 10.0pt; font-family: 'Arial','sans-serif';"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN lang="EN-US" style="font-size: 10.0pt; font-family: 'Arial','sans-serif';"&gt;Thank you for your suggestion !&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 14 Aug 2013 15:27:00 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/unicode-check-error-for-type-incompatible/m-p/3112422#M738956</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2013-08-14T15:27:00Z</dc:date>
    </item>
    <item>
      <title>Re: Unicode Check error for type-incompatible....</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/unicode-check-error-for-type-incompatible/m-p/3112423#M738957</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;This code seems to be finding the first non-blank character in BHDGI-T1, putting it in BHDGI-HF and setting its index in BHDGI-INDEX.&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;I think you can achieve that by:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;* this puts the offset of the first non-blank in sy-fdpos&lt;BR /&gt;if BHDGI-T1 co&amp;nbsp; space. &lt;BR /&gt;endif.&amp;nbsp;&amp;nbsp; &lt;BR /&gt;* set index variable&lt;BR /&gt; BHDGI-index = sy-fdpos.&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;BR /&gt;* set BHDGI-HF value&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;BR /&gt; BHDGI-HF =&amp;nbsp; BHDGI-T1+BHDGI-index.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 16 Aug 2013 05:47:51 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/unicode-check-error-for-type-incompatible/m-p/3112423#M738957</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2013-08-16T05:47:51Z</dc:date>
    </item>
  </channel>
</rss>

