2008 May 30 8:45 AM
2008 May 30 8:46 AM
2008 May 30 8:46 AM
2008 May 30 8:46 AM
Hi,
data:
text 1(20) type c,
text2(20) type c,
text3(40) type c.
concatenate text1 text2 into text3.
regards
Nicole
2008 May 30 8:48 AM
Hi,
Use Concatenate Statement..
Concatenate str1 str2 into str3.
Regards,
Narsimha
2008 May 30 8:50 AM
Hi
if you have two string as
string1 = 'one'.
string2 = 'two'.
then you can concatenate the two strings into the third string as
CONCATENATE string1 string2 into string3 seperated by space.
regards
chythanya
2008 May 30 8:50 AM
Hi,
Check the below code :
data:
text 1(20) type c Value 'SAP',
text2(20) type c 'Labs',
text3(40) type c.
concatenate text1 text2 into text3.
write text3.Regards,
Raghu