2008 Mar 14 7:10 PM
Hi ABAPs,
I am with a small problem in the generation of PDF reports as part of the text has "quotes". # It is printed on the spot, but has used the class CL_ABAP_CHAR_UTILITIES => CR_LF but the problem was not solved.
Only in PDF this occurs, in XLS not.
Does anyone have any idea of how to solve this problem?
2008 Mar 14 7:29 PM
Have you tried this way?
constants : c_quot(4) type c value '"'. " For value "
Replace all occurences of c_quot in var with ' '.
a®
2008 Mar 14 7:36 PM
Yes, but it did not work.
I used the following code.
REPLACE ALL OCCURRENCES OF C_CR_LF(2) IN V_COMENT WITH SPACE.
Sorry, I must display the quotes in PDF, I can not only remove it.
Edited by: Danilo Depolli on Mar 14, 2008 8:37 PM
2008 Mar 14 7:59 PM
Otherwise try this way
concatenate '"' '9' into v_tran.
translate <your variable> using v_tran.
a®
2008 Mar 17 12:07 PM
Hi,
The problem is not resolved.
Do you have any idea of what can be?
ps. When beginning the debugging mode, the value of variable is # and not ".
Thanks.
2008 Mar 17 1:11 PM
Hello, I am with the same problem. I tried to make the proposed changes but did not work. Can you help-me?