‎2007 May 04 11:11 AM
Hi All,
It might look quite simple but pls let me know how it can be done. I need to concatenate single coat in front of a field, can anyone let me know how it can be done.
Eg - Lets take Mara-matnr as a field
concatenate ' ' ' mara-matnr into mara matnr.
since i am not closing the coats its giving error..but i need to add that single coat infront of that field...so pls let me know how it can be done
thanks
sathish
‎2007 May 04 11:14 AM
‎2007 May 04 11:15 AM
Hi,
try this way:
write: ' ' mara-matnr.
Hope this helps.
Reward if helpful.
Regards,
Sipra
‎2007 May 04 11:19 AM
hi
good
store the " ' " value in a string and than concatenate with mara-matnr into mara matnr with the CONCATENATE statement.
thanks
mrutyun^
‎2007 May 04 11:40 AM
hi surender,
data: v_var value '''',
v_matnr(10) type c value 'Jayant',
temp_2(11).
write::/ v_var.
concatenate v_var v_matnr into temp_2.
write:/ temp_2.
This code will work for you.. it will take a single ' because it is of character one...
Regards,
Jayant
<b>PLease award if helpful</b>
‎2007 May 04 11:44 AM
Hi Surender,
use this code.It will work definitely.
concatenate ' ' ' ' mara-matnr into mara-matnr. (use four single codes without space)
Reward points if helpful.
Regards,
Hemant