cancel
Showing results for 
Search instead for 
Did you mean: 

abap proxy...

Former Member
0 Kudos

I have the data in int.table it_outtab. I have defined the strucure it_proxy based on MT strure. How can I pass this it_outtab data to it_proxy. Can any body give me the answer?

DATA:it_proxy type ZSIEBEL_ACK_CRDB_MT.

.....................................?

................................?

CALL METHOD proxy->execute_asynchronous

EXPORTING

output = it_proxy.

Accepted Solutions (0)

Answers (2)

Answers (2)

Former Member
0 Kudos

CALL METHOD proxy->execute_asynchronous

exporting

output = itab_out

importing

import = itab_in

itab_out = itab you will send to proxy

itab_in = itab if you want to retrieve some values for purpose of showing as a result of execution of program ...

Message was edited by:

Mugdha Kulkarni

Former Member
0 Kudos

HI,

R u using client proxy i think:

Client Proxy -

/people/ravikumar.allampallam/blog/2005/03/14/abap-proxies-in-xiclient-proxy

Just go through the below weblog:

Server Proxy -

/people/siva.maranani/blog/2005/04/03/abap-server-proxies

File to Inbound Proxy:

/people/prateek.shah/blog/2005/06/14/file-to-r3-via-abap-proxy

thnx

Chirag Gohil

Former Member
0 Kudos

Hi,

I have written the coding as below . but it is not giving the result what might be the wrong can u suuggest

DATA:proxy TYPE REF TO zco_oa_siebel_ack_crdb_mi.

CREATE OBJECT proxy.

DATA:it_proxy TYPE zsiebel_ack_crdb_mt.

DATA:wa_proxy1 TYPE zsiebel_ack_crdb_dt_record.

DATA:it_proxy1 TYPE STANDARD TABLE OF zsiebel_ack_crdb_dt_record.

TRY.

LOOP AT it_outtab INTO wa_outtab.

MOVE-CORRESPONDING wa_outtab TO wa_proxy1.

APPEND wa_proxy1 TO it_proxy1.

ENDLOOP.

CALL METHOD proxy->execute_asynchronous

EXPORTING

output = it_proxy.

COMMIT WORK.

CATCH cx_ai_system_fault .

DATA fault TYPE REF TO cx_ai_system_fault .

CREATE OBJECT fault.

WRITE 😕 fault->errortext.

ENDTRY.

santhosh_kumarv
Active Contributor
0 Kudos

Hi Sudhakar,

You should append the data to it_proxy and not to it_proxy1.

Regards

San.

Former Member
0 Kudos

Hi ,

Thanks for your reply. The MT structure developed based on FCC design

MT structure :zsiebel_ack_crdb_mt

it has the component SIEBEL_ACK_CRDB_MT and

this has the component RECORD and

it has the line type as ZSIEBEL_ACK_CRDB_DT_RECORD and

this line type has the actual stuctue.

For the above strure how can I proceed.

Former Member
0 Kudos

Hi santosh ,

can u please confirm me for proxy it is must to select Teh system as Web as ABAP or will it work for Third party also?

Former Member
0 Kudos

hi

can you give the structure screen shot from SPROXY.. so that imay help...