PDA

Ver la Versión Completa : Conversión Hexadecimal a Char.


larmadovr
03/06/08, 16:30:22
Que tal amigos:

Alguien sabe de alguna función para hacer esta conversión??

Desde ya muchas gracias.

Alfredosite
03/06/08, 18:50:58
Hola encontre esto en al red espero te siva en algo.
http://www.sapfans.com/forums/viewtopic.php?p=403405&sid=e524cddae19e7ae48a12477e68c6032d
Saludos.

ibecerra
03/06/08, 22:36:43
Esta funcion convierte a caracter ascii y hexadecimal

FUNCTION Z_CHARACTER_TO_ASCII_CODE.
*"----------------------------------------------------------------------
*"*"Interfase local
*" IMPORTING
*" REFERENCE(FI_CHARACTER) TYPE C
*" EXPORTING
*" REFERENCE(FE_ASCII_CODE_DEC) TYPE I
*" REFERENCE(FE_ASCII_CODE_HEX) TYPE C
*"----------------------------------------------------------------------
field-symbols <FS> type x.
*Have to use CASTING here to purposely force SAP to convert the
*character to an equivalent HEX value (using ASCII chart).
*Note that CASTING feature is not available prior release 4.6
assign fi_character(1) to <FS> casting.
*The type of the destination field will cause SAP to determine which
*type (Decimal/Hexadecimal) of ASCII code should be converted:
* X -> I gives Dec value
* X -> C gives Hex value
fe_ascii_code_dec = <FS>.
fe_ascii_code_hex = <FS>.



ENDFUNCTION.

larmadovr
03/06/08, 23:13:35
Voy a probar la función, después te cuento como me va...

Saludos.