<?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: hexadecimal data type field in unicode system in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/hexadecimal-data-type-field-in-unicode-system/m-p/6546245#M1428871</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Deleted&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Edited by: Vikranth.Reddy on Dec 29, 2009 8:02 PM&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 29 Dec 2009 13:44:26 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2009-12-29T13:44:26Z</dc:date>
    <item>
      <title>hexadecimal data type field in unicode system</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/hexadecimal-data-type-field-in-unicode-system/m-p/6546241#M1428867</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;  I am doing unicode conversion for a program. I checked Unicode conversion active option in Attributes of my report and checked for compatibility in UCCHECK tcode. There is one field used in this report of data type X. So in UCCHECK , system shows only fields of type C,N,D,T should be used in unicode system. Please suggest which data type I can usein alternate to this hexadecimal type. What is the exact use of Hexadecimal data type fields in ABAP?&lt;/P&gt;&lt;P&gt;Thanks.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 29 Dec 2009 11:18:58 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/hexadecimal-data-type-field-in-unicode-system/m-p/6546241#M1428867</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-12-29T11:18:58Z</dc:date>
    </item>
    <item>
      <title>Re: hexadecimal data type field in unicode system</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/hexadecimal-data-type-field-in-unicode-system/m-p/6546242#M1428868</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;What does the hexadecimal value hold? Post how it is declared or check if any of CL_ABAP_CHAR_UTILLITIES methods will help.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Vikranth&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 29 Dec 2009 11:49:19 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/hexadecimal-data-type-field-in-unicode-system/m-p/6546242#M1428868</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-12-29T11:49:19Z</dc:date>
    </item>
    <item>
      <title>Re: hexadecimal data type field in unicode system</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/hexadecimal-data-type-field-in-unicode-system/m-p/6546243#M1428869</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Read first some documentation like [Character String Processing|http://help.sap.com/saphelp_nw2004s/helpdata/en/79/c554d9b3dc11d5993800508b6b8b11/frameset.htm], usually hexadecimal fields contain control characters (line feed, carriage return, tabulations and the like), so use constants of class [CL_ABAP_CHAR_UTILITIES|http://help.sap.com/abapdocu_70/en/ABENCL_ABAP_CHAR_UTILITIES.htm].&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Raymond&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 29 Dec 2009 11:56:57 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/hexadecimal-data-type-field-in-unicode-system/m-p/6546243#M1428869</guid>
      <dc:creator>RaymondGiuseppi</dc:creator>
      <dc:date>2009-12-29T11:56:57Z</dc:date>
    </item>
    <item>
      <title>Re: hexadecimal data type field in unicode system</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/hexadecimal-data-type-field-in-unicode-system/m-p/6546244#M1428870</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi ,&lt;/P&gt;&lt;P&gt;  I got some idea now. In my program they gave code like this.&lt;/P&gt;&lt;P&gt;data : D_UDF_XCHAR TYPE X.&lt;/P&gt;&lt;P&gt;IF D_UDF_XCHAR EQ '09' OR D_UDF_XCHAR EQ '2C'.&lt;/P&gt;&lt;P&gt;...................&lt;/P&gt;&lt;P&gt;ENDIF.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I found the value of 09 as CL_ABAP_CHAR_UTILITIES=&amp;gt;HORIZONTAL_TAB&lt;/P&gt;&lt;P&gt;but  I didn't get any attribute with value 2C.Could you suggest please.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanksfor reply.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 29 Dec 2009 13:26:20 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/hexadecimal-data-type-field-in-unicode-system/m-p/6546244#M1428870</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-12-29T13:26:20Z</dc:date>
    </item>
    <item>
      <title>Re: hexadecimal data type field in unicode system</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/hexadecimal-data-type-field-in-unicode-system/m-p/6546245#M1428871</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Deleted&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Edited by: Vikranth.Reddy on Dec 29, 2009 8:02 PM&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 29 Dec 2009 13:44:26 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/hexadecimal-data-type-field-in-unicode-system/m-p/6546245#M1428871</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-12-29T13:44:26Z</dc:date>
    </item>
    <item>
      <title>Re: hexadecimal data type field in unicode system</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/hexadecimal-data-type-field-in-unicode-system/m-p/6546246#M1428872</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Jaya,&lt;/P&gt;&lt;P&gt;use CL_ABAP_CONV_IN_CE=&amp;gt;UCCP( '002C' ).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;check this link for more details..http://help.sap.com/saphelp_nw04/helpdata/en/79/c554d9b3dc11d5993800508b6b8b11/frameset.htm&lt;/P&gt;&lt;P&gt;you will get more information on hexa decimal related.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks and regards.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 29 Dec 2009 14:12:44 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/hexadecimal-data-type-field-in-unicode-system/m-p/6546246#M1428872</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-12-29T14:12:44Z</dc:date>
    </item>
    <item>
      <title>Re: hexadecimal data type field in unicode system</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/hexadecimal-data-type-field-in-unicode-system/m-p/6546247#M1428873</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;'2C' is "ASCII comma" character in most western countries (...) look at thread &lt;SPAN __jive_macro_name="thread" id="786009"&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Raymond&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 29 Dec 2009 14:18:51 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/hexadecimal-data-type-field-in-unicode-system/m-p/6546247#M1428873</guid>
      <dc:creator>RaymondGiuseppi</dc:creator>
      <dc:date>2009-12-29T14:18:51Z</dc:date>
    </item>
    <item>
      <title>Re: hexadecimal data type field in unicode system</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/hexadecimal-data-type-field-in-unicode-system/m-p/6546248#M1428874</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;That's right. [http://msdn.microsoft.com/en-us/library/60ecse8t(VS.80).aspx] this site cheated me though i dint notice the correction at the bottom &lt;SPAN __jive_emoticon_name="happy"&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 29 Dec 2009 14:27:43 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/hexadecimal-data-type-field-in-unicode-system/m-p/6546248#M1428874</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-12-29T14:27:43Z</dc:date>
    </item>
    <item>
      <title>Re: hexadecimal data type field in unicode system</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/hexadecimal-data-type-field-in-unicode-system/m-p/6546249#M1428875</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I faced similar issue regarding the unicode conversion during the upgrade. The program had X data type defined and after upgrade it was giving dump. I changed that type to data type C and it worked. You can try check this out.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Saurabh.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 29 Dec 2009 14:43:37 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/hexadecimal-data-type-field-in-unicode-system/m-p/6546249#M1428875</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-12-29T14:43:37Z</dc:date>
    </item>
  </channel>
</rss>

