can you explain little more about your requirement on PROXY?
<i>concatenate two strings?</i>
data: string1 type string ,
string2 type string ,
resultstring type string .
string1 = 'some text' .
string2 = 'some more text' .
concatenate string1 string2 into resultstring .
Regards
Raja
i dont heard the word PROXY in abap. but for your question,
if I want to concatenate two strings, what are all the steps I need to do ?
use CONCATENATE
syntax : CONCATENATE V_STRING1
V_STRING2
INTO V_TARGET <b>SEPARATED BY SPACE.</b>
The text above in BOLD is optional.
regards
srikanth.
HI
good
go through these links,
http://help.sap.com/saphelp_nw04/helpdata/en/ba/f21a403233dd5fe10000000a155106/content.htm
http://help.sap.com/saphelp_nw04s/helpdata/en/86/58cd3b11571962e10000000a11402f/content.htm
thanks
mrutyun
Add a comment