cancel
Showing results for 
Search instead for 
Did you mean: 
Read only

Proxy

Former Member
0 Likes
315

Hi All,

I am Working wi th Rfc to File scenario,

For this I Created an Abap RFc to update the record in the table.

This is my Sender Structure,There is no Out Bound inteface ,Can I Use Proxiy to call the RFC instead of running the z program in the R/3 side?

Please Clarify.

Thanks

Srinivasa

View Entire Topic
prabhu_s2
Active Contributor
0 Likes

if u call proxy(client) then u need to implement the method in a program to trigger the rfc.

Former Member
0 Likes

Ho to Do this.

is it in this way....

method EXECUTE_ASYNCHRONOUS.

SET EXTENDED CHECK OFF.

include sproxy_macros.

outbound_handler_init_1

'EXECUTE_ASYNCHRONOUS'

'CompanyCode_Req_OUT'

.

outbound_handler_add_param

'OUTPUT'

OUTPUT

'0'

'ZXICOMPANY_CODE_REQ1'

'CompanyCode_Req'

'http://www.

'CompanyCode_Req'

'http://

.

outbound_handler_execute.

SET EXTENDED CHECK ON.

endmethod.

Former Member
0 Likes

CALL METHOD prxy->execute_asynchronous

EXPORTING

output = it.

commit work

.

if your are calling proxy