Usando el siguiente código puedes convertir cualquier valor hexadecimal en formato de carácter o binario:
data: hex_str(24) type X,
c_str(30) type C.
CALL FUNCTION 'STPU1_HEX_TO_CHAR'
EXPORTING
HEX_STRING = hex_str
IMPORTING
CHAR_STRING = c_str.
write : / c_str.
Recompensa si es útil.
Dara.