Application Development and Automation Discussions
Join the discussions or start your own on all things application development, including tools and APIs, programming models, and keeping your skills sharp.
cancel
Showing results for 
Search instead for 
Did you mean: 
Read only

Hexadecimal Texts

Former Member
0 Likes
716

Hi

I am converting Hexadecimal text to character string with the functional module HR_RU_CONVERT_HEX_TO_STRING , i am getting the text fine , But i am getting # symbol in between the texts,

I need to remove the # from the text

any suggestions

I am using REPLACE,SHIFT and TRANSLATE options

but its of no use.

<REMOVED BY MODERATOR>

Edited by: Alvaro Tejada Galindo on Feb 13, 2008 2:45 PM

Hi

I am converting Hexadecimal text to character string with the functional module HR_RU_CONVERT_HEX_TO_STRING , i am getting the text fine , But i am getting # symbol in between the texts,

I need to remove the # from the text

any suggestions

I am using REPLACE,SHIFT and TRANSLATE options

but its of no use.

<REMOVED BY MODERATOR>

Edited by: Alvaro Tejada Galindo on Feb 13, 2008 2:45 PM

4 REPLIES 4
Read only

former_member194669
Active Contributor
0 Likes
684

Try this way


  loop at l_itab into l_str1.
    replace all occurrences of cl_abap_char_utilities=>horizontal_tab in
      l_str1 with space.
    write: / l_str1.
  endloop.

Read only

0 Likes
684

Hi

used the same but its not working in my code.

please let me know if any inputs.

Regards

Read only

former_member194669
Active Contributor
0 Likes
684

Or try with fm TEXT_CONVERT_TEX_TO_SAP

Read only

0 Likes
684

Hi

I tried but i am getting an message if i execute the FM .

But the FM is not executing.

Regards