Skip to main content

Celonis Product Documentation

Multiple SAP Source Systems

Frequently more than one SAP system is required to get a full end-to-end view of the supply chain. This view can be split by regions, business units, company codes, etc. The Accounts Receivable data is flexible enough to support this with just a few steps.

  1. Create a duplicate of the local data jobs by clicking on the three dots to the right of the local job name and then selecting Duplicate. The duplication is important, because it allows for the template transformations to be shared across the different data jobs. Do not simply copy and paste the data transformations.

    image35.png
  2. Change the Data Connection of the newly duplicated data job to your other source system:

    image92.png
  3. Select your data connection (or connections) from the dropdown.

    image2.png
  4. (Optional) Change the name of the data job by removing the (1) that was added when the job was duplicated.

  5. Run both (or as many as required) data jobs as usual and remember to incorporate the new job into any schedules.

  6. For all global AR jobs, update the different transformations to reference both local jobs and union them together as shown in the example below.

    DROP VIEW IF EXISTS "AR_ACCOUNT";
    CREATE VIEW "AR_ACCOUNT" AS(
    SELECT * FROM <%=DATASOURCE:SAP_CONNECTION_EU%>."ACCOUNT"
    UNION ALL
    SELECT * FROM <%=DATASOURCE:SAP_CONNECTION_APAC%>."ACCOUNT"
    );