2006 Jul 07 10:12 PM
Hi,
Does someone know about a funtion that converts a hexadecimal number in a character?
Thanks
Victoria
Hi,
Does someone know about a funtion that converts a hexadecimal number in a character?
Thanks
Victoria
2006 Jul 07 10:14 PM
Try the following code:
dat: v_hex(4)type x value '41',
v_char type c.
field-symbols <fs>.
assign v_hex to <fs> casting type c.
v_char = <fs>.
write: v_char.
Regards
Sridhar
Message was edited by: Sridhar K
2006 Jul 07 10:16 PM
2006 Jul 07 10:39 PM
I am going to explain my issue.
In the interface with other system I transport To R/3 a Text field. In R/3 I have an error because the text have an invalid character, R/3 shows this character like a #, but the error shows the hexadecimal number for this stranger character (hex.
'3400200054004500430048004E004900430041004C00200041'). I need to know which character is this hexadecimal number for try to transformed in other.
Thanks
Victoria
2006 Jul 07 10:47 PM
That looks to me like unicode data, 00 missing at the begining of the string.
If u add 00 at the begining it's text wquivalent is: 4 TECHNICAL A
Regards
Sridhar
2006 Jul 07 10:51 PM
2006 Jul 10 3:31 PM
uhmm I understand more that hexadecimal number.. mi text is
4 TECHNICAL ATTENDANCE AND##ASSISTANT
The invalid character are ##. in others presentation appears like squares.
2006 Jul 10 8:03 PM
The hex string in ur previous message is only upto '4 TECHNICAL A', please post the remaining hex value, If the message is not showing full hex string, select the text and convert to hex.
Regards
Sridhar
Message was edited by: Sridhar K
2006 Jul 10 8:09 PM
That looks to me like unicode data, 00 missing at the begining of the string.
If u add 00 at the begining it's text wquivalent is: 4 TECHNICAL A
Regards
2006 Jul 10 8:57 PM
hi victoria,
check this link:
http://www.geocities.com/ikind_babel/babel/babel.html
Do reawrd if helpful.
regards,
keerthi.