SlideShare a Scribd company logo
1 of 29
Experience with SAP Cloud for
Customer and SAP Process
Orchestration
DANIEL GRAVERSEN FIGAF APS
DANIEL GRAVERSEN DGR@FIGAF.COM 1
Agenda
Project
Connectivity
SAP Standard
Custom Fields
Steps of Synchronization
DANIEL GRAVERSEN DGR@FIGAF.COM 2
Daniel Graversen
• SAP XI/PI consultant since 2004
• SAP Mentor since the fall of 2009
• Currently working as freelance consultant in Denmark
• I have worked on one project on SAP Cloud 4 Customer
DANIEL GRAVERSEN DGR@FIGAF.COM 3
Focus of the Project
The main focus of the project was to synchronize SAP Cloud 4 Customer master data with an Internal
system using SAP PO as middleware.
My goal is to be able to synchronize Customer, Address and Contacts in both directions.
SAP ERP is not a part of the goal yet.
My work was focused only on integration; I cannot describe how C4C works in regards to other aspects.
DANIEL GRAVERSEN DGR@FIGAF.COM 4
Interface
The Cloud 4 Customer comes with a series of interfaces.
Here is the list for managing different Business Objects in the system.
There are 3 types of operations:
• Manage
• Query
• Create/Trigger
DANIEL GRAVERSEN DGR@FIGAF.COM 5
API
The API is self-explanatory, based on the query to identify what was saved on a customer template.
Each interface has a documentation in the cloud system.
I have not found in-depth field description.
Action codes are used for performing actions.
01 — Create
02 — Update
03 — Delete
04 — Save
05 — Remove
06 — No Action
DANIEL GRAVERSEN DGR@FIGAF.COM 6
Connectivity
Connection to C4C is simple, just connect through HTTPS on 443 as in the endpoint.
When sending data from C4C it also needs to be through HTTPS.
HTTPS can only be used on the following ports:
443
44300-44302
44305-44307
44320
The IP of the SAP server seems the same, but it may change.
DANIEL GRAVERSEN DGR@FIGAF.COM 7
Reverse Proxy
A Reverse proxy only allows data on a specific URL and forwards this to the SAP PO system.
Only connect through the HTTPS protocol and only access specific URLs. This will limit potential security
threats.
The attacker needs to get hold of the Reverse Proxy server in order to use the access to gain more
control of the data.
SAP POFirewall Reverse
Proxy
SAP Cloud Open on one port
DANIEL GRAVERSEN DGR@FIGAF.COM 8
Poor Man’s Reverse Proxy
The ICM from the NWA is configured in such a way that it will only allow one URL to be handled on the
server. No other URLs are allowed.
SAP PO
Use ICM
FirewallSAP Cloud Open on one port
DANIEL GRAVERSEN DGR@FIGAF.COM 9
ICM Filtering
In order to filter request a rule, it has to be configured in
usrsapPODSYSglobalsecuritydataicm_filter_rules.txt
The request will only be allowed through the PI soap adapter. All other requests
will be rejected.
if %{SERVER_PORT} stricmp 443 [AND]
if %{PATH_TRANSLATED} !regimatch /XISOAPAdapter.*
RegForbiddenUrl ^/(.*) -
Could probably extend with sender system.
DANIEL GRAVERSEN DGR@FIGAF.COM 10
SAP Package
It is placed in 3 components of the software that should be imported.
Integration scenarios are shown in the flow chart.
Master data contains 3 IDOCs in both directions (inbound and outbound).
There is also a scenario for sales data.
External numbering should be configured in SAP.
This is currently not in our scope.
DANIEL GRAVERSEN DGR@FIGAF.COM 11
Custom Fields
Many companies have their own attributes on objects.
The C4C system is flexible and allows the addition of new fields
Can be done without programming in the case of simple fields.
DANIEL GRAVERSEN DGR@FIGAF.COM 12
Enhancing the UI
The standard interface can be enhanced with custom fields without any coding.
[SCRREN]
DANIEL GRAVERSEN DGR@FIGAF.COM 13
Enhancing Interfaces
Add the desired field to the relevant web services.
DANIEL GRAVERSEN DGR@FIGAF.COM 14
Coding
It is possible to enhance applications by adding or enhancing a different business object.
The SAP Cloud Applications Studio uses a Visual Studio plugin for this process.
It is possible to create and enhance screens, web services and other kinds of logic.
There are some great tutorials for figuring out how to create different objects.
The project did not require dealing with this, since enhancement performed by only adding fields could
be done using the interface.
DANIEL GRAVERSEN DGR@FIGAF.COM 15
From C4C to Third Party
C4C SAP PO
Customer
Address
Contacts (ignored)
BPMN3PL
Query Accout
Create/update Customer
Account response
Create/update Response
UpdateCustomer with 3PLid
Updateignores
Create/UpdateContacts
Create/UpdateResponse
Updatecontact with 3PLid
Updateignores
Repeat for each contact
One change updates all
objects.
Query of the contact
gives all required
information for update.
Update 3PL id back to
cloud system.
DANIEL GRAVERSEN DGR@FIGAF.COM 16
Create Customer from Third Party
C4C SAP PO
Customer
Create Customer
BPMN3PL
Query Accout
Account response
UpdateCustomer with all info
Updateignores
Custom create response
Signal not to update 3PL
DANIEL GRAVERSEN DGR@FIGAF.COM 17
Contact Update
C4C SAP PO
Contact Create/update
BPMN3PL
Query Accout
Account response
Updatecontact with allinfo
Updateresponse
Contact response
Need the
contact address
DANIEL GRAVERSEN DGR@FIGAF.COM 18
Update Messages
The create customer message is sent each time the customer is modified. It consists of 3 messages:
● Customer
● Main Address
● Contact persons
In our case, this trigger starts the process of updating the message.
● Change the customer
● Update the address
● Add/change a contact
● Modify using web service
We were about to filter out the web service requests.
DANIEL GRAVERSEN DGR@FIGAF.COM 19
Numbering of Customers
Customers created in SAP will have the following numbers:
Internal number 100000 as default - but it can be changed.
Customers created using the create customer API must have either or both:
● Internal ID in a predefined range of 200000 or a-xxxxxx
● External number
An external number can range up to 700000000, therefore it must be created in SAP as external
numbering.
DANIEL GRAVERSEN DGR@FIGAF.COM 20
Update on Customer Object
Updates to the cloud system on an account will trigger the change message.
I would like a way of knowing how to trigger the update. This would allow me to determine if the
update had been made by a user or the interface.
Is performed using signals between the BPM processes
DANIEL GRAVERSEN DGR@FIGAF.COM 21
3. Monitoring Locations
DANIEL GRAVERSEN DGR@FIGAF.COM 22
It is delayed by 10-15
minutes
DANIEL GRAVERSEN DGR@FIGAF.COM 23
DANIEL GRAVERSEN DGR@FIGAF.COM 24
DANIEL GRAVERSEN DGR@FIGAF.COM 25
Wishes
Information about who changed the data
Better masterdata
◦ Make sure that SAP numbers was uptodate
DANIEL GRAVERSEN DGR@FIGAF.COM 26
DANIEL GRAVERSEN DGR@FIGAF.COM 27
-Feedback-
Please leave a comment
DANIEL GRAVERSEN DGR@FIGAF.COM 28
Links
Help and release notes
http://help.sap.com/cloud4customer
SAP Community Network
http://scn.sap.com/community/cloud-for-customer
Enhance UI and web services
http://www.sdn.sap.com/irj/scn/go/portal/prtroot/docs/library/uuid/10c2c67e-05b1-3110-9888-
d407b5c8e6ca
SAP Cloud Applications Studio guides
http://scn.sap.com/community/business-bydesign/studio
DANIEL GRAVERSEN DGR@FIGAF.COM 29

More Related Content

What's hot

Azure Purview Data Toboggan Erwin de Kreuk
Azure Purview Data Toboggan Erwin de KreukAzure Purview Data Toboggan Erwin de Kreuk
Azure Purview Data Toboggan Erwin de KreukErwin de Kreuk
 
Salesforce Presentation
Salesforce PresentationSalesforce Presentation
Salesforce PresentationChetna Purohit
 
Salesforce Integration Pattern Overview
Salesforce Integration Pattern OverviewSalesforce Integration Pattern Overview
Salesforce Integration Pattern OverviewDhanik Sahni
 
Object Storage Overview
Object Storage OverviewObject Storage Overview
Object Storage OverviewCloudian
 
Mobile Device Management for Office 365 - Atidan
Mobile Device Management for Office 365 - AtidanMobile Device Management for Office 365 - Atidan
Mobile Device Management for Office 365 - AtidanDavid J Rosenthal
 
Sharepoint Overview
Sharepoint OverviewSharepoint Overview
Sharepoint OverviewVinh Nguyen
 
A Comprehensive Guide to Salesforce Field Service
A Comprehensive Guide to Salesforce Field Service A Comprehensive Guide to Salesforce Field Service
A Comprehensive Guide to Salesforce Field Service Cloud Analogy
 
Microsoft Dynamics CRM Multi - Tier Architecture
Microsoft Dynamics CRM Multi - Tier ArchitectureMicrosoft Dynamics CRM Multi - Tier Architecture
Microsoft Dynamics CRM Multi - Tier ArchitectureNaveen Kumar
 
Sharing and setting in salesforce
Sharing and setting in salesforceSharing and setting in salesforce
Sharing and setting in salesforceVishesh Singhal
 
Microsoft Information Protection: Your Security and Compliance Framework
Microsoft Information Protection: Your Security and Compliance FrameworkMicrosoft Information Protection: Your Security and Compliance Framework
Microsoft Information Protection: Your Security and Compliance FrameworkAlistair Pugin
 
Introduction to Salesforce | Salesforce Tutorial for Beginners | Salesforce T...
Introduction to Salesforce | Salesforce Tutorial for Beginners | Salesforce T...Introduction to Salesforce | Salesforce Tutorial for Beginners | Salesforce T...
Introduction to Salesforce | Salesforce Tutorial for Beginners | Salesforce T...Edureka!
 
SAP Business One Integration Problems and Solutions - DI server DI API B1WS
SAP Business One Integration Problems and Solutions - DI server DI API B1WSSAP Business One Integration Problems and Solutions - DI server DI API B1WS
SAP Business One Integration Problems and Solutions - DI server DI API B1WSAPPSeCONNECT
 
Project Tracker App - Model Driven Apps
Project Tracker App - Model Driven AppsProject Tracker App - Model Driven Apps
Project Tracker App - Model Driven AppsSachchin Annam
 
Secure Your Salesforce Org with Two-Factor Authentication
Secure Your Salesforce Org with Two-Factor AuthenticationSecure Your Salesforce Org with Two-Factor Authentication
Secure Your Salesforce Org with Two-Factor AuthenticationSalesforce Admins
 
Introduction to extracting data from sap s 4 hana with abap cds views
Introduction to extracting data from sap s 4 hana with abap cds viewsIntroduction to extracting data from sap s 4 hana with abap cds views
Introduction to extracting data from sap s 4 hana with abap cds viewsLuc Vanrobays
 
Microsoft Azure Information Protection
Microsoft Azure Information Protection Microsoft Azure Information Protection
Microsoft Azure Information Protection Syed Sabhi Haider
 

What's hot (20)

Active Directory Training
Active Directory TrainingActive Directory Training
Active Directory Training
 
Azure Purview Data Toboggan Erwin de Kreuk
Azure Purview Data Toboggan Erwin de KreukAzure Purview Data Toboggan Erwin de Kreuk
Azure Purview Data Toboggan Erwin de Kreuk
 
Salesforce Presentation
Salesforce PresentationSalesforce Presentation
Salesforce Presentation
 
Microsoft Dynamics 365 for customer services
Microsoft Dynamics 365 for customer servicesMicrosoft Dynamics 365 for customer services
Microsoft Dynamics 365 for customer services
 
Salesforce Integration Pattern Overview
Salesforce Integration Pattern OverviewSalesforce Integration Pattern Overview
Salesforce Integration Pattern Overview
 
Object Storage Overview
Object Storage OverviewObject Storage Overview
Object Storage Overview
 
Mobile Device Management for Office 365 - Atidan
Mobile Device Management for Office 365 - AtidanMobile Device Management for Office 365 - Atidan
Mobile Device Management for Office 365 - Atidan
 
Sharepoint Overview
Sharepoint OverviewSharepoint Overview
Sharepoint Overview
 
A Comprehensive Guide to Salesforce Field Service
A Comprehensive Guide to Salesforce Field Service A Comprehensive Guide to Salesforce Field Service
A Comprehensive Guide to Salesforce Field Service
 
Microsoft Dynamics CRM Multi - Tier Architecture
Microsoft Dynamics CRM Multi - Tier ArchitectureMicrosoft Dynamics CRM Multi - Tier Architecture
Microsoft Dynamics CRM Multi - Tier Architecture
 
Sharing and setting in salesforce
Sharing and setting in salesforceSharing and setting in salesforce
Sharing and setting in salesforce
 
Microsoft Information Protection: Your Security and Compliance Framework
Microsoft Information Protection: Your Security and Compliance FrameworkMicrosoft Information Protection: Your Security and Compliance Framework
Microsoft Information Protection: Your Security and Compliance Framework
 
Introduction to Salesforce | Salesforce Tutorial for Beginners | Salesforce T...
Introduction to Salesforce | Salesforce Tutorial for Beginners | Salesforce T...Introduction to Salesforce | Salesforce Tutorial for Beginners | Salesforce T...
Introduction to Salesforce | Salesforce Tutorial for Beginners | Salesforce T...
 
SAP Business One Integration Problems and Solutions - DI server DI API B1WS
SAP Business One Integration Problems and Solutions - DI server DI API B1WSSAP Business One Integration Problems and Solutions - DI server DI API B1WS
SAP Business One Integration Problems and Solutions - DI server DI API B1WS
 
Project Tracker App - Model Driven Apps
Project Tracker App - Model Driven AppsProject Tracker App - Model Driven Apps
Project Tracker App - Model Driven Apps
 
Azure Sentinel.pptx
Azure Sentinel.pptxAzure Sentinel.pptx
Azure Sentinel.pptx
 
Secure Your Salesforce Org with Two-Factor Authentication
Secure Your Salesforce Org with Two-Factor AuthenticationSecure Your Salesforce Org with Two-Factor Authentication
Secure Your Salesforce Org with Two-Factor Authentication
 
Introduction to extracting data from sap s 4 hana with abap cds views
Introduction to extracting data from sap s 4 hana with abap cds viewsIntroduction to extracting data from sap s 4 hana with abap cds views
Introduction to extracting data from sap s 4 hana with abap cds views
 
Fortinet k
Fortinet kFortinet k
Fortinet k
 
Microsoft Azure Information Protection
Microsoft Azure Information Protection Microsoft Azure Information Protection
Microsoft Azure Information Protection
 

Similar to C4C integration with SAP PI/PO

APIdays Paris 2019 - Data APIs as a service: Focusing on your core business w...
APIdays Paris 2019 - Data APIs as a service: Focusing on your core business w...APIdays Paris 2019 - Data APIs as a service: Focusing on your core business w...
APIdays Paris 2019 - Data APIs as a service: Focusing on your core business w...apidays
 
Overview and Walkthrough of the Application Programming Model with SAP Cloud ...
Overview and Walkthrough of the Application Programming Model with SAP Cloud ...Overview and Walkthrough of the Application Programming Model with SAP Cloud ...
Overview and Walkthrough of the Application Programming Model with SAP Cloud ...SAP Cloud Platform
 
Converting Your Existing SAP Server Infrastructure to a Modern Cloud-Based Ar...
Converting Your Existing SAP Server Infrastructure to a Modern Cloud-Based Ar...Converting Your Existing SAP Server Infrastructure to a Modern Cloud-Based Ar...
Converting Your Existing SAP Server Infrastructure to a Modern Cloud-Based Ar...PT Datacomm Diangraha
 
SAP HANA Cloud: From Your Datacenter to the Cloud and Back
SAP HANA Cloud: From Your Datacenter to the Cloud and Back  SAP HANA Cloud: From Your Datacenter to the Cloud and Back
SAP HANA Cloud: From Your Datacenter to the Cloud and Back SAP HANA Cloud Platform
 
Using IBM DataPower for rapid security and application integration with an op...
Using IBM DataPower for rapid security and application integration with an op...Using IBM DataPower for rapid security and application integration with an op...
Using IBM DataPower for rapid security and application integration with an op...Gennadiy Civil
 
Serverless service adoption for Thailand
Serverless service adoption for ThailandServerless service adoption for Thailand
Serverless service adoption for ThailandWatcharin Yang-Ngam
 
What’s new in SAP Cloud Platform Workflow – summer edition 2019
What’s new in SAP Cloud Platform Workflow – summer edition 2019What’s new in SAP Cloud Platform Workflow – summer edition 2019
What’s new in SAP Cloud Platform Workflow – summer edition 2019SAP Cloud Platform
 
Dynamics Day 2013 Microsoft Dynamics NAV Product Update and Roadmap
Dynamics Day 2013 Microsoft Dynamics NAV Product Update and RoadmapDynamics Day 2013 Microsoft Dynamics NAV Product Update and Roadmap
Dynamics Day 2013 Microsoft Dynamics NAV Product Update and RoadmapIntergen
 
Integration for Microsoft Dynamics CRM and Microsoft Dynamics NAV
Integration for Microsoft Dynamics CRM and Microsoft Dynamics NAVIntegration for Microsoft Dynamics CRM and Microsoft Dynamics NAV
Integration for Microsoft Dynamics CRM and Microsoft Dynamics NAVScribe Software Corp.
 
Power apps portal out for public review
Power apps portal  out for public reviewPower apps portal  out for public review
Power apps portal out for public reviewConcetto Labs
 
Preparing_for_PCA_Workbook.pptx
Preparing_for_PCA_Workbook.pptxPreparing_for_PCA_Workbook.pptx
Preparing_for_PCA_Workbook.pptxmambrino
 
Preparing_for_PCA_Workbook.pptx
Preparing_for_PCA_Workbook.pptxPreparing_for_PCA_Workbook.pptx
Preparing_for_PCA_Workbook.pptxmichaeljayaraj1
 
Sit tokyo 17-03-2021-commerce and kyma
Sit tokyo 17-03-2021-commerce and kymaSit tokyo 17-03-2021-commerce and kyma
Sit tokyo 17-03-2021-commerce and kymaMuneendra Yeddala
 
SAP Hybris Cloud for Customer Integration Scenarios and Best-Practices Overview
SAP Hybris Cloud for Customer Integration Scenarios and Best-Practices OverviewSAP Hybris Cloud for Customer Integration Scenarios and Best-Practices Overview
SAP Hybris Cloud for Customer Integration Scenarios and Best-Practices OverviewSAP Customer Experience
 
SAP Cloud Platform for SAP S/4HANA: Accelerate your move to an Intelligent En...
SAP Cloud Platform for SAP S/4HANA: Accelerate your move to an Intelligent En...SAP Cloud Platform for SAP S/4HANA: Accelerate your move to an Intelligent En...
SAP Cloud Platform for SAP S/4HANA: Accelerate your move to an Intelligent En...SAP Technology
 
Anypoint DataGraph - Consume & Re-use your APIs faster | MuleSoft Mysore Meet...
Anypoint DataGraph - Consume & Re-use your APIs faster | MuleSoft Mysore Meet...Anypoint DataGraph - Consume & Re-use your APIs faster | MuleSoft Mysore Meet...
Anypoint DataGraph - Consume & Re-use your APIs faster | MuleSoft Mysore Meet...MysoreMuleSoftMeetup
 
SAP Integration for Supply Chain Management
SAP Integration for Supply Chain ManagementSAP Integration for Supply Chain Management
SAP Integration for Supply Chain ManagementSrinivasan Rajagopalan
 
Di api di server b1 ws
Di api di server b1 wsDi api di server b1 ws
Di api di server b1 wsAbhishek Sur
 
Empower Sales with SAP Hybris Cloud for Customer
Empower Sales with SAP Hybris Cloud for CustomerEmpower Sales with SAP Hybris Cloud for Customer
Empower Sales with SAP Hybris Cloud for CustomerSAP Customer Experience
 

Similar to C4C integration with SAP PI/PO (20)

APIdays Paris 2019 - Data APIs as a service: Focusing on your core business w...
APIdays Paris 2019 - Data APIs as a service: Focusing on your core business w...APIdays Paris 2019 - Data APIs as a service: Focusing on your core business w...
APIdays Paris 2019 - Data APIs as a service: Focusing on your core business w...
 
Overview and Walkthrough of the Application Programming Model with SAP Cloud ...
Overview and Walkthrough of the Application Programming Model with SAP Cloud ...Overview and Walkthrough of the Application Programming Model with SAP Cloud ...
Overview and Walkthrough of the Application Programming Model with SAP Cloud ...
 
Converting Your Existing SAP Server Infrastructure to a Modern Cloud-Based Ar...
Converting Your Existing SAP Server Infrastructure to a Modern Cloud-Based Ar...Converting Your Existing SAP Server Infrastructure to a Modern Cloud-Based Ar...
Converting Your Existing SAP Server Infrastructure to a Modern Cloud-Based Ar...
 
SAP HANA Cloud: From Your Datacenter to the Cloud and Back
SAP HANA Cloud: From Your Datacenter to the Cloud and Back  SAP HANA Cloud: From Your Datacenter to the Cloud and Back
SAP HANA Cloud: From Your Datacenter to the Cloud and Back
 
Using IBM DataPower for rapid security and application integration with an op...
Using IBM DataPower for rapid security and application integration with an op...Using IBM DataPower for rapid security and application integration with an op...
Using IBM DataPower for rapid security and application integration with an op...
 
Serverless service adoption for Thailand
Serverless service adoption for ThailandServerless service adoption for Thailand
Serverless service adoption for Thailand
 
What’s new in SAP Cloud Platform Workflow – summer edition 2019
What’s new in SAP Cloud Platform Workflow – summer edition 2019What’s new in SAP Cloud Platform Workflow – summer edition 2019
What’s new in SAP Cloud Platform Workflow – summer edition 2019
 
Dynamics Day 2013 Microsoft Dynamics NAV Product Update and Roadmap
Dynamics Day 2013 Microsoft Dynamics NAV Product Update and RoadmapDynamics Day 2013 Microsoft Dynamics NAV Product Update and Roadmap
Dynamics Day 2013 Microsoft Dynamics NAV Product Update and Roadmap
 
Integration for Microsoft Dynamics CRM and Microsoft Dynamics NAV
Integration for Microsoft Dynamics CRM and Microsoft Dynamics NAVIntegration for Microsoft Dynamics CRM and Microsoft Dynamics NAV
Integration for Microsoft Dynamics CRM and Microsoft Dynamics NAV
 
Power apps portal out for public review
Power apps portal  out for public reviewPower apps portal  out for public review
Power apps portal out for public review
 
Preparing_for_PCA_Workbook.pptx
Preparing_for_PCA_Workbook.pptxPreparing_for_PCA_Workbook.pptx
Preparing_for_PCA_Workbook.pptx
 
Preparing_for_PCA_Workbook.pptx
Preparing_for_PCA_Workbook.pptxPreparing_for_PCA_Workbook.pptx
Preparing_for_PCA_Workbook.pptx
 
Sit tokyo 17-03-2021-commerce and kyma
Sit tokyo 17-03-2021-commerce and kymaSit tokyo 17-03-2021-commerce and kyma
Sit tokyo 17-03-2021-commerce and kyma
 
SAP Hybris Cloud for Customer Integration Scenarios and Best-Practices Overview
SAP Hybris Cloud for Customer Integration Scenarios and Best-Practices OverviewSAP Hybris Cloud for Customer Integration Scenarios and Best-Practices Overview
SAP Hybris Cloud for Customer Integration Scenarios and Best-Practices Overview
 
Microsoft Technical Webinar: Doing more with MS Office, SharePoint and Visual...
Microsoft Technical Webinar: Doing more with MS Office, SharePoint and Visual...Microsoft Technical Webinar: Doing more with MS Office, SharePoint and Visual...
Microsoft Technical Webinar: Doing more with MS Office, SharePoint and Visual...
 
SAP Cloud Platform for SAP S/4HANA: Accelerate your move to an Intelligent En...
SAP Cloud Platform for SAP S/4HANA: Accelerate your move to an Intelligent En...SAP Cloud Platform for SAP S/4HANA: Accelerate your move to an Intelligent En...
SAP Cloud Platform for SAP S/4HANA: Accelerate your move to an Intelligent En...
 
Anypoint DataGraph - Consume & Re-use your APIs faster | MuleSoft Mysore Meet...
Anypoint DataGraph - Consume & Re-use your APIs faster | MuleSoft Mysore Meet...Anypoint DataGraph - Consume & Re-use your APIs faster | MuleSoft Mysore Meet...
Anypoint DataGraph - Consume & Re-use your APIs faster | MuleSoft Mysore Meet...
 
SAP Integration for Supply Chain Management
SAP Integration for Supply Chain ManagementSAP Integration for Supply Chain Management
SAP Integration for Supply Chain Management
 
Di api di server b1 ws
Di api di server b1 wsDi api di server b1 ws
Di api di server b1 ws
 
Empower Sales with SAP Hybris Cloud for Customer
Empower Sales with SAP Hybris Cloud for CustomerEmpower Sales with SAP Hybris Cloud for Customer
Empower Sales with SAP Hybris Cloud for Customer
 

More from Daniel Graversen

DevOps for SAP CPI presentation
DevOps for SAP CPI presentationDevOps for SAP CPI presentation
DevOps for SAP CPI presentationDaniel Graversen
 
Simplify your SAP CPI development with Figaf
Simplify your SAP CPI development with FigafSimplify your SAP CPI development with Figaf
Simplify your SAP CPI development with FigafDaniel Graversen
 
How automate your SAP PI/PO/CPI and API management processes
How automate your SAP PI/PO/CPI and API management processesHow automate your SAP PI/PO/CPI and API management processes
How automate your SAP PI/PO/CPI and API management processesDaniel Graversen
 
How figaf help your business with SAP PI/PO/CPI
How figaf help your business with SAP PI/PO/CPIHow figaf help your business with SAP PI/PO/CPI
How figaf help your business with SAP PI/PO/CPIDaniel Graversen
 
Figaf pi auto migration 20191024 webinar
Figaf pi auto migration 20191024 webinarFigaf pi auto migration 20191024 webinar
Figaf pi auto migration 20191024 webinarDaniel Graversen
 
Automate SAP PI/PO Migration
Automate SAP PI/PO Migration Automate SAP PI/PO Migration
Automate SAP PI/PO Migration Daniel Graversen
 
Lessons learned during SAP CPI and API mgt projects
Lessons learned during SAP CPI and API mgt projects Lessons learned during SAP CPI and API mgt projects
Lessons learned during SAP CPI and API mgt projects Daniel Graversen
 
Figaf irt testing webinar 201903
Figaf irt testing webinar 201903Figaf irt testing webinar 201903
Figaf irt testing webinar 201903Daniel Graversen
 
How to build a businesscase for testing SAP PI/PO
How to build a businesscase for testing SAP PI/POHow to build a businesscase for testing SAP PI/PO
How to build a businesscase for testing SAP PI/PODaniel Graversen
 
How to do a SAP PI/PO Migration 2019
How to do a SAP PI/PO Migration 2019 How to do a SAP PI/PO Migration 2019
How to do a SAP PI/PO Migration 2019 Daniel Graversen
 
How to go about your SAP Integration 2019, SAP PI, and cloud
How to go about your SAP Integration 2019, SAP PI, and cloudHow to go about your SAP Integration 2019, SAP PI, and cloud
How to go about your SAP Integration 2019, SAP PI, and cloudDaniel Graversen
 
Sap open connectors #sitcph
Sap open connectors #sitcphSap open connectors #sitcph
Sap open connectors #sitcphDaniel Graversen
 
Key takeaways for SAP PI Integration 2018
Key takeaways for SAP PI Integration 2018Key takeaways for SAP PI Integration 2018
Key takeaways for SAP PI Integration 2018Daniel Graversen
 
How to speed up your SAP PI/CPI development
How to speed up your SAP PI/CPI developmentHow to speed up your SAP PI/CPI development
How to speed up your SAP PI/CPI developmentDaniel Graversen
 
Why Test SAP PI/PO after any upgrade
Why Test SAP PI/PO after any upgradeWhy Test SAP PI/PO after any upgrade
Why Test SAP PI/PO after any upgradeDaniel Graversen
 
The current state of SAP Integration, SAPPHIRENOW 2018
The current state of SAP Integration, SAPPHIRENOW 2018The current state of SAP Integration, SAPPHIRENOW 2018
The current state of SAP Integration, SAPPHIRENOW 2018Daniel Graversen
 
IFG for SAP Integration, webinar on Automated Testing
IFG for SAP Integration, webinar on Automated TestingIFG for SAP Integration, webinar on Automated Testing
IFG for SAP Integration, webinar on Automated TestingDaniel Graversen
 
Why your SAP PI/PO system should be updated
Why your SAP PI/PO system should be updatedWhy your SAP PI/PO system should be updated
Why your SAP PI/PO system should be updatedDaniel Graversen
 
Anadarko Testing SAP PI/PO
Anadarko Testing SAP PI/POAnadarko Testing SAP PI/PO
Anadarko Testing SAP PI/PODaniel Graversen
 

More from Daniel Graversen (20)

DevOps for SAP CPI presentation
DevOps for SAP CPI presentationDevOps for SAP CPI presentation
DevOps for SAP CPI presentation
 
Simplify your SAP CPI development with Figaf
Simplify your SAP CPI development with FigafSimplify your SAP CPI development with Figaf
Simplify your SAP CPI development with Figaf
 
How automate your SAP PI/PO/CPI and API management processes
How automate your SAP PI/PO/CPI and API management processesHow automate your SAP PI/PO/CPI and API management processes
How automate your SAP PI/PO/CPI and API management processes
 
How figaf help your business with SAP PI/PO/CPI
How figaf help your business with SAP PI/PO/CPIHow figaf help your business with SAP PI/PO/CPI
How figaf help your business with SAP PI/PO/CPI
 
Figaf pi auto migration 20191024 webinar
Figaf pi auto migration 20191024 webinarFigaf pi auto migration 20191024 webinar
Figaf pi auto migration 20191024 webinar
 
Automate SAP PI/PO Migration
Automate SAP PI/PO Migration Automate SAP PI/PO Migration
Automate SAP PI/PO Migration
 
Figaf IRT for SAP CPI
Figaf IRT for SAP CPIFigaf IRT for SAP CPI
Figaf IRT for SAP CPI
 
Lessons learned during SAP CPI and API mgt projects
Lessons learned during SAP CPI and API mgt projects Lessons learned during SAP CPI and API mgt projects
Lessons learned during SAP CPI and API mgt projects
 
Figaf irt testing webinar 201903
Figaf irt testing webinar 201903Figaf irt testing webinar 201903
Figaf irt testing webinar 201903
 
How to build a businesscase for testing SAP PI/PO
How to build a businesscase for testing SAP PI/POHow to build a businesscase for testing SAP PI/PO
How to build a businesscase for testing SAP PI/PO
 
How to do a SAP PI/PO Migration 2019
How to do a SAP PI/PO Migration 2019 How to do a SAP PI/PO Migration 2019
How to do a SAP PI/PO Migration 2019
 
How to go about your SAP Integration 2019, SAP PI, and cloud
How to go about your SAP Integration 2019, SAP PI, and cloudHow to go about your SAP Integration 2019, SAP PI, and cloud
How to go about your SAP Integration 2019, SAP PI, and cloud
 
Sap open connectors #sitcph
Sap open connectors #sitcphSap open connectors #sitcph
Sap open connectors #sitcph
 
Key takeaways for SAP PI Integration 2018
Key takeaways for SAP PI Integration 2018Key takeaways for SAP PI Integration 2018
Key takeaways for SAP PI Integration 2018
 
How to speed up your SAP PI/CPI development
How to speed up your SAP PI/CPI developmentHow to speed up your SAP PI/CPI development
How to speed up your SAP PI/CPI development
 
Why Test SAP PI/PO after any upgrade
Why Test SAP PI/PO after any upgradeWhy Test SAP PI/PO after any upgrade
Why Test SAP PI/PO after any upgrade
 
The current state of SAP Integration, SAPPHIRENOW 2018
The current state of SAP Integration, SAPPHIRENOW 2018The current state of SAP Integration, SAPPHIRENOW 2018
The current state of SAP Integration, SAPPHIRENOW 2018
 
IFG for SAP Integration, webinar on Automated Testing
IFG for SAP Integration, webinar on Automated TestingIFG for SAP Integration, webinar on Automated Testing
IFG for SAP Integration, webinar on Automated Testing
 
Why your SAP PI/PO system should be updated
Why your SAP PI/PO system should be updatedWhy your SAP PI/PO system should be updated
Why your SAP PI/PO system should be updated
 
Anadarko Testing SAP PI/PO
Anadarko Testing SAP PI/POAnadarko Testing SAP PI/PO
Anadarko Testing SAP PI/PO
 

Recently uploaded

Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...
Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...
Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...Drew Madelung
 
Axa Assurance Maroc - Insurer Innovation Award 2024
Axa Assurance Maroc - Insurer Innovation Award 2024Axa Assurance Maroc - Insurer Innovation Award 2024
Axa Assurance Maroc - Insurer Innovation Award 2024The Digital Insurer
 
Real Time Object Detection Using Open CV
Real Time Object Detection Using Open CVReal Time Object Detection Using Open CV
Real Time Object Detection Using Open CVKhem
 
How to convert PDF to text with Nanonets
How to convert PDF to text with NanonetsHow to convert PDF to text with Nanonets
How to convert PDF to text with Nanonetsnaman860154
 
[2024]Digital Global Overview Report 2024 Meltwater.pdf
[2024]Digital Global Overview Report 2024 Meltwater.pdf[2024]Digital Global Overview Report 2024 Meltwater.pdf
[2024]Digital Global Overview Report 2024 Meltwater.pdfhans926745
 
Finology Group – Insurtech Innovation Award 2024
Finology Group – Insurtech Innovation Award 2024Finology Group – Insurtech Innovation Award 2024
Finology Group – Insurtech Innovation Award 2024The Digital Insurer
 
Advantages of Hiring UIUX Design Service Providers for Your Business
Advantages of Hiring UIUX Design Service Providers for Your BusinessAdvantages of Hiring UIUX Design Service Providers for Your Business
Advantages of Hiring UIUX Design Service Providers for Your BusinessPixlogix Infotech
 
A Year of the Servo Reboot: Where Are We Now?
A Year of the Servo Reboot: Where Are We Now?A Year of the Servo Reboot: Where Are We Now?
A Year of the Servo Reboot: Where Are We Now?Igalia
 
2024: Domino Containers - The Next Step. News from the Domino Container commu...
2024: Domino Containers - The Next Step. News from the Domino Container commu...2024: Domino Containers - The Next Step. News from the Domino Container commu...
2024: Domino Containers - The Next Step. News from the Domino Container commu...Martijn de Jong
 
EIS-Webinar-Prompt-Knowledge-Eng-2024-04-08.pptx
EIS-Webinar-Prompt-Knowledge-Eng-2024-04-08.pptxEIS-Webinar-Prompt-Knowledge-Eng-2024-04-08.pptx
EIS-Webinar-Prompt-Knowledge-Eng-2024-04-08.pptxEarley Information Science
 
08448380779 Call Girls In Greater Kailash - I Women Seeking Men
08448380779 Call Girls In Greater Kailash - I Women Seeking Men08448380779 Call Girls In Greater Kailash - I Women Seeking Men
08448380779 Call Girls In Greater Kailash - I Women Seeking MenDelhi Call girls
 
IAC 2024 - IA Fast Track to Search Focused AI Solutions
IAC 2024 - IA Fast Track to Search Focused AI SolutionsIAC 2024 - IA Fast Track to Search Focused AI Solutions
IAC 2024 - IA Fast Track to Search Focused AI SolutionsEnterprise Knowledge
 
How to Troubleshoot Apps for the Modern Connected Worker
How to Troubleshoot Apps for the Modern Connected WorkerHow to Troubleshoot Apps for the Modern Connected Worker
How to Troubleshoot Apps for the Modern Connected WorkerThousandEyes
 
Workshop - Best of Both Worlds_ Combine KG and Vector search for enhanced R...
Workshop - Best of Both Worlds_ Combine  KG and Vector search for  enhanced R...Workshop - Best of Both Worlds_ Combine  KG and Vector search for  enhanced R...
Workshop - Best of Both Worlds_ Combine KG and Vector search for enhanced R...Neo4j
 
GenCyber Cyber Security Day Presentation
GenCyber Cyber Security Day PresentationGenCyber Cyber Security Day Presentation
GenCyber Cyber Security Day PresentationMichael W. Hawkins
 
Powerful Google developer tools for immediate impact! (2023-24 C)
Powerful Google developer tools for immediate impact! (2023-24 C)Powerful Google developer tools for immediate impact! (2023-24 C)
Powerful Google developer tools for immediate impact! (2023-24 C)wesley chun
 
A Call to Action for Generative AI in 2024
A Call to Action for Generative AI in 2024A Call to Action for Generative AI in 2024
A Call to Action for Generative AI in 2024Results
 
Histor y of HAM Radio presentation slide
Histor y of HAM Radio presentation slideHistor y of HAM Radio presentation slide
Histor y of HAM Radio presentation slidevu2urc
 
The 7 Things I Know About Cyber Security After 25 Years | April 2024
The 7 Things I Know About Cyber Security After 25 Years | April 2024The 7 Things I Know About Cyber Security After 25 Years | April 2024
The 7 Things I Know About Cyber Security After 25 Years | April 2024Rafal Los
 
A Domino Admins Adventures (Engage 2024)
A Domino Admins Adventures (Engage 2024)A Domino Admins Adventures (Engage 2024)
A Domino Admins Adventures (Engage 2024)Gabriella Davis
 

Recently uploaded (20)

Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...
Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...
Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...
 
Axa Assurance Maroc - Insurer Innovation Award 2024
Axa Assurance Maroc - Insurer Innovation Award 2024Axa Assurance Maroc - Insurer Innovation Award 2024
Axa Assurance Maroc - Insurer Innovation Award 2024
 
Real Time Object Detection Using Open CV
Real Time Object Detection Using Open CVReal Time Object Detection Using Open CV
Real Time Object Detection Using Open CV
 
How to convert PDF to text with Nanonets
How to convert PDF to text with NanonetsHow to convert PDF to text with Nanonets
How to convert PDF to text with Nanonets
 
[2024]Digital Global Overview Report 2024 Meltwater.pdf
[2024]Digital Global Overview Report 2024 Meltwater.pdf[2024]Digital Global Overview Report 2024 Meltwater.pdf
[2024]Digital Global Overview Report 2024 Meltwater.pdf
 
Finology Group – Insurtech Innovation Award 2024
Finology Group – Insurtech Innovation Award 2024Finology Group – Insurtech Innovation Award 2024
Finology Group – Insurtech Innovation Award 2024
 
Advantages of Hiring UIUX Design Service Providers for Your Business
Advantages of Hiring UIUX Design Service Providers for Your BusinessAdvantages of Hiring UIUX Design Service Providers for Your Business
Advantages of Hiring UIUX Design Service Providers for Your Business
 
A Year of the Servo Reboot: Where Are We Now?
A Year of the Servo Reboot: Where Are We Now?A Year of the Servo Reboot: Where Are We Now?
A Year of the Servo Reboot: Where Are We Now?
 
2024: Domino Containers - The Next Step. News from the Domino Container commu...
2024: Domino Containers - The Next Step. News from the Domino Container commu...2024: Domino Containers - The Next Step. News from the Domino Container commu...
2024: Domino Containers - The Next Step. News from the Domino Container commu...
 
EIS-Webinar-Prompt-Knowledge-Eng-2024-04-08.pptx
EIS-Webinar-Prompt-Knowledge-Eng-2024-04-08.pptxEIS-Webinar-Prompt-Knowledge-Eng-2024-04-08.pptx
EIS-Webinar-Prompt-Knowledge-Eng-2024-04-08.pptx
 
08448380779 Call Girls In Greater Kailash - I Women Seeking Men
08448380779 Call Girls In Greater Kailash - I Women Seeking Men08448380779 Call Girls In Greater Kailash - I Women Seeking Men
08448380779 Call Girls In Greater Kailash - I Women Seeking Men
 
IAC 2024 - IA Fast Track to Search Focused AI Solutions
IAC 2024 - IA Fast Track to Search Focused AI SolutionsIAC 2024 - IA Fast Track to Search Focused AI Solutions
IAC 2024 - IA Fast Track to Search Focused AI Solutions
 
How to Troubleshoot Apps for the Modern Connected Worker
How to Troubleshoot Apps for the Modern Connected WorkerHow to Troubleshoot Apps for the Modern Connected Worker
How to Troubleshoot Apps for the Modern Connected Worker
 
Workshop - Best of Both Worlds_ Combine KG and Vector search for enhanced R...
Workshop - Best of Both Worlds_ Combine  KG and Vector search for  enhanced R...Workshop - Best of Both Worlds_ Combine  KG and Vector search for  enhanced R...
Workshop - Best of Both Worlds_ Combine KG and Vector search for enhanced R...
 
GenCyber Cyber Security Day Presentation
GenCyber Cyber Security Day PresentationGenCyber Cyber Security Day Presentation
GenCyber Cyber Security Day Presentation
 
Powerful Google developer tools for immediate impact! (2023-24 C)
Powerful Google developer tools for immediate impact! (2023-24 C)Powerful Google developer tools for immediate impact! (2023-24 C)
Powerful Google developer tools for immediate impact! (2023-24 C)
 
A Call to Action for Generative AI in 2024
A Call to Action for Generative AI in 2024A Call to Action for Generative AI in 2024
A Call to Action for Generative AI in 2024
 
Histor y of HAM Radio presentation slide
Histor y of HAM Radio presentation slideHistor y of HAM Radio presentation slide
Histor y of HAM Radio presentation slide
 
The 7 Things I Know About Cyber Security After 25 Years | April 2024
The 7 Things I Know About Cyber Security After 25 Years | April 2024The 7 Things I Know About Cyber Security After 25 Years | April 2024
The 7 Things I Know About Cyber Security After 25 Years | April 2024
 
A Domino Admins Adventures (Engage 2024)
A Domino Admins Adventures (Engage 2024)A Domino Admins Adventures (Engage 2024)
A Domino Admins Adventures (Engage 2024)
 

C4C integration with SAP PI/PO

  • 1. Experience with SAP Cloud for Customer and SAP Process Orchestration DANIEL GRAVERSEN FIGAF APS DANIEL GRAVERSEN DGR@FIGAF.COM 1
  • 2. Agenda Project Connectivity SAP Standard Custom Fields Steps of Synchronization DANIEL GRAVERSEN DGR@FIGAF.COM 2
  • 3. Daniel Graversen • SAP XI/PI consultant since 2004 • SAP Mentor since the fall of 2009 • Currently working as freelance consultant in Denmark • I have worked on one project on SAP Cloud 4 Customer DANIEL GRAVERSEN DGR@FIGAF.COM 3
  • 4. Focus of the Project The main focus of the project was to synchronize SAP Cloud 4 Customer master data with an Internal system using SAP PO as middleware. My goal is to be able to synchronize Customer, Address and Contacts in both directions. SAP ERP is not a part of the goal yet. My work was focused only on integration; I cannot describe how C4C works in regards to other aspects. DANIEL GRAVERSEN DGR@FIGAF.COM 4
  • 5. Interface The Cloud 4 Customer comes with a series of interfaces. Here is the list for managing different Business Objects in the system. There are 3 types of operations: • Manage • Query • Create/Trigger DANIEL GRAVERSEN DGR@FIGAF.COM 5
  • 6. API The API is self-explanatory, based on the query to identify what was saved on a customer template. Each interface has a documentation in the cloud system. I have not found in-depth field description. Action codes are used for performing actions. 01 — Create 02 — Update 03 — Delete 04 — Save 05 — Remove 06 — No Action DANIEL GRAVERSEN DGR@FIGAF.COM 6
  • 7. Connectivity Connection to C4C is simple, just connect through HTTPS on 443 as in the endpoint. When sending data from C4C it also needs to be through HTTPS. HTTPS can only be used on the following ports: 443 44300-44302 44305-44307 44320 The IP of the SAP server seems the same, but it may change. DANIEL GRAVERSEN DGR@FIGAF.COM 7
  • 8. Reverse Proxy A Reverse proxy only allows data on a specific URL and forwards this to the SAP PO system. Only connect through the HTTPS protocol and only access specific URLs. This will limit potential security threats. The attacker needs to get hold of the Reverse Proxy server in order to use the access to gain more control of the data. SAP POFirewall Reverse Proxy SAP Cloud Open on one port DANIEL GRAVERSEN DGR@FIGAF.COM 8
  • 9. Poor Man’s Reverse Proxy The ICM from the NWA is configured in such a way that it will only allow one URL to be handled on the server. No other URLs are allowed. SAP PO Use ICM FirewallSAP Cloud Open on one port DANIEL GRAVERSEN DGR@FIGAF.COM 9
  • 10. ICM Filtering In order to filter request a rule, it has to be configured in usrsapPODSYSglobalsecuritydataicm_filter_rules.txt The request will only be allowed through the PI soap adapter. All other requests will be rejected. if %{SERVER_PORT} stricmp 443 [AND] if %{PATH_TRANSLATED} !regimatch /XISOAPAdapter.* RegForbiddenUrl ^/(.*) - Could probably extend with sender system. DANIEL GRAVERSEN DGR@FIGAF.COM 10
  • 11. SAP Package It is placed in 3 components of the software that should be imported. Integration scenarios are shown in the flow chart. Master data contains 3 IDOCs in both directions (inbound and outbound). There is also a scenario for sales data. External numbering should be configured in SAP. This is currently not in our scope. DANIEL GRAVERSEN DGR@FIGAF.COM 11
  • 12. Custom Fields Many companies have their own attributes on objects. The C4C system is flexible and allows the addition of new fields Can be done without programming in the case of simple fields. DANIEL GRAVERSEN DGR@FIGAF.COM 12
  • 13. Enhancing the UI The standard interface can be enhanced with custom fields without any coding. [SCRREN] DANIEL GRAVERSEN DGR@FIGAF.COM 13
  • 14. Enhancing Interfaces Add the desired field to the relevant web services. DANIEL GRAVERSEN DGR@FIGAF.COM 14
  • 15. Coding It is possible to enhance applications by adding or enhancing a different business object. The SAP Cloud Applications Studio uses a Visual Studio plugin for this process. It is possible to create and enhance screens, web services and other kinds of logic. There are some great tutorials for figuring out how to create different objects. The project did not require dealing with this, since enhancement performed by only adding fields could be done using the interface. DANIEL GRAVERSEN DGR@FIGAF.COM 15
  • 16. From C4C to Third Party C4C SAP PO Customer Address Contacts (ignored) BPMN3PL Query Accout Create/update Customer Account response Create/update Response UpdateCustomer with 3PLid Updateignores Create/UpdateContacts Create/UpdateResponse Updatecontact with 3PLid Updateignores Repeat for each contact One change updates all objects. Query of the contact gives all required information for update. Update 3PL id back to cloud system. DANIEL GRAVERSEN DGR@FIGAF.COM 16
  • 17. Create Customer from Third Party C4C SAP PO Customer Create Customer BPMN3PL Query Accout Account response UpdateCustomer with all info Updateignores Custom create response Signal not to update 3PL DANIEL GRAVERSEN DGR@FIGAF.COM 17
  • 18. Contact Update C4C SAP PO Contact Create/update BPMN3PL Query Accout Account response Updatecontact with allinfo Updateresponse Contact response Need the contact address DANIEL GRAVERSEN DGR@FIGAF.COM 18
  • 19. Update Messages The create customer message is sent each time the customer is modified. It consists of 3 messages: ● Customer ● Main Address ● Contact persons In our case, this trigger starts the process of updating the message. ● Change the customer ● Update the address ● Add/change a contact ● Modify using web service We were about to filter out the web service requests. DANIEL GRAVERSEN DGR@FIGAF.COM 19
  • 20. Numbering of Customers Customers created in SAP will have the following numbers: Internal number 100000 as default - but it can be changed. Customers created using the create customer API must have either or both: ● Internal ID in a predefined range of 200000 or a-xxxxxx ● External number An external number can range up to 700000000, therefore it must be created in SAP as external numbering. DANIEL GRAVERSEN DGR@FIGAF.COM 20
  • 21. Update on Customer Object Updates to the cloud system on an account will trigger the change message. I would like a way of knowing how to trigger the update. This would allow me to determine if the update had been made by a user or the interface. Is performed using signals between the BPM processes DANIEL GRAVERSEN DGR@FIGAF.COM 21
  • 22. 3. Monitoring Locations DANIEL GRAVERSEN DGR@FIGAF.COM 22
  • 23. It is delayed by 10-15 minutes DANIEL GRAVERSEN DGR@FIGAF.COM 23
  • 26. Wishes Information about who changed the data Better masterdata ◦ Make sure that SAP numbers was uptodate DANIEL GRAVERSEN DGR@FIGAF.COM 26
  • 28. -Feedback- Please leave a comment DANIEL GRAVERSEN DGR@FIGAF.COM 28
  • 29. Links Help and release notes http://help.sap.com/cloud4customer SAP Community Network http://scn.sap.com/community/cloud-for-customer Enhance UI and web services http://www.sdn.sap.com/irj/scn/go/portal/prtroot/docs/library/uuid/10c2c67e-05b1-3110-9888- d407b5c8e6ca SAP Cloud Applications Studio guides http://scn.sap.com/community/business-bydesign/studio DANIEL GRAVERSEN DGR@FIGAF.COM 29