cancel
Showing results for 
Search instead for 
Did you mean: 

How to import custom extractors into CPI - DS

Hi Experts,

I want to integrate BOM data from S4 to IBP using Cloud Platform integration (CPI - DS) . As there is no standard template available for this, I have created custom extractor using function module. How can I import this extractor into CPI so that I can se it as a data store at source system?

Help will be much appreciated.

Accepted Solutions (0)

Answers (2)

Answers (2)

jeffrey_kresse
Employee
Employee

CPI-DS accesses extractors through the ODP framework, so your extractor must be made available to ODP. For this, you can expose the extractor with se38 -> RODPS_OS_EXPOSE. After exposing with that program, you should be able to find your extractor in table ROOSATTR with an 'x', indicating the extractor is released and exposed. Another test is (after RODPS_OS_EXPOSE)
se38 -> RODPS_REPL_ODP_GET_DETAIL, which is the exact function used by CPI-DS to import extractor metadata for standard extractors.

Regards,
Jeff K

0 Kudos

Thank you Jeff.

former_member423067
Active Participant
0 Kudos

Hello jeff,

Do standard extractors come default in the ECC or is there any specific SAP note or service pack need to be installed to enable it?

In case of any custom logic, is there any documentation to guide the ECC team to create custom extractors and expose extractors ?

with regards,

Nazeer

jeffrey_kresse
Employee
Employee
0 Kudos

This SAP note is probably the best place to start: https://launchpad.support.sap.com/#/notes/2232584

ECC systems of a sufficient version will have many (potentially thousands, depending on which modules are installed) standard extractors that can be utilized with no customizing.

As for custom logic I am not really the person to ask, possibly the ODP section of the community or SAP Help documentation would hold the answers you seek. Generally the standard extractors are sufficient for customers needs in my experience.

lingaiahvanam
Active Contributor
0 Kudos

Hi Anil,

I am not sure about the custom extractors importing process in CPI-DS. But as 1902 release time series planning data also can be transferred to IBP.

The following master data can be transferred to IBP time-series-based planning areas using CPI-DS:

  • Locations
  • Products
  • Resources
  • Location materials
  • Resource locations
  • Production Data Structures

This is done by providing extractors, which read data from the replication tables mentioned above. These extractors in turn are called by CPI-DS to select data from SAP ERP in order to transfer them to the IBP system.

Best Regards,

Lingaiah

0 Kudos

Thank you Lingaiah.