cancel
Showing results for 
Search instead for 
Did you mean: 

abap proxy

Former Member
0 Kudos

i have generated the proxy but the problem is that the data that i am passing to be populated in the structure is not getting displayed in the xml file that is being generated.

i am using the below code:

please correct me what i need to do

wa_it-DOCUMENT_NUMBER = '101010'.

append wa_it to it.

wa_ex_compatible-THIRD_PARTY_FEES_INVOICE_SAP-LINE_ITEM = it.

  • CALL METHOD prxy->execute

BREAK CT069248.

CALL METHOD PRXY->ZTHIRD_PARTY_FEES_INVOICE_MTHD

EXPORTING

OUTPUT = wa_ex_compatible

can u tell me what is the problem

Accepted Solutions (0)

Answers (5)

Answers (5)

Former Member
0 Kudos

thanks

Former Member
0 Kudos

Hi,

wa_ex_compatible-THIRD_PARTY_FEES_INVOICE_SAP-LINE_ITEM[] = it[].

try by adding body to LINE_ITEM[] and it[].

Thanks,

Goutham

Former Member
0 Kudos

Hi,

wa_ex_compatible-THIRD_PARTY_FEES_INVOICE_SAP-LINE_ITEM [ ] = it[ ].

try by adding body to LINE_ITEM [] and it [].

Thanks,

Goutham

Former Member
0 Kudos

i did add body but still it is not working?

got any other idea?

here is my code

wa_it-DOCUMENT_NUMBER = '101010'.

append wa_it to it.

wa_ex_compatible-THIRD_PARTY_FEES_INVOICE_SAP-LINE_ITEM[] = it[].

BREAK CT069248.

CALL METHOD PRXY->ZTHIRD_PARTY_FEES_INVOICE_MTHD

EXPORTING

OUTPUT = wa_ex_compatible

.

Former Member
0 Kudos

Hi

r u checking sxmb_moni of the receiver System (or on which proxy is used) ,

in receiver system --> sxmb_adm --> activate queues.

update if any more

regards

srini

Former Member
0 Kudos

hi iam checking it on the ecc system in which i have created the proxy.

i am able to c the xml generated file but the data that i have passed (refer the code above) i am not able to c that data in that file.

am i testing it the wrong way? plss correct me

Former Member
0 Kudos

Hi

check these links , may you got some help

Regard's

Chetan Ahuja

Former Member
0 Kudos

hi

check the method whethere it is synchronous/asynchronous

regards

kummari