cancel
Showing results for 
Search instead for 
Did you mean: 

Simple Inbound ABAP Proxy doesn't work in my new PI 7.1 EHP 1 SP3 ?

Former Member
0 Kudos

Hi,

I just installed and configure new PI 7.1 EHP 1 SP3 and i tried some simple abap proxy but seems like doesn't work.

Please advise what is missing base on my simple abap code below :

-


METHOD zpi711ii_si_syn_in_aaeproxy~si_syn_in_aaeproxy.

      • **** INSERT IMPLEMENTATION HERE **** ***

DATA: inputdata TYPE ZPI711MT_REQ_1,

outputdata TYPE ZPI711MT_RES_1.

CONCATENATE inputdata-mt_req_1-firstname ' ' inputdata-mt_req_1-lastname INTO outputdata-mt_res_1-fullname.

ENDMETHOD.

-


i have put some break on the CONCATENATE seems like inputdata-mt_req_1-firstname is empty ? why ?

The sample xml input is :

-


<n0:MT_REQ_1 xmlns:n0="http://www.abeam.com/sample/pi" xmlns:prx="urn:sap.com:proxy:ST6:/1SAI/TAS1190827B531A473B357B:700:2008/06/25">

<FIRSTNAME>This is a string 4</FIRSTNAME>

<LASTNAME>This is a string 5</LASTNAME>

</n0:MT_REQ_1>

-


Please advise

Thank You and Best Regards

Fernand

Accepted Solutions (0)

Answers (1)

Answers (1)

TomekP
Explorer
0 Kudos

Hi,

it's empty because you just declared the inputdata structure locally in the method.

I think you shoud refer to the methods's interface.

T.