‎2006 Nov 21 9:01 AM
hi all,
this declaration is a unicode error. Please give the replacement for this code in ECC 6.0
constants: c_hex type x value '09'.
Regards,
keerthi
‎2006 Nov 21 9:09 AM
hi Keerthi,
Check this way ..
data: con_cret TYPE c VALUE cl_abap_char_utilities=>cr_lf.
replace con_cret with ' ' into string1.
Regards,
Santosh
‎2006 Nov 21 9:08 AM
Hi Keerthi,
Have a look at this link: <a href="http://help.sap.com/saphelp_nw2004s/helpdata/en/79/c554d9b3dc11d5993800508b6b8b11/content.htm">http://help.sap.com/saphelp_nw2004s/helpdata/en/79/c554d9b3dc11d5993800508b6b8b11/content.htm</a>
Hope it helps.
Regards,
Rui
‎2006 Nov 21 9:09 AM
hi Keerthi,
Check this way ..
data: con_cret TYPE c VALUE cl_abap_char_utilities=>cr_lf.
replace con_cret with ' ' into string1.
Regards,
Santosh
‎2006 Nov 21 10:21 AM
Hi
I guess Hexa Decimal Value 09 denotes for TAB character.
Please use as below:
data: l_tab(1) type c value cl_abap_char_utilities=>horizontal_tab.
Please refer to class: <b>CL_ABAP_CHAR_UTILITIES</b> for more.
Kind Regards
Eswar
‎2006 Nov 21 10:26 AM
Hi Keerthi,
Use the following statements for the same purpose.
class cl_abap_char_utilities definition load.
constants: c_hex type c value cl_abap_char_utilities=>HORIZONTAL_TAB.
Regards,
Venkat