<?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/7681028#M1576005</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I got this FM 'HR_KR_XSTRING_TO_STRING' . Is this the right one? what are the input and output parameters I need to pass in this?  I tried as below, its going to dump.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;data: i_citilogo(25) type c occurs 0 with header line.&lt;/P&gt;&lt;P&gt;CALL FUNCTION 'HR_KR_XSTRING_TO_STRING'&lt;/P&gt;&lt;P&gt;  EXPORTING&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;  FROM_CODEPAGE       = '8500'&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;    in_xstring          = i_citilogo&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;  OUT_LEN             =&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt; IMPORTING&lt;/P&gt;&lt;P&gt;   OUT_STRING          = i_citilogo&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;           Please suggest.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks &amp;amp; Regards,&lt;/P&gt;&lt;P&gt;Tanuja.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 07 Feb 2011 12:56:28 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2011-02-07T12:56:28Z</dc:date>
    <item>
      <title>unicode error</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/unicode-error/m-p/7681025#M1576002</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi All,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;    We have upgraded our system from 4.7C to ECC 6. As a part of unicode conversion I made some changes to the program.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In 4.7C:&lt;/P&gt;&lt;P&gt; data: i_citilogo(25) type x occurs 0 with header line.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;i_citilogo =  '4749463839618F002800F7C000B7000200005543488600095C'.&lt;/P&gt;&lt;P&gt;append i_citilogo.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The unicode error is "The length of "I_CITILOGO" in bytes must be a multiple of the size of a Unicode character, regardless of the size of the Unicode character."&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In ECC6: I made changes as,  data: i_citilogo(52) type c occurs 0 with header line.&lt;/P&gt;&lt;P&gt;and in attributes, made unicode check active.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;      Now the transaction is working fine, but am not getting the background pictures,logos and terms and conditions on the output screen. where all I changed the type X to C, it is not working. &lt;/P&gt;&lt;P&gt;          If I make the unicode active uncheck, its showing syntax error that the program is not unicode compatible.&lt;/P&gt;&lt;P&gt;&amp;lt;priority reduced by moderator&amp;gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;     Please somebody help me with this.&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;Tanuja.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&lt;SPAN __default_attr="red" __jive_macro_name="color"&gt;Moderator message: please use more descriptive subject lines for your posts.&lt;/SPAN&gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Edited by: Thomas Zloch on Feb 7, 2011 1:28 PM&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 07 Feb 2011 12:13:28 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/unicode-error/m-p/7681025#M1576002</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2011-02-07T12:13:28Z</dc:date>
    </item>
    <item>
      <title>Re: unicode error</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/unicode-error/m-p/7681026#M1576003</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;converting type x to c will not solve the problem &lt;/P&gt;&lt;P&gt;data: i_citilogo(25) type x &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;data: i_citilogo(25) type c &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;you need to use Fm which takes the input as Xstring and then convert it to Type String . &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;HR&lt;STRONG&gt;CONVERT&lt;/STRONG&gt;XSTRING&lt;STRONG&gt;STRING&lt;/STRONG&gt; &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Use this FM to serve your purpose&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;br, &lt;/P&gt;&lt;P&gt;VJ.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 07 Feb 2011 12:25:22 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/unicode-error/m-p/7681026#M1576003</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2011-02-07T12:25:22Z</dc:date>
    </item>
    <item>
      <title>Re: unicode error</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/unicode-error/m-p/7681027#M1576004</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;Please check the Below link.&lt;/P&gt;&lt;P&gt;Before Posting please check in SCN or in google.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A class="jive_macro jive_macro_thread" href="https://community.sap.com/" __jive_macro_name="thread" modifiedtitle="true" __default_attr="1509290"&gt;&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;With Regards,&lt;/P&gt;&lt;P&gt;Sumodh.P&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 07 Feb 2011 12:55:55 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/unicode-error/m-p/7681027#M1576004</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2011-02-07T12:55:55Z</dc:date>
    </item>
    <item>
      <title>Re: unicode error</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/unicode-error/m-p/7681028#M1576005</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I got this FM 'HR_KR_XSTRING_TO_STRING' . Is this the right one? what are the input and output parameters I need to pass in this?  I tried as below, its going to dump.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;data: i_citilogo(25) type c occurs 0 with header line.&lt;/P&gt;&lt;P&gt;CALL FUNCTION 'HR_KR_XSTRING_TO_STRING'&lt;/P&gt;&lt;P&gt;  EXPORTING&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;  FROM_CODEPAGE       = '8500'&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;    in_xstring          = i_citilogo&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;  OUT_LEN             =&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt; IMPORTING&lt;/P&gt;&lt;P&gt;   OUT_STRING          = i_citilogo&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;           Please suggest.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks &amp;amp; Regards,&lt;/P&gt;&lt;P&gt;Tanuja.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 07 Feb 2011 12:56:28 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/unicode-error/m-p/7681028#M1576005</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2011-02-07T12:56:28Z</dc:date>
    </item>
  </channel>
</rss>

