‎2022 Mar 10 7:22 AM
Hi everyone,
I am making a pr list report that will be mailed every day as excel. We have a RFC functions.
If someone uses the enter key in the description section while opening pr on the website, it appears as # character on the abap screen. When I try to change it with the TRANSLATE command, I cannot succeed. How can I fix this character?

Thanks.
‎2022 Mar 10 11:19 AM
REPLACE ALL OCCURRENCES OF CL_ABAP_CHAR_UTILITIES=>CR_LF+1 IN acklm_str WITH space.
It was solved. Thanks.
‎2022 Mar 10 7:34 AM
I want to add more details;
If someone write normally # character, my code change this.
‎2022 Mar 10 8:08 AM
The # character is a placeholder for anything that cannot be displayed: you need to look at the hex representation to find out what it is exactly
‎2022 Mar 10 8:50 AM
‎2022 Mar 10 9:48 AM
It's not #, it's the newline character in ABAP (as it can't be displayed by debugger, SAP replaces it with #).
replace all occurrences of |\n| in acklm_str with |?|.\n is Unicode character U+000A (newline)
‎2022 Mar 10 10:14 AM
acamli you don't need it, it's right in the debugger to the right of the red box.
‎2022 Mar 10 11:19 AM
REPLACE ALL OCCURRENCES OF CL_ABAP_CHAR_UTILITIES=>CR_LF+1 IN acklm_str WITH space.
It was solved. Thanks.
‎2022 Mar 10 5:00 PM
which is the same as (valid as of ABAP 7.02):
replace all occurrences of |\n| in acklm_str with | |.
‎2022 Mar 11 5:07 AM
sandra.rossi probably it is same but our SAP version did not support.