cancel
Showing results for 
Search instead for 
Did you mean: 

PI 7.1 generated outbound abap proxy objects

Former Member
0 Kudos

Hi guys,

i've just generated my first 7.1 abap proxy outbound and am a little bit confused of all these methods.

I don't have only 1 as it was in a previous version, but there are following:

IF_PROXY_BASIS_INTERNAL~CREATE_FRAMEWORK

IF_PROXY_BASIS~GET_PROTOCOL

IF_PROXY_BASIS~GET_TRANSPORT_BINDING

IF_PROXY_CLIENT~EXECUTE

CONSTRUCTOR

SI_GET_USER_SYNC_OUT //my operation

am I right if I say I only have to use th last one, pass my output parameters and that's it?

could you please provide me some short sample code for the execution method?

thanks a lot,

Olian

Accepted Solutions (1)

Accepted Solutions (1)

Former Member
0 Kudos

Hi,

you have to use SI_GET_USER_SYNC_OUT method for sending the req msg from R/3 system.......

am I right if I say I only have to use th last one, pass my output parameters and that's it? - yes

could you please provide me some short sample code for the execution method? - the mechanism is same as for XI 3.0 client proxy.......you have to create a object for this client proxy and call the above method and in its input parameter send the req msg with data in it...........

Regards,

Rajeev Gupta

Edited by: RAJEEV GUPTA on Apr 29, 2009 2:28 PM

Answers (3)

Answers (3)

Former Member
0 Kudos

Kindly check this link [http://help.sap.com/saphelp_nw70/helpdata/EN/e6/6d0f3fb35c48fa9fdf5f4e70d9f37d/frameset.htm]

Former Member
0 Kudos

hi,

you have to call the method SI_GET_USER_SYNC_OUT in your ABAP program or function module, and export the values for your outbound interface.

Regards,

Reyaz

former_member181962
Active Contributor
0 Kudos

Hi Olian,

Yes you are right with respect to the method to be used.

In any typical client proxy, your abap code should do the following

1) Declare local internal tables and variables

2) Get the data from the SAP tables or using function modules.

3) Populate the exporting interface parameters.

Regards,

Ravi