<?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 in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/unicode/m-p/1086826#M99632</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;If you are on 4.7 or higher, try transaction UCCHECK. The unicode explanations are more detailed then the editor does.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 24 Oct 2005 10:44:55 GMT</pubDate>
    <dc:creator>rainer_hbenthal</dc:creator>
    <dc:date>2005-10-24T10:44:55Z</dc:date>
    <item>
      <title>Unicode</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/unicode/m-p/1086820#M99626</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;  I got a problem with unicode check...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Following is the snippet of the code..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DATA: OEFLT(1) TYPE X VALUE 'CE',ASBEN(30) TYPE C.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;REPLACE OEFLT WITH 'ö' INTO ASBEN.----&amp;gt; Unicode error...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;How do I do this..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thx in advance,,&lt;/P&gt;&lt;P&gt;Sri.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 24 Oct 2005 08:56:11 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/unicode/m-p/1086820#M99626</guid>
      <dc:creator>Srisap</dc:creator>
      <dc:date>2005-10-24T08:56:11Z</dc:date>
    </item>
    <item>
      <title>Re: Unicode</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/unicode/m-p/1086821#M99627</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Sri,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The error is very clearly described during syntax check -  &lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;"OEFLT" must be a character-type data object (data type C, N, D, T, or STRING)&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The variable you have declared is of type X, and hence the error.&lt;/P&gt;&lt;P&gt;I am not sure of what you are trying to do with the REPLACE statement, though.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Sudha&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Message was edited by: Sudha Mohan&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 24 Oct 2005 09:17:10 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/unicode/m-p/1086821#M99627</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2005-10-24T09:17:10Z</dc:date>
    </item>
    <item>
      <title>Re: Unicode</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/unicode/m-p/1086822#M99628</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Sridhar,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;   The resolution of your problem would be declaring a constant of type abap utilities class static variable which corresponds to the hexadecimal value 'CE' and use it in the place of PFELT.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Ravi Kanth Talagana&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 24 Oct 2005 09:22:47 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/unicode/m-p/1086822#M99628</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2005-10-24T09:22:47Z</dc:date>
    </item>
    <item>
      <title>Re: Unicode</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/unicode/m-p/1086823#M99629</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;does this serve your purpose....&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DATA: oeflt(1) TYPE x VALUE 'CE',asben(30) TYPE x.&lt;/P&gt;&lt;P&gt;data test(1) type x value 'ö'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;REPLACE oeflt WITH test INTO asben IN BYTE MODE.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;rgds,&lt;/P&gt;&lt;P&gt;PJ&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 24 Oct 2005 09:22:52 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/unicode/m-p/1086823#M99629</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2005-10-24T09:22:52Z</dc:date>
    </item>
    <item>
      <title>Re: Unicode</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/unicode/m-p/1086824#M99630</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;  Currently I m on an upgrade project. So the programs which I m going thru are not mine, and basically I don't know what the program is meant for....&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Doing a unicode check gave me this error message and what will be the output of the above statement even i m not sure....&lt;/P&gt;&lt;P&gt;Is th hexadecimal value of 'ö' = 00?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Anywaz thx for all the help...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Anymore suggestion are welcomed..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Sri.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 24 Oct 2005 10:43:30 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/unicode/m-p/1086824#M99630</guid>
      <dc:creator>Srisap</dc:creator>
      <dc:date>2005-10-24T10:43:30Z</dc:date>
    </item>
    <item>
      <title>Re: Unicode</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/unicode/m-p/1086825#M99631</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Sridhar,&lt;/P&gt;&lt;P&gt;   Use the function module NLS_STRING_CONVERT_TO_SYS for all conversions of Hexadecimal values.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This code will give you an idea of how do we go about , when we get these type of errors.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;REPORT  ZV1_TEST19                              .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DATA: CR TYPE X VALUE '0D',&lt;/P&gt;&lt;P&gt;      LF TYPE X VALUE '0A',&lt;/P&gt;&lt;P&gt;      tab type x value '09'.&lt;/P&gt;&lt;P&gt;data:v_info(12) type c value  '121#232 33'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;data: v_sep type x value '7C',&lt;/P&gt;&lt;P&gt;      v_xstr type xstring,&lt;/P&gt;&lt;P&gt;      v_ch type string,&lt;/P&gt;&lt;P&gt;      v_ch1 type c.&lt;/P&gt;&lt;P&gt;class cl_abap_char_utilities definition load.&lt;/P&gt;&lt;P&gt;constants:v_crlf(2) type c  value cl_abap_char_utilities=&amp;gt;cr_lf.&lt;/P&gt;&lt;P&gt;data:v_cr type c,&lt;/P&gt;&lt;P&gt;     v_lf type c.&lt;/P&gt;&lt;P&gt;v_cr = v_crlf+0(1).&lt;/P&gt;&lt;P&gt;v_lf = v_crlf+1(1).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;write:/ v_cr,v_lf.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;v_xstr = v_sep.&lt;/P&gt;&lt;P&gt;call function 'NLS_STRING_CONVERT_TO_SYS'&lt;/P&gt;&lt;P&gt;  exporting&lt;/P&gt;&lt;P&gt;    lang_used                   = sy-langu&lt;/P&gt;&lt;P&gt;    source                      = v_xstr&lt;/P&gt;&lt;P&gt; IMPORTING&lt;/P&gt;&lt;P&gt;   RESULT                      = v_ch&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;  SUBSTED                     =&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt; EXCEPTIONS&lt;/P&gt;&lt;P&gt;   ILLEGAL_SYST_CODEPAGE       = 1&lt;/P&gt;&lt;P&gt;   NO_FE_CODEPAGE_FOUND        = 2&lt;/P&gt;&lt;P&gt;   COULD_NOT_CONVERT           = 3&lt;/P&gt;&lt;P&gt;   OTHERS                      = 4.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;v_ch1 = v_ch.&lt;/P&gt;&lt;P&gt;write:/ cr,&lt;/P&gt;&lt;P&gt;        lf,&lt;/P&gt;&lt;P&gt;        tab.&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Ravi&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 24 Oct 2005 10:44:28 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/unicode/m-p/1086825#M99631</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2005-10-24T10:44:28Z</dc:date>
    </item>
    <item>
      <title>Re: Unicode</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/unicode/m-p/1086826#M99632</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;If you are on 4.7 or higher, try transaction UCCHECK. The unicode explanations are more detailed then the editor does.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 24 Oct 2005 10:44:55 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/unicode/m-p/1086826#M99632</guid>
      <dc:creator>rainer_hbenthal</dc:creator>
      <dc:date>2005-10-24T10:44:55Z</dc:date>
    </item>
    <item>
      <title>Re: Unicode</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/unicode/m-p/1086827#M99633</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Can you give me an example of the class u have mentioned..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Sri.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 24 Oct 2005 10:46:09 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/unicode/m-p/1086827#M99633</guid>
      <dc:creator>Srisap</dc:creator>
      <dc:date>2005-10-24T10:46:09Z</dc:date>
    </item>
    <item>
      <title>Re: Unicode</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/unicode/m-p/1086828#M99634</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thx a lot ravi&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Sri&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 24 Oct 2005 10:52:30 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/unicode/m-p/1086828#M99634</guid>
      <dc:creator>Srisap</dc:creator>
      <dc:date>2005-10-24T10:52:30Z</dc:date>
    </item>
    <item>
      <title>Re: Unicode</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/unicode/m-p/1086829#M99635</link>
      <description>&lt;P&gt;Hello, I used the NLS_STRING_CONVERT_TO_SYS function module, but it always returns the same hex value '23002300' -&amp;gt; ##.&lt;/P&gt;&lt;P&gt;The input value is 0900 and 0A00. you know why ? thanks for your help.&lt;/P&gt;&lt;P&gt;The value I expect is # -&amp;gt; 0900 and # -&amp;gt; 0A00&lt;/P&gt;</description>
      <pubDate>Mon, 20 Dec 2021 19:05:59 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/unicode/m-p/1086829#M99635</guid>
      <dc:creator>former_member739189</dc:creator>
      <dc:date>2021-12-20T19:05:59Z</dc:date>
    </item>
  </channel>
</rss>

