cancel
Showing results for 
Search instead for 
Did you mean: 

Is there any way to copy proxy filed structures to ABAP field structure?

former_member268877
Participant
0 Kudos

Hi All,

We are getting message from XI using inbound proxy and sending response asynchronously by outbound proxy.

my question: " is there any way to copy or to move incoming proxy fields to ABAP backend fields?"

for ex: we are getting Name structure from proxy wit fields firstname and lastname.

and proxy will generate some structures for name. backend ABAP system will have structure name with two fields having fname and lname as data elements.

so how can we directly move proxy fields to ABAP fields? ( here in example there are only two fields but real scenario we will have thousands of fields for which we cannot map manually from proxy fields to ABAP fields.)

please help me in this regard.

Thanks in advance.

Regards,

Ujwalkumar

Accepted Solutions (0)

Answers (2)

Answers (2)

Former Member
0 Kudos

UjwalKumar,

you cant use these because proxy data type is based Enterpise data type where R/3 is based standard R/3 data element .

other way is create a similar stucure of ABAP Proxy on R/3.

regards

Sreeram.G.Reddy

udo_martens
Active Contributor
0 Kudos

Hi Ujwalkumar,

if you have control over the proxy:

Create your interface at XI like the structure in backend system. Same structure and same fieldnames. If you regenerate your proxy you can use abap order "MOVE CORRESPONDING" to map all fields.

Regards,

Udo