cancel
Showing results for 
Search instead for 
Did you mean: 

Connect SAP Master Data TO CPI

GerardoPalomo
Discoverer
0 Kudos

Good Day Everyone,

I need advice on how to connect SAP to a CPI IFlow. 

The end objective of the iflow is to gather information from an SFTP (a PDF), look up the vendor ID in SAP, and from that vendor ID, grab its email from the master data in SAP, and then send the PDF through email adapter.

We got everything figured out except on how to connect SAP ---> CPI.

Thanks for the help.

Ryan-Crosby
Active Contributor
0 Kudos
If it's an on-prem SAP system then you would be looking for the cloud connector.

Accepted Solutions (0)

Answers (2)

Answers (2)

SugguSandeep
Active Participant
0 Kudos

Hi @GerardoPalomo 

Look at this channel will get clear info. & contains practically too

https://www.youtube.com/@OutOfTheBoxEA/playlists

Thanks & Regards, 
Suggu Sandeep.

amontella96
Active Contributor
0 Kudos

Hi @GerardoPalomo 

 i saw something similar using the cpi RFC interface, a btp destination and a cloud connector that maps the SAP/ERP where you need to grab your data

 you can put a content modifier step with a body in xml (below an example of a function module in the ERP that read and process a file) and then a request reply with an RFC adapter that connect to a destination (again the SAP/ERP) 

<?xml version="1.0" encoding="UTF-8"?> <ns1:EDI_DATA_INCOMING xmlns:ns1="urn:sap-com:document:sap:rfc:functions"> <PATHNAME>\\servername</PATHNAME> <PORT>CPIERP</PORT> </ns1:EDI_DATA_INCOMING>

hope this helps, good luck!A

GerardoPalomo
Discoverer
0 Kudos
Hi! Thanks for the reply.