<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: Replace #(hex value) with space in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/replace-hex-value-with-space/m-p/7802609#M1587245</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;SPAN style="color: #333333; font-size: 12px;"&gt;btw. CL_ABAP_CHAR_UTILITIES=&amp;gt;CR_LF corresponds to 0D00 0A00 (Carriage Return + Line Feed) .&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #333333; font-size: 12px;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #333333; font-size: 12px;"&gt;If you only want the Carriage Return you can use &lt;SPAN style="color: #333333; font-size: 12px;"&gt;CL_ABAP_CHAR_UTILITIES=&amp;gt;CR_LF+0(1) which yields 0D00&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 08 Apr 2016 12:36:48 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2016-04-08T12:36:48Z</dc:date>
    <item>
      <title>Replace #(hex value) with space</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/replace-hex-value-with-space/m-p/7802596#M1587232</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have a program which uploads the text from excel.&lt;/P&gt;&lt;P&gt;In excel, if one cell have multiple lines (separated by Alt + enter) , the program separates them with '#' .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I know the '#' is a hexadecimal value, but how could i replace this value with space ?&lt;/P&gt;&lt;P&gt;when i checked the hex value of '#' in debugger, it has the length of more than 2000.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please suggest how i can replace '#' with space.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks for your help.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 05 Apr 2011 20:04:24 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/replace-hex-value-with-space/m-p/7802596#M1587232</guid>
      <dc:creator>ramesh_putta</dc:creator>
      <dc:date>2011-04-05T20:04:24Z</dc:date>
    </item>
    <item>
      <title>Re: Replace #(hex value) with space</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/replace-hex-value-with-space/m-p/7802597#M1587233</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Ramesh,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Try the following code.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;data: IN_TEXT type string.
 
data: lv_lf type c value CL_ABAP_CHAR_UTILITIES=&amp;gt;CR_LF.
 
replace all occurrences of lv_lf in IN_TEXT with space.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Kinshuk&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 05 Apr 2011 20:35:12 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/replace-hex-value-with-space/m-p/7802597#M1587233</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2011-04-05T20:35:12Z</dc:date>
    </item>
    <item>
      <title>Re: Replace #(hex value) with space</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/replace-hex-value-with-space/m-p/7802598#M1587234</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Kinshuk,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks for your response. &lt;/P&gt;&lt;P&gt;I tried your solution before, but it didnt work.&lt;/P&gt;&lt;P&gt;Here , the value of CL_ABAP_CHAR_UTILITIES=&amp;gt;CR_LF will be '&lt;STRONG&gt;0D00&lt;/STRONG&gt;', but the value of '#' which iam getting from excel is not '&lt;STRONG&gt;'0D00&lt;/STRONG&gt;'.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 05 Apr 2011 21:20:49 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/replace-hex-value-with-space/m-p/7802598#M1587234</guid>
      <dc:creator>ramesh_putta</dc:creator>
      <dc:date>2011-04-05T21:20:49Z</dc:date>
    </item>
    <item>
      <title>Re: Replace #(hex value) with space</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/replace-hex-value-with-space/m-p/7802599#M1587235</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;Try this.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;data: IN_TEXT type string. 
data: lv_lf type c value cl_abap_char_utilities=&amp;gt;HORIZONTAL_TAB. 
replace all occurrences of lv_lf in IN_TEXT with space.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If that doesnt work try with &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;data: lv_lf type c value cl_abap_char_utilities=&amp;gt;VERTICAL_TAB&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;or &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;data: lv_lf type c value cl_abap_char_utilities=&amp;gt;NEWLINE&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 06 Apr 2011 05:37:17 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/replace-hex-value-with-space/m-p/7802599#M1587235</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2011-04-06T05:37:17Z</dc:date>
    </item>
    <item>
      <title>Re: Replace #(hex value) with space</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/replace-hex-value-with-space/m-p/7802600#M1587236</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Ramesh,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If you are using GUI_UPLOAD to load the excel file, use the "REPLACEMENT" parameter in the IMPORT parameter, update this parameter to use space, by defalut it is '#'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Note: If you are using any other method to upload the file let me know.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Chen&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 06 Apr 2011 05:46:50 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/replace-hex-value-with-space/m-p/7802600#M1587236</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2011-04-06T05:46:50Z</dc:date>
    </item>
    <item>
      <title>Re: Replace #(hex value) with space</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/replace-hex-value-with-space/m-p/7802601#M1587237</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Ramesh,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;"REPLACEMENT" in GUI_UPLOAD won't work, for "#" is a placeholder for several not printable characters in SAP. The attributes in CL_ABAP_CHAR_UTILITIES should be the better way, if you can find one!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Klaus&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 06 Apr 2011 06:01:11 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/replace-hex-value-with-space/m-p/7802601#M1587237</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2011-04-06T06:01:11Z</dc:date>
    </item>
    <item>
      <title>Re: Replace #(hex value) with space</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/replace-hex-value-with-space/m-p/7802602#M1587238</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Klaus,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope you can help me understand this better, the reason why Ramesh has '#' in place of 'ALT+ENTER' in the ITAB is because (i guess) 'GUI_UPLOAD' was not able find a printable character for the same. Now if he tries to "FIND" the same using CR_LF, how would it find the same?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Ramesh - I see that CL_ABAP_CHAR_UTILITIES=&amp;gt;CR_LF is a two character field, may you can try CR and LF separately as given below, as i am not sure on if 'ALT+ENTER' is translated/converted to CR or LF.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CR&lt;/P&gt;&lt;P&gt;replace all occurrences of CL_ABAP_CHAR_UTILITIES=&amp;gt;CR_LF(1) in 'your string' with space.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;LF&lt;/P&gt;&lt;P&gt;replace all occurrences of CL_ABAP_CHAR_UTILITIES=&amp;gt;CR_LF+1(1) in 'your string' with space.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Chen&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 06 Apr 2011 09:06:13 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/replace-hex-value-with-space/m-p/7802602#M1587238</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2011-04-06T09:06:13Z</dc:date>
    </item>
    <item>
      <title>Re: Replace #(hex value) with space</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/replace-hex-value-with-space/m-p/7802603#M1587239</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello Ramesh,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I am using MS Office 2007 excel &amp;amp; have a cell has multiple lines (created by Alt+Enter). When i check the HEX contents of the cell it shows a line feed(LF) ('0A').&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I use the following statement which replaces the '#' with space:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;      &lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;REPLACE ALL OCCURRENCES OF cl_abap_char_utilities=&amp;gt;newline
      IN wa_data WITH ` `&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope this helps.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;BR,&lt;/P&gt;&lt;P&gt;Suhas&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 06 Apr 2011 10:17:28 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/replace-hex-value-with-space/m-p/7802603#M1587239</guid>
      <dc:creator>SuhaSaha</dc:creator>
      <dc:date>2011-04-06T10:17:28Z</dc:date>
    </item>
    <item>
      <title>Re: Replace #(hex value) with space</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/replace-hex-value-with-space/m-p/7802604#M1587240</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks guys..cl_abap_char_utilities=&amp;gt;NEWLINE did the trick. Appriciate your help.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 06 Apr 2011 12:54:52 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/replace-hex-value-with-space/m-p/7802604#M1587240</guid>
      <dc:creator>ramesh_putta</dc:creator>
      <dc:date>2011-04-06T12:54:52Z</dc:date>
    </item>
    <item>
      <title>Re: Replace #(hex value) with space</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/replace-hex-value-with-space/m-p/7802605#M1587241</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Guys,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I had to re-open this thread as i have similar problem again.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Now Iam working on a program which downloads material texts to excel.&lt;/P&gt;&lt;P&gt;And Iam using CL_ABAP_CHAR_UTILITIES=&amp;gt;NEWLINE, in order to split the text lines into multiple lines within the same excel Cell.&lt;/P&gt;&lt;P&gt;To do this, using only CL_ABAP_CHAR_UTILITIES=&amp;gt;NEWLINE is not enough, I had to put the whole text between double quotes.&lt;/P&gt;&lt;P&gt;For example ... to download 'line1' 'line2' into same excel cell..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Concatenate 'line1' 'line2'  into v_text separated by CL_ABAP_CHAR_UTILITIES=&amp;gt;NEWLINE .&lt;/P&gt;&lt;P&gt;concatenate ' " '  v_text ' " ' into v_text.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This works fine. But when the text itself has the double quotes in it, then the text jumping to the next cell.&lt;/P&gt;&lt;P&gt;And i have lot of material texts which have double quotes in their text itself..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Any ideas to solve this ?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Edited by: Ramesh Putta on Apr 11, 2011 3:57 PM&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 11 Apr 2011 13:57:24 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/replace-hex-value-with-space/m-p/7802605#M1587241</guid>
      <dc:creator>ramesh_putta</dc:creator>
      <dc:date>2011-04-11T13:57:24Z</dc:date>
    </item>
    <item>
      <title>Re: Replace #(hex value) with space</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/replace-hex-value-with-space/m-p/7802606#M1587242</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Similar problem again&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 11 Apr 2011 14:06:35 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/replace-hex-value-with-space/m-p/7802606#M1587242</guid>
      <dc:creator>ramesh_putta</dc:creator>
      <dc:date>2011-04-11T14:06:35Z</dc:date>
    </item>
    <item>
      <title>Re: Replace #(hex value) with space</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/replace-hex-value-with-space/m-p/7802607#M1587243</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Try this 2 lines for the material text field&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; REPLACE ALL OCCURRENCES OF `'` in material_text with '`'.&lt;/P&gt;&lt;P&gt; REPLACE ALL OCCURRENCES OF '"' in material_text&amp;nbsp; with `""`.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please refer the sample report below&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;*&amp;amp;---------------------------------------------------------------------*&lt;BR /&gt;*&amp;amp; Report&amp;nbsp; ZCB_TEST&lt;BR /&gt;*&amp;amp;&lt;BR /&gt;*&amp;amp;---------------------------------------------------------------------*&lt;BR /&gt;*&amp;amp;&lt;BR /&gt;*&amp;amp;&lt;BR /&gt;*&amp;amp;---------------------------------------------------------------------*&lt;/P&gt;&lt;P&gt;REPORT ZCB_TEST.&lt;/P&gt;&lt;P&gt;data: it TYPE TABLE OF string,&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; wa TYPE string,&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; seperator TYPE string VALUE cl_abap_char_utilities=&amp;gt;newline.&lt;/P&gt;&lt;P&gt;DO 5 TIMES.&lt;BR /&gt; CONCATENATE 'line1' seperator 'l"ine2' seperator 'line3' INTO wa.&lt;BR /&gt; REPLACE ALL OCCURRENCES OF `'` in wa with '`'.&lt;BR /&gt; REPLACE ALL OCCURRENCES OF '"' in wa with `""`.&lt;BR /&gt; CONCATENATE '"' wa '"' INTO wa.&lt;BR /&gt; APPEND wa to it.&lt;BR /&gt; ENDDO.&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;CALL FUNCTION 'GUI_DOWNLOAD'&lt;BR /&gt;&amp;nbsp; EXPORTING&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; FILENAME&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; = 'C:\test.csv'&lt;BR /&gt;&amp;nbsp;&amp;nbsp; FILETYPE&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; = 'DAT'&lt;BR /&gt;&amp;nbsp; TABLES&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; DATA_TAB&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; = it&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; .&lt;BR /&gt;IF SY-SUBRC &amp;lt;&amp;gt; 0.&lt;BR /&gt;* Implement suitable error handling here&lt;BR /&gt;ENDIF.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 27 Jun 2012 13:04:40 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/replace-hex-value-with-space/m-p/7802607#M1587243</guid>
      <dc:creator>former_member205174</dc:creator>
      <dc:date>2012-06-27T13:04:40Z</dc:date>
    </item>
    <item>
      <title>Re: Replace #(hex value) with space</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/replace-hex-value-with-space/m-p/7802608#M1587244</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;check in debugging&lt;/P&gt;&lt;P&gt;if hex value for # is 000D&lt;/P&gt;&lt;P&gt;then use:&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 10pt;"&gt;REPLACE ALL OCCURANCE OF cl_abap_char_utilities&lt;/SPAN&gt;&lt;SPAN style="color: #808080; font-size: 10pt;"&gt;=&amp;gt;&lt;/SPAN&gt;&lt;SPAN style="font-size: 10pt;"&gt;cr_lf&lt;/SPAN&gt;&lt;SPAN style="color: #800080; font-size: 10pt;"&gt;(1&lt;/SPAN&gt;&lt;SPAN style="color: #800080; font-size: 10pt;"&gt;) IN&lt;/SPAN&gt;&lt;SPAN style="color: #0000ff; font-size: 10pt;"&gt; &lt;/SPAN&gt;&lt;SPAN style="font-size: 10pt;"&gt;string WITH space&lt;/SPAN&gt;&lt;SPAN style="color: #800080; font-size: 10pt;"&gt;.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #800080; font-size: 10pt;"&gt;if hex value is 000A&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #800080; font-size: 10pt;"&gt;then use:&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #800080; font-size: 10pt;"&gt;&lt;SPAN style="font-size: 10pt;"&gt;REPLACE ALL OCCURANCE OF cl_abap_char_utilities&lt;/SPAN&gt;&lt;SPAN style="color: #808080; font-size: 10pt;"&gt;=&amp;gt;&lt;/SPAN&gt;&lt;SPAN style="font-size: 10pt;"&gt;cr_lf+&lt;/SPAN&gt;&lt;SPAN style="color: #800080; font-size: 10pt;"&gt;1(1&lt;/SPAN&gt;&lt;SPAN style="color: #800080; font-size: 10pt;"&gt;) IN&lt;/SPAN&gt;&lt;SPAN style="color: #0000ff; font-size: 10pt;"&gt; &lt;/SPAN&gt;&lt;SPAN style="font-size: 10pt;"&gt;string WITH space&lt;/SPAN&gt;&lt;SPAN style="color: #800080; font-size: 10pt;"&gt;.&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #800080; font-size: 10pt;"&gt;similary you can check for HORIZONTAL_TAB, VERTICAL_TAB etc.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #800080; font-size: 10pt;"&gt;hope this help&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #800080; font-size: 10pt;"&gt;Regards&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 09 Oct 2015 12:33:43 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/replace-hex-value-with-space/m-p/7802608#M1587244</guid>
      <dc:creator>navdeep_thakur12</dc:creator>
      <dc:date>2015-10-09T12:33:43Z</dc:date>
    </item>
    <item>
      <title>Re: Replace #(hex value) with space</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/replace-hex-value-with-space/m-p/7802609#M1587245</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;SPAN style="color: #333333; font-size: 12px;"&gt;btw. CL_ABAP_CHAR_UTILITIES=&amp;gt;CR_LF corresponds to 0D00 0A00 (Carriage Return + Line Feed) .&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #333333; font-size: 12px;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #333333; font-size: 12px;"&gt;If you only want the Carriage Return you can use &lt;SPAN style="color: #333333; font-size: 12px;"&gt;CL_ABAP_CHAR_UTILITIES=&amp;gt;CR_LF+0(1) which yields 0D00&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 08 Apr 2016 12:36:48 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/replace-hex-value-with-space/m-p/7802609#M1587245</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2016-04-08T12:36:48Z</dc:date>
    </item>
    <item>
      <title>Re: Replace #(hex value) with space</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/replace-hex-value-with-space/m-p/14049769#M2041428</link>
      <description>&lt;P&gt;Thanks&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;replace all occurrences of CL_ABAP_CHAR_UTILITIES=&amp;gt;CR_LF(1) in 'your string' with space.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;This worked for me &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 19 Mar 2025 13:05:22 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/replace-hex-value-with-space/m-p/14049769#M2041428</guid>
      <dc:creator>Chella82</dc:creator>
      <dc:date>2025-03-19T13:05:22Z</dc:date>
    </item>
  </channel>
</rss>

