‎2006 Aug 02 1:03 PM
How to write a PROXY in ABAP? For example if I want to concatenate two strings, what are all the steps I need to do ?
Thanks.
‎2006 Aug 02 1:10 PM
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
‎2006 Aug 02 1:10 PM
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
‎2006 Aug 02 1:10 PM
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.
‎2006 Aug 02 1:11 PM