Application Development and Automation Discussions
Join the discussions or start your own on all things application development, including tools and APIs, programming models, and keeping your skills sharp.
cancel
Showing results for 
Search instead for 
Did you mean: 
Read only

Proxy

Former Member
0 Likes
450

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.

1 ACCEPTED SOLUTION
Read only

athavanraja
Active Contributor
0 Likes
415

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

3 REPLIES 3
Read only

athavanraja
Active Contributor
0 Likes
416

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

Read only

Former Member
0 Likes
415

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.