‎2007 Nov 14 3:24 PM
Hello All,
Could anyone tell me (with ABAP Statement) how to replace a single quote with space? I am getting syntax left and right.
REPLACE " ' " WITH space INTO v_temp.
Thanks,
Alex (Arthur Samson)
‎2007 Nov 14 3:27 PM
Hi Alex
Try
REPLACE ALL OCCURANCES OF ' ' ' ' WITH space INTO v_temp.
Regards,
Atish
Message was edited by:
Atish Sarda
‎2007 Nov 14 3:27 PM
Hi Alex
Try
REPLACE ALL OCCURANCES OF ' ' ' ' WITH space INTO v_temp.
Regards,
Atish
Message was edited by:
Atish Sarda
‎2007 Nov 14 3:28 PM
Samsun,
do like this
REPLACE ''''(4 single quote equal to 1 single quote) WITH space INTO v_temp.
<b>Reward if it helps,</b>
Satish
‎2007 Nov 14 3:28 PM
Hi
declare quote as constant with single char field
and use REPLACE command
REPLACE v_quote WITH space INTO v_temp.
Regards
Anji
‎2007 Nov 14 3:29 PM
‎2007 Nov 14 3:30 PM
Try with this ...
REPORT ZTEST_NP.
parameters:p_Text(10) .
translate p_text using ''' '. "<<<<
write: p_text.Regards,
Naimesh Patel