2007 Sep 13 9:38 AM
Hi experts,
this is durga.k can u please help me its very urjent .i got one object in that if i do extended syntax check it shows warning like
c_delim must be character type ..in 6.0 version.
in source code( c_delim is variable its value is 09
c_delim type x value 09.(its working in 4.6c but not 6.0)i want to know.
i can't get understand wht is value 09 indecates..and how i have to handle this error.
please help me...its urjent...
Message was edited by:
durga kottapalli
2007 Sep 13 11:25 AM
Hi Durga,
Because it is a string it wil give you problem when you use like hex value '09'.
To overcome that use class CL_ABAP_CHAR_UTILITIES , in that in attributes
you have all hex values defined. I thing in your case it is horizontal tab.
Instead of c_delim you can directly use
CL_ABAP_CHAR_UTILITIES=>HORIZONTAL_TAB in your program.
Thanks&Regards,
Siri.
2007 Sep 13 9:42 AM
Hi,
this (09) is the value for a tab in hex.
Regards, Murugesh AS
2007 Sep 13 10:32 AM
thank you for giving response...but .i have doubt in that i have to this
C_DELIM TYPE X VALUE '09' make it as no error in 6.0 ..how can i resolve this proble..please..please tell me how i have to solve in 6.0..what changes i have to make..
regards.
2007 Sep 13 11:25 AM
Hi Durga,
Because it is a string it wil give you problem when you use like hex value '09'.
To overcome that use class CL_ABAP_CHAR_UTILITIES , in that in attributes
you have all hex values defined. I thing in your case it is horizontal tab.
Instead of c_delim you can directly use
CL_ABAP_CHAR_UTILITIES=>HORIZONTAL_TAB in your program.
Thanks&Regards,
Siri.
2007 Nov 26 3:58 PM
Do you happen to know the attribute for hex decimal value '20' in the class cl_abap_char_utilities?
Thanks in advace,
Aparna