Skip to Content
0
Former Member
Apr 28, 2011 at 07:31 AM

Need clarification for Synchronous outbound Proxy.

28 Views

Hi,

I am new to Proxies.

In My system there is an outbound synchronous proxy.

Proxy Name : ZCO_DUPLICATE_CHECK_SEND_OUT_S

Method name: DUPLICATE_CHECK_SEND_OUT_SYN

Method Parameters: INPUT & OUTPUT.

Can i create a report using this proxy by calling

DATA : CL_DUPLICATE_CHECK_DATA TYPE REF TO ZCO_DUPLICATE_CHECK_SEND_OUT_S .

TRY.

CREATE OBJECT CL_DUPLICATE_CHECK_DATA.

CATCH CX_AI_SYSTEM_FAULT.

ENDTRY.

TRY .

CALL METHOD CL_DUPLICATE_CHECK_DATA->DUPLICATE_CHECK_SEND_OUT_SYN

EXPORTING

output = gto1

IMPORTING

input = gti1

.

CATCH cx_ai_system_fault.

ENDTRY.

Now my doubt is

Will the input parameter give me exact structure i.e. returned table contents or i need to write inbound method for that?

How can i check that the proxy is working fine? i.e. Data is being sent to PI?

TIA

vikash