cancel
Showing results for 
Search instead for 
Did you mean: 

SRM 4.0 Outbound proxy (Products replication)

Former Member
0 Kudos

I need to send products from SRM to third party system.

There is a proxy for interface CatalogPublicationRequest_Out - CO_BBPX1_CATALOG_PUB_REQUEST.

But is there a function that fill data and invoke this class?

Accepted Solutions (1)

Accepted Solutions (1)

udo_martens
Active Contributor
0 Kudos

Hi Sergey,

for easy filling data and syntactical invoke us button "pattern" / ABAP OBJECTS and put the class of the proxy and the method (execute_...).

Former Member
0 Kudos

I know how to invoke ABAP Proxy technically.

The problem is where to get the data for this class in SRM 4.0.

SRM has pre generated ABAP proxy and maybe it has a FM that invoke internal function, fill data and invoke abap proxy.

Former Member
0 Kudos

Sergey,

Why don't you do a WHERE USED LIST of that method / class? If there is any function like that give by SAP, it will be found in the WHERE USED LIST.

Regards,

Ravi

Answers (1)

Answers (1)

Shabarish_Nair
Active Contributor
0 Kudos

Refer this weblog on client proxies.

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

>> EG:

CALL METHOD prxy->execute_asynchronous

EXPORTING

output = it.

commit work

.

You need to write a report to trigger the proxy in your SRM system.