cancel
Showing results for 
Search instead for 
Did you mean: 

Proxy

Former Member
0 Kudos

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

Accepted Solutions (0)

Answers (3)

Answers (3)

Former Member
0 Kudos

Srinvas,

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?

There is no Out Bound inteface? => then you cant create Proxy out of it. you cant have either RFC adapter calling to XI or Proxy calling XI but not both.

in bound case our report will call Proxies and proxies cant call RFC

Regards

Sreeram.G.Reddy

Former Member
0 Kudos

I meen I imported the RFC and using this as my outbound .

Thanks

prabhu_s2
Active Contributor
0 Kudos

if u want to call the proxy then u might need to have that f/n imported into the method of the o/b interface of proxy. but again it is another prgm that is triggering the method which inturn calls the proxy. so it is beter to have the z progam scheduled to call the proxy

Former Member
0 Kudos

Hi Srinivas,

i think you are working on File to RFC scenario as you have to take data from source file and update R/3 with RFC........You have an RFC then you just import the RFC in IR in imported objects -> RFCs..... Then in ID, you will have to make an XI adapter to send the data to R/3 for this RFC.

Thanks,

Rajeev Gupta

prabhu_s2
Active Contributor
0 Kudos

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

Former Member
0 Kudos

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 Kudos

CALL METHOD prxy->execute_asynchronous

EXPORTING

output = it.

commit work

.

if your are calling proxy