Week 2 Unit 1: Security Concept

Size: px
Start display at page:

Download "Week 2 Unit 1: Security Concept"

Transcription

1 Week 2 Unit 1: Security Concept

2 Security Concept Topics Authentication & Single Sign-On Authorization Management Web API Protection Identity Propagation 2016 SAP SE or an SAP affiliate company. All rights reserved. Public 2

3 Security Concept Authentication & single sign-on Your Cloud Platform Web application(s) User Web browser Access-protected Web resources App XS Cloud Platform Authenticate / single sign-on Delegate authentication & identity management Identity Provider (IdP) 2016 SAP SE or an SAP affiliate company. All rights reserved. Public 3

4 Security Concept Identity provider options on Cloud Platform SAP s public identity provider on the Internet Free service Default identity provider for HCP trial accounts SAP ID service Internet Cloud solution for identity lifecycle management Pay-per-logon requests Preconfigured identity provider for productive HCP accounts SAP Cloud Identity Cloud Platform Integration with a corporate Identity and Access Management solution Prerequisite: SAML 2.0 compliance Bring your own identity provider Corporate network 2016 SAP SE or an SAP affiliate company. All rights reserved. Public 4

5 Security Concept Authorization management Group is assigned to (static OR federated assignment) is assigned to (static assignment) XS App User is assigned to (static assignment) Role 2016 SAP SE or an SAP affiliate company. All rights reserved. Public 5

6 Security Concept Web API protection Web browser Native mobile app Desktop / server application Your REST API on Cloud Platform API XS Cloud Platform 2016 SAP SE or an SAP affiliate company. All rights reserved. Public 6

7 Security Concept Identity propagation Initial login App XS API XS API Cloud Platform SAP / Non-SAP Cloud Cloud Connector API SAP/Non-SAP Back-End System(s) Corporate Network Propagated identity 2016 SAP SE or an SAP affiliate company. All rights reserved. Public 7

8 Security Concept Outlook for this week Unit 2: Securing HTML5 Apps Authenticating users via SAML Managing permissions and roles Unit 3: Securing Java Apps Authenticating users via SAML Managing groups and roles Unit 4: Securing Web APIs Protecting an API using OAuth 2.0 Testing with a REST client Units 5 & 6: Securing Native Services Configuring identity propagation between an HTML5 app and an XS service 2016 SAP SE or an SAP affiliate company. All rights reserved. Public 8

9 Thank you Contact information:

10 2016 SAP SE or an SAP affiliate company. All rights reserved. No part of this publication may be reproduced or transmitted in any form or for any purpose without the express permission of SAP SE or an SAP affiliate company. SAP and other SAP products and services mentioned herein as well as their respective logos are trademarks or registered trademarks of SAP SE (or an SAP affiliate company) in Germany and other countries. Please see for additional trademark information and notices. Some software products marketed by SAP SE and its distributors contain proprietary software components of other software vendors. National product specifications may vary. These materials are provided by SAP SE or an SAP affiliate company for informational purposes only, without representation or warranty of any kind, and SAP SE or its affiliated companies shall not be liable for errors or omissions with respect to the materials. The only warranties for SAP SE or SAP affiliate company products and services are those that are set forth in the express warranty statements accompanying such products and services, if any. Nothing herein should be construed as constituting an additional warranty. In particular, SAP SE or its affiliated companies have no obligation to pursue any course of business outlined in this document or any related presentation, or to develop or release any functionality mentioned therein. This document, or any related presentation, and SAP SE s or its affiliated companies strategy and possible future developments, products, and/or platform directions and functionality are all subject to change and may be changed by SAP SE or its affiliated companies at any time for any reason without notice. The information in this document is not a commitment, promise, or legal obligation to deliver any material, code, or functionality. All forwardlooking statements are subject to various risks and uncertainties that could cause actual results to differ materially from expectations. Readers are cautioned not to place undue reliance on these forward-looking statements, which speak only as of their dates, and they should not be relied upon in making purchasing decisions SAP SE or an SAP affiliate company. All rights reserved. Public 10

11 Week 2 Unit 2: Securing HTML5 Apps

12 Securing HTML5 Apps Authentication: SAML 2.0 neo-app.json { } "authenticationmethod": "saml", "logoutpage": "logout.html",... "routes": [... ], "securityconstraints": [... ], SAP SE or an SAP affiliate company. All rights reserved. Public 2

13 Securing HTML5 Apps Authorization: Roles and permissions User accessprojectdata (Permission) Cloud Platform Employee (Custom Role) Public Resources HTML5 App Protected Resources /projects neo-app.json { }... "securityconstraints": [ "permission": "accessprojectdata", "description": "Protected Project Data", "protectedpaths": [ "/projects" ], ], SAP SE or an SAP affiliate company. All rights reserved. Public 3

14 Thank you Contact information:

15 2016 SAP SE or an SAP affiliate company. All rights reserved. No part of this publication may be reproduced or transmitted in any form or for any purpose without the express permission of SAP SE or an SAP affiliate company. SAP and other SAP products and services mentioned herein as well as their respective logos are trademarks or registered trademarks of SAP SE (or an SAP affiliate company) in Germany and other countries. Please see for additional trademark information and notices. Some software products marketed by SAP SE and its distributors contain proprietary software components of other software vendors. National product specifications may vary. These materials are provided by SAP SE or an SAP affiliate company for informational purposes only, without representation or warranty of any kind, and SAP SE or its affiliated companies shall not be liable for errors or omissions with respect to the materials. The only warranties for SAP SE or SAP affiliate company products and services are those that are set forth in the express warranty statements accompanying such products and services, if any. Nothing herein should be construed as constituting an additional warranty. In particular, SAP SE or its affiliated companies have no obligation to pursue any course of business outlined in this document or any related presentation, or to develop or release any functionality mentioned therein. This document, or any related presentation, and SAP SE s or its affiliated companies strategy and possible future developments, products, and/or platform directions and functionality are all subject to change and may be changed by SAP SE or its affiliated companies at any time for any reason without notice. The information in this document is not a commitment, promise, or legal obligation to deliver any material, code, or functionality. All forwardlooking statements are subject to various risks and uncertainties that could cause actual results to differ materially from expectations. Readers are cautioned not to place undue reliance on these forward-looking statements, which speak only as of their dates, and they should not be relied upon in making purchasing decisions SAP SE or an SAP affiliate company. All rights reserved. Public 5

16 Week 2 Unit 3: Securing Java Apps

17 Securing Java Apps Authentication jdoe Username/Password X.509 Client Certificate Cloud Platform web.xml <login-config> <auth-method> [BASIC CERT FORM ] </auth-method> </login-config> SAML SAP SE or an SAP affiliate company. All rights reserved. Public 2

18 Securing Java Apps Authorization User web.xml... <security-role> <role-name>projectmanager</role-name> </security-role> ProjectManager (Predefined Role) Cloud Platform 2016 SAP SE or an SAP affiliate company. All rights reserved. Public 3

19 Thank you Contact information:

20 2016 SAP SE or an SAP affiliate company. All rights reserved. No part of this publication may be reproduced or transmitted in any form or for any purpose without the express permission of SAP SE or an SAP affiliate company. SAP and other SAP products and services mentioned herein as well as their respective logos are trademarks or registered trademarks of SAP SE (or an SAP affiliate company) in Germany and other countries. Please see for additional trademark information and notices. Some software products marketed by SAP SE and its distributors contain proprietary software components of other software vendors. National product specifications may vary. These materials are provided by SAP SE or an SAP affiliate company for informational purposes only, without representation or warranty of any kind, and SAP SE or its affiliated companies shall not be liable for errors or omissions with respect to the materials. The only warranties for SAP SE or SAP affiliate company products and services are those that are set forth in the express warranty statements accompanying such products and services, if any. Nothing herein should be construed as constituting an additional warranty. In particular, SAP SE or its affiliated companies have no obligation to pursue any course of business outlined in this document or any related presentation, or to develop or release any functionality mentioned therein. This document, or any related presentation, and SAP SE s or its affiliated companies strategy and possible future developments, products, and/or platform directions and functionality are all subject to change and may be changed by SAP SE or its affiliated companies at any time for any reason without notice. The information in this document is not a commitment, promise, or legal obligation to deliver any material, code, or functionality. All forwardlooking statements are subject to various risks and uncertainties that could cause actual results to differ materially from expectations. Readers are cautioned not to place undue reliance on these forward-looking statements, which speak only as of their dates, and they should not be relied upon in making purchasing decisions SAP SE or an SAP affiliate company. All rights reserved. Public 5

21 Week 2 Unit 4: Securing Web APIs

22 Securing Web APIs OAuth access token REST Client (e.g. native mobile app) Your REST API on Cloud Platform poai3-36d24fd wq59 API Cloud Platform 2016 SAP SE or an SAP affiliate company. All rights reserved. Public 2

23 Securing Web APIs OAuth SAP SE or an SAP affiliate company. All rights reserved. Public 3

24 Securing Web APIs End-to-end flow 1. 1 HCP administrator registers OAuth client for the native mobile app 2. 2 App requests an access token from the OAuth authorization server. This requires the user to authenticate via SAML App stores the access token and uses it to send an authorized API call 4. 4 The API can verify the token with the OAuth authorization server and returns the response to the app REST Client (e.g. native mobile app) 3 poa wq59 OAuth API 2 4 SAML OAuth 2.0 authorization server Cloud Platform Your REST API on Cloud Platform SAML SAP SE or an SAP affiliate company. All rights reserved. Public 4

25 Securing Web APIs Using OAuth on Cloud Platform web.xml <filter> <display-name>oauth Filter to view sales data</display-name> <filter-name>oauthviewsalesdatafilter</filter-name> <filter-class> com.sap.cloud.security.oauth2.oauthauthorizationfilter </filter-class> <init-param> OAuth <param-name>http-method</param-name> API <param-value>get</param-value> </init-param> </filter> <filter-mapping> <filter-name>oauthviewsalesdatafilter</filter-name> <servlet-name>salesdataservlet</servlet-name> </filter-mapping>... Cloud Platform 2016 SAP SE or an SAP affiliate company. All rights reserved. Public 5

26 Thank you Contact information:

27 2016 SAP SE or an SAP affiliate company. All rights reserved. No part of this publication may be reproduced or transmitted in any form or for any purpose without the express permission of SAP SE or an SAP affiliate company. SAP and other SAP products and services mentioned herein as well as their respective logos are trademarks or registered trademarks of SAP SE (or an SAP affiliate company) in Germany and other countries. Please see for additional trademark information and notices. Some software products marketed by SAP SE and its distributors contain proprietary software components of other software vendors. National product specifications may vary. These materials are provided by SAP SE or an SAP affiliate company for informational purposes only, without representation or warranty of any kind, and SAP SE or its affiliated companies shall not be liable for errors or omissions with respect to the materials. The only warranties for SAP SE or SAP affiliate company products and services are those that are set forth in the express warranty statements accompanying such products and services, if any. Nothing herein should be construed as constituting an additional warranty. In particular, SAP SE or its affiliated companies have no obligation to pursue any course of business outlined in this document or any related presentation, or to develop or release any functionality mentioned therein. This document, or any related presentation, and SAP SE s or its affiliated companies strategy and possible future developments, products, and/or platform directions and functionality are all subject to change and may be changed by SAP SE or its affiliated companies at any time for any reason without notice. The information in this document is not a commitment, promise, or legal obligation to deliver any material, code, or functionality. All forwardlooking statements are subject to various risks and uncertainties that could cause actual results to differ materially from expectations. Readers are cautioned not to place undue reliance on these forward-looking statements, which speak only as of their dates, and they should not be relied upon in making purchasing decisions SAP SE or an SAP affiliate company. All rights reserved. Public 7

28 Week 2 Unit 5: Securing SAP HANA Native Services Part 1

29 Securing Native Services Part 1 Using XS on Cloud Platform Your HCP Account User REST/ ODATA API Cloud Platform XS Dedicated or shared 2016 SAP SE or an SAP affiliate company. All rights reserved. Public 2

30 Securing Native Services Part 1 User authentication and propagation Your HCP Account User SAML Login Identity Propagation API XS Authentication & SSO Dedicated or shared Identity Provider (IdP) Cloud Platform 2016 SAP SE or an SAP affiliate company. All rights reserved. Public 3

31 Securing Native Services Part 1 Focus of Units 5 and 6 Your HCP Account User SAML Login Identity Propagation API XS Authentication & SSO Dedicated or shared Identity Provider (IdP) Cloud Platform 2016 SAP SE or an SAP affiliate company. All rights reserved. Public 4

32 Securing Native Services Part 1 Identity propagation between HTML5/Java and XS Your HCP Account HTTP Destination (App2AppSSO*) API (SAML) XS Dedicated or shared Cloud Platform * Application-to-Application SSO Authentication 2016 SAP SE or an SAP affiliate company. All rights reserved. Public 5

33 Securing Native Services Part 1 Trust setup Your HCP Account Local Service Provider TRUST SAML Identity Provider HTTP Destination (App2AppSSO*) API (SAML) XS Cloud Platform * Application-to-Application SSO Authentication 2016 SAP SE or an SAP affiliate company. All rights reserved. Public 6

34 Securing Native Services Part 1 User management Your HCP Account Dynamic User Creation HTTP Destination (App2AppSSO*) API (SAML) SAML Identity Provider XS DB User Cloud Platform * Application-to-Application SSO Authentication 2016 SAP SE or an SAP affiliate company. All rights reserved. Public 7

35 Securing Native Services Part 1 Configuration steps of the end-to-end scenario Unit 5 Part 1 Configure the local service provider for HTML5 apps Set up trust in XS to the HTML5 local service provider Enable dynamic user creation in XS Unit 6 Part 2 Configure HTTP destination for application-to-application SSO Configure SAML in XS Test the scenario 2016 SAP SE or an SAP affiliate company. All rights reserved. Public 8

36 Securing Native Services Part 1 What you ve learned in this unit How to build Cloud Platform applications using HTML5 and XS The difference between authentication and propagation of a user s identity Configuration of trust between HTML5 and XS as a prerequisite for secure identity propagation 2016 SAP SE or an SAP affiliate company. All rights reserved. Public 9

37 Securing Native Services Part 1 Further reading!i Additional Material SAP SE or an SAP affiliate company. All rights reserved. Public 10

38 Thank you Contact information:

39 2016 SAP SE or an SAP affiliate company. All rights reserved. No part of this publication may be reproduced or transmitted in any form or for any purpose without the express permission of SAP SE or an SAP affiliate company. SAP and other SAP products and services mentioned herein as well as their respective logos are trademarks or registered trademarks of SAP SE (or an SAP affiliate company) in Germany and other countries. Please see for additional trademark information and notices. Some software products marketed by SAP SE and its distributors contain proprietary software components of other software vendors. National product specifications may vary. These materials are provided by SAP SE or an SAP affiliate company for informational purposes only, without representation or warranty of any kind, and SAP SE or its affiliated companies shall not be liable for errors or omissions with respect to the materials. The only warranties for SAP SE or SAP affiliate company products and services are those that are set forth in the express warranty statements accompanying such products and services, if any. Nothing herein should be construed as constituting an additional warranty. In particular, SAP SE or its affiliated companies have no obligation to pursue any course of business outlined in this document or any related presentation, or to develop or release any functionality mentioned therein. This document, or any related presentation, and SAP SE s or its affiliated companies strategy and possible future developments, products, and/or platform directions and functionality are all subject to change and may be changed by SAP SE or its affiliated companies at any time for any reason without notice. The information in this document is not a commitment, promise, or legal obligation to deliver any material, code, or functionality. All forwardlooking statements are subject to various risks and uncertainties that could cause actual results to differ materially from expectations. Readers are cautioned not to place undue reliance on these forward-looking statements, which speak only as of their dates, and they should not be relied upon in making purchasing decisions SAP SE or an SAP affiliate company. All rights reserved. Public 12

40 Week 2 Unit 6: Securing SAP HANA Native Services Part 2

41 Securing Native Services Part 2 Identity propagation scenario Your HCP Account User SAML Login Identity Propagation API XS Authentication & SSO Dedicated or shared Identity Provider (IdP) Cloud Platform 2016 SAP SE or an SAP affiliate company. All rights reserved. Public 2

42 Securing Native Services Part 2 What we did in Part 1 Your HCP Account Local Service Provider TRUST SAML Identity Provider Dynamic User Creation XS DB User Cloud Platform 2016 SAP SE or an SAP affiliate company. All rights reserved. Public 3

43 Securing Native Services Part 2 What we will do in Part 2 Local Service Provider Your HCP Account TRUST SAML Identity Provider Dynamic User Creation HTTP Destination (App2AppSSO*) API (SAML) XS DB User Cloud Platform * Application-to-Application SSO Authentication 2016 SAP SE or an SAP affiliate company. All rights reserved. Public 4

44 Securing Native Services Part 2 What you ve learned in this unit How to configure a destination to propagate the user s identity from HTML5 to XS How to configure SAML in XS to support identity propagation from HTML5 How to test the scenario end-to-end 2016 SAP SE or an SAP affiliate company. All rights reserved. Public 5

45 Securing Native Services Part 2 Further reading!i Additional Material SAP SE or an SAP affiliate company. All rights reserved. Public 6

46 Thank you Contact information:

47 2016 SAP SE or an SAP affiliate company. All rights reserved. No part of this publication may be reproduced or transmitted in any form or for any purpose without the express permission of SAP SE or an SAP affiliate company. SAP and other SAP products and services mentioned herein as well as their respective logos are trademarks or registered trademarks of SAP SE (or an SAP affiliate company) in Germany and other countries. Please see for additional trademark information and notices. Some software products marketed by SAP SE and its distributors contain proprietary software components of other software vendors. National product specifications may vary. These materials are provided by SAP SE or an SAP affiliate company for informational purposes only, without representation or warranty of any kind, and SAP SE or its affiliated companies shall not be liable for errors or omissions with respect to the materials. The only warranties for SAP SE or SAP affiliate company products and services are those that are set forth in the express warranty statements accompanying such products and services, if any. Nothing herein should be construed as constituting an additional warranty. In particular, SAP SE or its affiliated companies have no obligation to pursue any course of business outlined in this document or any related presentation, or to develop or release any functionality mentioned therein. This document, or any related presentation, and SAP SE s or its affiliated companies strategy and possible future developments, products, and/or platform directions and functionality are all subject to change and may be changed by SAP SE or its affiliated companies at any time for any reason without notice. The information in this document is not a commitment, promise, or legal obligation to deliver any material, code, or functionality. All forwardlooking statements are subject to various risks and uncertainties that could cause actual results to differ materially from expectations. Readers are cautioned not to place undue reliance on these forward-looking statements, which speak only as of their dates, and they should not be relied upon in making purchasing decisions SAP SE or an SAP affiliate company. All rights reserved. Public 8

Week 1 Unit 1: Basics. January, 2015

Week 1 Unit 1: Basics. January, 2015 Week 1 Unit 1: Basics January, 2015 Cloud Service Models Hardware or software provided to you as a service and accessible through the Internet SOFTWARE AS A SERVICE SaaS PLATFORM AS A SERVICE PaaS INFRASTRUCTURE

More information

SAP Solution Manager Focused Insights Setup for ST-OST SP4. AGS Solution Manager SAP Labs France

SAP Solution Manager Focused Insights Setup for ST-OST SP4. AGS Solution Manager SAP Labs France SAP Solution Manager Focused Insights Setup for ST-OST SP4 AGS Solution Manager SAP Labs France Focused Insights Service Information Guided procedure for the Dashboard Factory Setup The goal of this document

More information

Week 1 Unit 5: Application Example: Natural Language Processing

Week 1 Unit 5: Application Example: Natural Language Processing Week 1 Unit 5: Application Example: Natural Language Processing Objectives Describe two end-to-end examples for applications involving natural language text Support ticket classification Recruiting CV

More information

SAP Hybris Marketing Cloud Implementation Steps for 1711

SAP Hybris Marketing Cloud Implementation Steps for 1711 Implementation Steps for 1711 October, 2017 INTERNAL Implementation Steps Initial Process in Quality (Q) Quality (Q) Pre-delivered content already activated Receiving mails Role Creation User Creation

More information

S4F05. Asset Accounting in SAP S/4HANA: Customizing and Conversion COURSE OUTLINE. Course Version: 05 Course Duration: 2 Day(s)

S4F05. Asset Accounting in SAP S/4HANA: Customizing and Conversion COURSE OUTLINE. Course Version: 05 Course Duration: 2 Day(s) S4F05 Asset Accounting in SAP S/4HANA: Customizing and Conversion. COURSE OUTLINE Course Version: 05 Course Duration: 2 Day(s) SAP Copyrights and Trademarks 2018 SAP SE or an SAP affiliate company. All

More information

SAP Education: Reporting Access User Guide

SAP Education: Reporting Access User Guide www.sap.com SAP Education: Reporting Access User Guide The Best-Run Businesses Run SAP Accessing Reports Login to the Learning Hub with credentials you have been provded with: To access the reports click

More information

Complementary Demo Guide

Complementary Demo Guide Complementary Demo Guide SAP Business ByDesign Manufacturing Table of Content 1 About this Document...3 1.1 Purpose...3 2 Master and Transactional Data...3 3 Demo Steps...4 3.1 Create Demand...4 3.2 Run

More information

PLM210. Master Data Configuration in SAP Project System COURSE OUTLINE. Course Version: 16 Course Duration: 2 Day(s)

PLM210. Master Data Configuration in SAP Project System COURSE OUTLINE. Course Version: 16 Course Duration: 2 Day(s) PLM210 Master Data Configuration in SAP Project System. COURSE OUTLINE Course Version: 16 Course Duration: 2 Day(s) SAP Copyrights and Trademarks 2018 SAP SE or an SAP affiliate company. All rights reserved.

More information

Week 2 Unit 1: Introduction to HTML5 Applications and Git

Week 2 Unit 1: Introduction to HTML5 Applications and Git Week 2 Unit 1: Introduction to HTML5 Applications and Git Introduction to HTML5 Applications and Git HTML5 Applications on SAP HANA Cloud Platform Consist of static resources Connect to an existing back

More information

C4C50. SAP Hybris Cloud for Customer Integration with On-premise SAP Solutions COURSE OUTLINE. Course Version: 20 Course Duration: 4 Day(s)

C4C50. SAP Hybris Cloud for Customer Integration with On-premise SAP Solutions COURSE OUTLINE. Course Version: 20 Course Duration: 4 Day(s) C4C50 SAP Hybris Cloud for Customer Integration with On-premise SAP Solutions. COURSE OUTLINE Course Version: 20 Course Duration: 4 Day(s) SAP Copyrights and Trademarks 2017 SAP SE or an SAP affiliate

More information

S4F41. Implementing Cash Management in SAP S/4HANA COURSE OUTLINE. Course Version: 06 Course Duration: 5 Day(s)

S4F41. Implementing Cash Management in SAP S/4HANA COURSE OUTLINE. Course Version: 06 Course Duration: 5 Day(s) S4F41 Implementing Cash Management in SAP S/4HANA. COURSE OUTLINE Course Version: 06 Course Duration: 5 Day(s) SAP Copyrights and Trademarks 2016 SAP SE or an SAP affiliate company. All rights reserved.

More information

S4100. Business Processes in SAP S/4HANA Product Development COURSE OUTLINE. Course Version: 05 Course Duration: 5 Day(s)

S4100. Business Processes in SAP S/4HANA Product Development COURSE OUTLINE. Course Version: 05 Course Duration: 5 Day(s) S4100 Business Processes in SAP S/4HANA Product Development. COURSE OUTLINE Course Version: 05 Course Duration: 5 Day(s) SAP Copyrights and Trademarks 2016 SAP SE or an SAP affiliate company. All rights

More information

S4F00. Overview of Financials in SAP S/4HANA COURSE OUTLINE. Course Version: 08 Course Duration: 2 Day(s)

S4F00. Overview of Financials in SAP S/4HANA COURSE OUTLINE. Course Version: 08 Course Duration: 2 Day(s) S4F00 Overview of Financials in SAP S/4HANA. COURSE OUTLINE Course Version: 08 Course Duration: 2 Day(s) SAP Copyrights and Trademarks 2018 SAP SE or an SAP affiliate company. All rights reserved. No part

More information

S4F02. Management Accounting in SAP S/4HANA COURSE OUTLINE. Course Version: 05 Course Duration: 3 Day(s)

S4F02. Management Accounting in SAP S/4HANA COURSE OUTLINE. Course Version: 05 Course Duration: 3 Day(s) S4F02 Management Accounting in SAP S/4HANA. COURSE OUTLINE Course Version: 05 Course Duration: 3 Day(s) SAP Copyrights and Trademarks 2016 SAP SE or an SAP affiliate company. All rights reserved. No part

More information

TS4C01. SAP S/4HANA Cloud On-boarding Fundamentals COURSE OUTLINE. Course Version: 04 Course Duration: 3 Day(s)

TS4C01. SAP S/4HANA Cloud On-boarding Fundamentals COURSE OUTLINE. Course Version: 04 Course Duration: 3 Day(s) TS4C01 SAP S/4HANA Cloud On-boarding Fundamentals. COURSE OUTLINE Course Version: 04 Course Duration: 3 Day(s) SAP Copyrights and Trademarks 2017 SAP SE or an SAP affiliate company. All rights reserved.

More information

Complementary Demo Guide

Complementary Demo Guide Complementary Demo Guide SAP Business ByDesign Manufacturing SAP Business ByDesign Table of Content 1 About this Document...3 1.1 Purpose...3 2 Master and Transactional Data...3 3 Demo Steps...4 3.1 :

More information

Week 3 Unit 3: Adapting Your Custom Code

Week 3 Unit 3: Adapting Your Custom Code Week 3 Unit 3: Adapting Your Custom Code System conversion: custom code migration worklist Discovery / Prepare Phase Realize Phase t 1 t 2 t 3 t 4 t 5 t 6 t System Requirements Maintenance Planner Pre-Checks

More information

CLD900. SAP Cloud Platform, Integration Service, Overview COURSE OUTLINE. Course Version: 16 Course Duration: 3 Day(s)

CLD900. SAP Cloud Platform, Integration Service, Overview COURSE OUTLINE. Course Version: 16 Course Duration: 3 Day(s) CLD900 SAP Cloud Platform, Integration Service, Overview. COURSE OUTLINE Course Version: 16 Course Duration: 3 Day(s) SAP Copyrights and Trademarks 2018 SAP SE or an SAP affiliate company. All rights

More information

THR94. SAP SuccessFactors Employee Central Time Off COURSE OUTLINE. Course Version: 64 Course Duration: 3 Day(s)

THR94. SAP SuccessFactors Employee Central Time Off COURSE OUTLINE. Course Version: 64 Course Duration: 3 Day(s) THR94 SAP SuccessFactors Employee Central Time Off. COURSE OUTLINE Course Version: 64 Course Duration: 3 Day(s) SAP Copyrights and Trademarks 2016 SAP SE or an SAP affiliate company. All rights reserved.

More information

E2E600. Implementation Projects with SAP Solution Manager 7.2 COURSE OUTLINE. Course Version: 18 Course Duration: 5 Day(s)

E2E600. Implementation Projects with SAP Solution Manager 7.2 COURSE OUTLINE. Course Version: 18 Course Duration: 5 Day(s) E2E600 Implementation Projects with SAP Solution Manager 7.2. COURSE OUTLINE Course Version: 18 Course Duration: 5 Day(s) SAP Copyrights and Trademarks 2017 SAP SE or an SAP affiliate company. All rights

More information

Week 1 Unit 1: Introducing SAP Screen Personas

Week 1 Unit 1: Introducing SAP Screen Personas Week 1 Unit 1: Introducing SAP Screen Personas Introducing SAP Screen Personas Learning goals This course is intended for: New SAP Screen Personas users Designers Line-of-business managers SAP S/4HANA

More information

SM72D. SAP Solution Manager 7.2 Delta Training COURSE OUTLINE. Course Version: 17 Course Duration: 3 Day(s)

SM72D. SAP Solution Manager 7.2 Delta Training COURSE OUTLINE. Course Version: 17 Course Duration: 3 Day(s) SM72D SAP Solution Manager 7.2 Delta Training. COURSE OUTLINE Course Version: 17 Course Duration: 3 Day(s) SAP Copyrights and Trademarks 2017 SAP SE or an SAP affiliate company. All rights reserved. No

More information

PLM560. SAP Product Lifecycle Costing COURSE OUTLINE. Course Version: 02 Course Duration: 2 Day(s)

PLM560. SAP Product Lifecycle Costing COURSE OUTLINE. Course Version: 02 Course Duration: 2 Day(s) PLM560 SAP Product Lifecycle Costing. COURSE OUTLINE Course Version: 02 Course Duration: 2 Day(s) SAP Copyrights and Trademarks 2017 SAP SE or an SAP affiliate company. All rights reserved. No part of

More information

S4H01. Introduction to SAP S/4HANA COURSE OUTLINE. Course Version: 03 Course Duration: 2 Day(s)

S4H01. Introduction to SAP S/4HANA COURSE OUTLINE. Course Version: 03 Course Duration: 2 Day(s) S4H01 Introduction to SAP S/4HANA. COURSE OUTLINE Course Version: 03 Course Duration: 2 Day(s) SAP Copyrights and Trademarks 2016 SAP SE or an SAP affiliate company. All rights reserved. No part of this

More information

S4615. SAP S/4HANA Sales - Invoice Processing COURSE OUTLINE. Course Version: 08 Course Duration: Minutes

S4615. SAP S/4HANA Sales - Invoice Processing COURSE OUTLINE. Course Version: 08 Course Duration: Minutes S4615 SAP S/4HANA Sales - Invoice Processing. COURSE OUTLINE Course Version: 08 Course Duration: Minutes SAP Copyrights and Trademarks 2018 SAP SE or an SAP affiliate company. All rights reserved. No part

More information

Intercompany Integration Solution for SAP Business One Centralized Payment

Intercompany Integration Solution for SAP Business One Centralized Payment Intercompany Integration Solution for SAP Business One Centralized Payment TABLE OF CONTENTS OVERVIEW... 3 BUSINESS BENEFITS... 5 Public 2 OVERVIEW The Intercompany integration solution for SAP Business

More information

Week 1 Unit 6: Initial Data Analysis & Exploratory Data Analysis

Week 1 Unit 6: Initial Data Analysis & Exploratory Data Analysis Week 1 Unit 6: Initial Data Analysis & Exploratory Data Analysis Initial data analysis Initial data analysis (IDA) is an essential part of nearly every analysis Problem Solving, A Statisticians Guide Christopher

More information

SAPTEC. SAP NetWeaver Application Server - Fundamentals COURSE OUTLINE. Course Version: 16 Course Duration: 3 Day(s)

SAPTEC. SAP NetWeaver Application Server - Fundamentals COURSE OUTLINE. Course Version: 16 Course Duration: 3 Day(s) SAPTEC SAP NetWeaver Application Server - Fundamentals. COURSE OUTLINE Course Version: 16 Course Duration: 3 Day(s) SAP Copyrights and Trademarks 2018 SAP SE or an SAP affiliate company. All rights reserved.

More information

S4C10. Implementing SAP S/4HANA Cloud - Procurement COURSE OUTLINE. Course Version: 03 Course Duration: 2 Day(s)

S4C10. Implementing SAP S/4HANA Cloud - Procurement COURSE OUTLINE. Course Version: 03 Course Duration: 2 Day(s) S4C10 Implementing SAP S/4HANA Cloud - Procurement. COURSE OUTLINE Course Version: 03 Course Duration: 2 Day(s) SAP Copyrights and Trademarks 2017 SAP SE or an SAP affiliate company. All rights reserved.

More information

S4525. Consumption-Based Planning and Forecasting in SAP S/4HANA COURSE OUTLINE. Course Version: 09 Course Duration:

S4525. Consumption-Based Planning and Forecasting in SAP S/4HANA COURSE OUTLINE. Course Version: 09 Course Duration: S4525 Consumption-Based Planning and Forecasting in SAP S/4HANA. COURSE OUTLINE Course Version: 09 Course Duration: SAP Copyrights and Trademarks 2018 SAP SE or an SAP affiliate company. All rights reserved.

More information

CP100 SAP Cloud Platform

CP100 SAP Cloud Platform CP100 SAP Cloud Platform. COURSE OUTLINE Course Version: 04 Course Duration: 5 Day(s) SAP Copyrights and Trademarks 2018 SAP SE or an SAP affiliate company. All rights reserved. No part of this publication

More information

GTS200. Configuring SAP Global Trade Services COURSE OUTLINE. Course Version: 15 Course Duration: 3 Day(s)

GTS200. Configuring SAP Global Trade Services COURSE OUTLINE. Course Version: 15 Course Duration: 3 Day(s) GTS200 Configuring SAP Global Trade Services. COURSE OUTLINE Course Version: 15 Course Duration: 3 Day(s) SAP Copyrights and Trademarks 2016 SAP SE or an SAP affiliate company. All rights reserved. No

More information

SAPX03. SAP Fiori Implementation, Administration and Configuration COURSE OUTLINE. Course Version: 15 Course Duration: 5 Day(s)

SAPX03. SAP Fiori Implementation, Administration and Configuration COURSE OUTLINE. Course Version: 15 Course Duration: 5 Day(s) SAPX03 SAP Fiori Implementation, Administration and Configuration. COURSE OUTLINE Course Version: 15 Course Duration: 5 Day(s) SAP Copyrights and Trademarks 2016 SAP SE or an SAP affiliate company. All

More information

Connected Handel: Wie Vernetzung Wertschöpfungsketten

Connected Handel: Wie Vernetzung Wertschöpfungsketten Connected Handel: Wie Vernetzung Wertschöpfungsketten im Handel verändern kann Public Rolf Schumann, CTO, Head of Innovation, SAP EMEA / MEE Mannheim, 7. Juli 2016 Disclaimer The information in this presentation

More information

CP100 SAP Cloud Platform

CP100 SAP Cloud Platform CP100 SAP Cloud Platform. COURSE OUTLINE Course Version: 03 Course Duration: 5 Day(s) SAP Copyrights and Trademarks 2017 SAP SE or an SAP affiliate company. All rights reserved. No part of this publication

More information

C4C14 SAP Service Cloud

C4C14 SAP Service Cloud C4C14 SAP Service Cloud. COURSE OUTLINE Course Version: 23 Course Duration: 2 Day(s) SAP Copyrights and Trademarks 2018 SAP SE or an SAP affiliate company. All rights reserved. No part of this publication

More information

S4C01. SAP S/4HANA Cloud On-boarding Fundamentals COURSE OUTLINE. Course Version: 05 Course Duration: 3 Day(s)

S4C01. SAP S/4HANA Cloud On-boarding Fundamentals COURSE OUTLINE. Course Version: 05 Course Duration: 3 Day(s) S4C01 SAP S/4HANA Cloud On-boarding Fundamentals. COURSE OUTLINE Course Version: 05 Course Duration: 3 Day(s) SAP Copyrights and Trademarks 2016 SAP SE or an SAP affiliate company. All rights reserved.

More information

Automated VAT Adjustment for Payments with PPD - Workaround

Automated VAT Adjustment for Payments with PPD - Workaround Automated VAT Adjustment for Payments with PPD - Workaround Localization: GB, relevant for companies based in UK only Public Introduction In this document, you can find detailed description of proposed

More information

FS250. Bank Analyzer Overview in Banking Services from SAP 9.0 COURSE OUTLINE. Course Version: 15 Course Duration: 1 Day(s)

FS250. Bank Analyzer Overview in Banking Services from SAP 9.0 COURSE OUTLINE. Course Version: 15 Course Duration: 1 Day(s) FS250 Bank Analyzer Overview in Banking Services from SAP 9.0. COURSE OUTLINE Course Version: 15 Course Duration: 1 Day(s) SAP Copyrights and Trademarks 2017 SAP SE or an SAP affiliate company. All rights

More information

S4F40 Cash Management in SAP S/4HANA

S4F40 Cash Management in SAP S/4HANA S4F40 Cash Management in SAP S/4HANA. COURSE OUTLINE Course Version: 06 Course Duration: 2 Day(s) SAP Copyrights and Trademarks 2016 SAP SE or an SAP affiliate company. All rights reserved. No part of

More information

S4F01. Financial Accounting in SAP S/ 4HANA COURSE OUTLINE. Course Version: 03 Course Duration: 2 Day(s)

S4F01. Financial Accounting in SAP S/ 4HANA COURSE OUTLINE. Course Version: 03 Course Duration: 2 Day(s) S4F01 Financial Accounting in SAP S/ 4HANA. COURSE OUTLINE Course Version: 03 Course Duration: 2 Day(s) SAP Copyrights and Trademarks 2016 SAP SE or an SAP affiliate company. All rights reserved. No part

More information

S4F01 Financial Accounting in SAP S/4HANA for SAP ERP FI Professionals

S4F01 Financial Accounting in SAP S/4HANA for SAP ERP FI Professionals S4F01 Financial Accounting in SAP S/4HANA for SAP ERP FI Professionals. COURSE OUTLINE Course Version: 08 Course Duration: 2 Day(s) SAP Copyrights and Trademarks 2017 SAP SE or an SAP affiliate company.

More information

Smarter, Faster, Simpler IoT and the Digitization of Ports Value Chains

Smarter, Faster, Simpler IoT and the Digitization of Ports Value Chains Smarter, Faster, Simpler IoT and the Digitization of Ports Value Chains Port of the Future meeting October 12 th, 2016 Melbourne, Australia Thierry Morin Value Engineering Expert for Travel & Transportation,

More information

S4F29 Profitability Analysis in SAP S/4HANA

S4F29 Profitability Analysis in SAP S/4HANA S4F29 Profitability Analysis in SAP S/4HANA. COURSE OUTLINE Course Version: 11 Course Duration: SAP Copyrights and Trademarks 2018 SAP SE or an SAP affiliate company. All rights reserved. No part of this

More information

PLM310 Maintenance and Service Processing: Preventive

PLM310 Maintenance and Service Processing: Preventive PLM310 Maintenance and Service Processing: Preventive. COURSE OUTLINE Course Version: 16 Course Duration: 3 Day(s) SAP Copyrights and Trademarks 2017 SAP SE or an SAP affiliate company. All rights reserved.

More information

Installation The Intercompany Integration Solution for SAP Business One

Installation The Intercompany Integration Solution for SAP Business One Installation The Intercompany Integration Solution for Topic Objective At the end of this topic, you will be able to: Follow the process of Installing the Intercompany integration solution (You always

More information

UX100 SAP Fiori - Foundation

UX100 SAP Fiori - Foundation UX100 SAP Fiori - Foundation. COURSE OUTLINE Course Version: 02 Course Duration: 3 Day(s) SAP Copyrights and Trademarks 2016 SAP SE or an SAP affiliate company. All rights reserved. No part of this publication

More information

S4F03. Conversion of Accounting to SAP S/4HANA COURSE OUTLINE. Course Version: 08 Course Duration: 2 Day(s)

S4F03. Conversion of Accounting to SAP S/4HANA COURSE OUTLINE. Course Version: 08 Course Duration: 2 Day(s) S4F03 Conversion of Accounting to SAP S/4HANA. COURSE OUTLINE Course Version: 08 Course Duration: 2 Day(s) SAP Copyrights and Trademarks 2018 SAP SE or an SAP affiliate company. All rights reserved. No

More information

S4H00 SAP S/4HANA Overview

S4H00 SAP S/4HANA Overview S4H00 SAP S/4HANA Overview. COURSE OUTLINE Course Version: 09 Course Duration: 3 Day(s) SAP Copyrights and Trademarks 2018 SAP SE or an SAP affiliate company. All rights reserved. No part of this publication

More information

C4C12 SAP Hybris Sales Cloud

C4C12 SAP Hybris Sales Cloud C4C12 SAP Hybris Sales Cloud. COURSE OUTLINE Course Version: 20 Course Duration: 2 Day(s) SAP Copyrights and Trademarks 2017 SAP SE or an SAP affiliate company. All rights reserved. No part of this publication

More information

S4DEV. Hands-on Introduction to Application Programming on SAP S/4HANA COURSE OUTLINE. Course Version: 10 Course Duration: 3 Day(s)

S4DEV. Hands-on Introduction to Application Programming on SAP S/4HANA COURSE OUTLINE. Course Version: 10 Course Duration: 3 Day(s) S4DEV Hands-on Introduction to Application Programming on SAP S/4HANA. COURSE OUTLINE Course Version: 10 Course Duration: 3 Day(s) SAP Copyrights and Trademarks 2018 SAP SE or an SAP affiliate company.

More information

S4PR1 SAP S/4HANA Sourcing & Procurement - Functions & Innovations

S4PR1 SAP S/4HANA Sourcing & Procurement - Functions & Innovations S4PR1 SAP S/4HANA Sourcing & Procurement - Functions & Innovations. COURSE OUTLINE Course Version: 06 Course Duration: 1 Day(s) SAP Copyrights and Trademarks 2017 SAP SE or an SAP affiliate company. All

More information

S4H01 SAP Business Suite to SAP S/4HANA Delta

S4H01 SAP Business Suite to SAP S/4HANA Delta S4H01 SAP Business Suite to SAP S/4HANA Delta. COURSE OUTLINE Course Version: 05 Course Duration: 2 Day(s) SAP Copyrights and Trademarks 2018 SAP SE or an SAP affiliate company. All rights reserved. No

More information

S4MA1. SAP S/4HANA Manufacturing - Functions & Innovations COURSE OUTLINE. Course Version: 09 Course Duration:

S4MA1. SAP S/4HANA Manufacturing - Functions & Innovations COURSE OUTLINE. Course Version: 09 Course Duration: S4MA1 SAP S/4HANA Manufacturing - Functions & Innovations. COURSE OUTLINE Course Version: 09 Course Duration: SAP Copyrights and Trademarks 2018 SAP SE or an SAP affiliate company. All rights reserved.

More information

SG IR8A/IR8E/IR8S Form 2014 new layout (PDF) Configuration document

SG IR8A/IR8E/IR8S Form 2014 new layout (PDF) Configuration document SG IR8A/IR8E/IR8S Form 2014 new layout (PDF) Configuration document SG IR8A/IR8E/IR8S FORM 2014 NEW LAYOUT(PDF) TABLE OF CONTENTS IMG... 3 Define Print Form Type... 3 Define Form Group... 3 Maintain Standard

More information

Tabular Maintenance SAP Product Structure Management

Tabular Maintenance SAP Product Structure Management Tabular Maintenance SAP Product Structure Management A PLM Consulting Solution The PLM Consulting Solution Tabular maintenance streamlines the process of managing SAP Product Structures (PSM). Therefore

More information

S4H100. SAP S/4HANA Implementation Scenarios COURSE OUTLINE. Course Version: 05 Course Duration: 3 Day(s)

S4H100. SAP S/4HANA Implementation Scenarios COURSE OUTLINE. Course Version: 05 Course Duration: 3 Day(s) S4H100 SAP S/4HANA Implementation Scenarios. COURSE OUTLINE Course Version: 05 Course Duration: 3 Day(s) SAP Copyrights and Trademarks 2016 SAP SE or an SAP affiliate company. All rights reserved. No

More information

BOCL01 SAP BusinessObjects Cloud

BOCL01 SAP BusinessObjects Cloud BOCL01 SAP BusinessObjects Cloud. COURSE OUTLINE Course Version: 02 Course Duration: 3 Day(s) SAP Copyrights and Trademarks 2017 SAP SE or an SAP affiliate company. All rights reserved. No part of this

More information

S4H00 S/4HANA Overview

S4H00 S/4HANA Overview S4H00 S/4HANA Overview. COURSE OUTLINE Course Version: 06 Course Duration: 3 Day(s) SAP Copyrights and Trademarks 2018 SAP SE or an SAP affiliate company. All rights reserved. No part of this publication

More information

UX102. Introduction to SAP User Experience UIs for Application Consultants COURSE OUTLINE. Course Version: 02 Course Duration: 2 Day(s)

UX102. Introduction to SAP User Experience UIs for Application Consultants COURSE OUTLINE. Course Version: 02 Course Duration: 2 Day(s) UX102 Introduction to SAP User Experience UIs for Application Consultants. COURSE OUTLINE Course Version: 02 Course Duration: 2 Day(s) SAP Copyrights and Trademarks 2016 SAP SE or an SAP affiliate company.

More information

SM255. Change Request Management with SAP Solution Manager Configuration COURSE OUTLINE. Course Version: 18 Course Duration: 5 Day(s)

SM255. Change Request Management with SAP Solution Manager Configuration COURSE OUTLINE. Course Version: 18 Course Duration: 5 Day(s) SM255 Change Request Management with SAP Solution Manager 7.2 - Configuration. COURSE OUTLINE Course Version: 18 Course Duration: 5 Day(s) SAP Copyrights and Trademarks 2018 SAP SE or an SAP affiliate

More information

SAPX01. SAP User Experience Fundamentals and Best Practices COURSE OUTLINE. Course Version: 15 Course Duration: 3 Day(s)

SAPX01. SAP User Experience Fundamentals and Best Practices COURSE OUTLINE. Course Version: 15 Course Duration: 3 Day(s) SAPX01 SAP User Experience Fundamentals and Best Practices. COURSE OUTLINE Course Version: 15 Course Duration: 3 Day(s) SAP Copyrights and Trademarks 2017 SAP SE or an SAP affiliate company. All rights

More information

S4F01 Financial Accounting in SAP S/4HANA for SAP ERP FI Professionals

S4F01 Financial Accounting in SAP S/4HANA for SAP ERP FI Professionals S4F01 Financial Accounting in SAP S/4HANA for SAP ERP FI Professionals. COURSE OUTLINE Course Version: 11 Course Duration: SAP Copyrights and Trademarks 2018 SAP SE or an SAP affiliate company. All rights

More information

UX102. Introduction to SAP User Experience UIs for Application Consultants COURSE OUTLINE. Course Version: 03 Course Duration: 2 Day(s)

UX102. Introduction to SAP User Experience UIs for Application Consultants COURSE OUTLINE. Course Version: 03 Course Duration: 2 Day(s) UX102 Introduction to SAP User Experience UIs for Application Consultants. COURSE OUTLINE Course Version: 03 Course Duration: 2 Day(s) SAP Copyrights and Trademarks 2018 SAP SE or an SAP affiliate company.

More information

I am connected! Now what?

I am connected! Now what? I am connected! Now what? Rui Gaspar Head of Database & Technology and Analytics 4/11/2015 Version 1.0 1 Agenda The IoT Why should you care? SAP s IoT for Business Optimize your value chain through IoT

More information

S4F10. Business Processes in Financial Accounting in SAP S/4HANA COURSE OUTLINE. Course Version: 08 Course Duration: 5 Day(s)

S4F10. Business Processes in Financial Accounting in SAP S/4HANA COURSE OUTLINE. Course Version: 08 Course Duration: 5 Day(s) S4F10 Business Processes in Financial Accounting in SAP S/4HANA. COURSE OUTLINE Course Version: 08 Course Duration: 5 Day(s) SAP Copyrights and Trademarks 2018 SAP SE or an SAP affiliate company. All rights

More information

S4130. Business Processes in S/4HANA Asset Management COURSE OUTLINE. Course Version: 05 Course Duration: 5 Day(s)

S4130. Business Processes in S/4HANA Asset Management COURSE OUTLINE. Course Version: 05 Course Duration: 5 Day(s) S4130 Business Processes in S/4HANA Asset Management. COURSE OUTLINE Course Version: 05 Course Duration: 5 Day(s) SAP Copyrights and Trademarks 2016 SAP SE or an SAP affiliate company. All rights reserved.

More information

S4220 Production Planning in SAP S/4HANA

S4220 Production Planning in SAP S/4HANA S4220 Production Planning in SAP S/4HANA. COURSE OUTLINE Course Version: 08 Course Duration: 5 Day(s) SAP Copyrights and Trademarks 2018 SAP SE or an SAP affiliate company. All rights reserved. No part

More information

Transform Procurement & Total Spend Management

Transform Procurement & Total Spend Management Transform Procurement & Total Spend Management Matt Tichelaar Senior Solution Engineer CONVERGE. SCALE. CARE FORWARD WITH SAP. 2017 SAP SE OR AN SAP AFFILIATE COMPANY. ALL RIGHTS RESERVED. 1 THE POWER

More information

UX100 SAP Fiori Foundation

UX100 SAP Fiori Foundation UX100 SAP Fiori Foundation. COURSE OUTLINE Course Version: 03 Course Duration: 3 Day(s) SAP Copyrights and Trademarks 2017 SAP SE or an SAP affiliate company. All rights reserved. No part of this publication

More information

FAQs Opportunity Management SAP Hybris Cloud for Customer PUBLIC

FAQs Opportunity Management SAP Hybris Cloud for Customer PUBLIC FAQs Opportunity Management SAP Hybris Cloud for Customer PUBLIC TABLE OF CONTENTS FAQS OPPORTUNITY MANAGEMENT...3 1. You want to create forecast based in set of opportunities, however you are unsure in

More information

SAP Smart Business Service

SAP Smart Business Service SAP Smart Business Service Legal disclaimer The information in this presentation is confidential and proprietary to SAP and may not be disclosed without the permission of SAP. This presentation is not

More information

EWM130. Production Integration with SAP EWM COURSE OUTLINE. Course Version: 16 Course Duration: 2 Day(s)

EWM130. Production Integration with SAP EWM COURSE OUTLINE. Course Version: 16 Course Duration: 2 Day(s) EWM130 Production Integration with SAP EWM. COURSE OUTLINE Course Version: 16 Course Duration: 2 Day(s) SAP Copyrights and Trademarks 2016 SAP SE or an SAP affiliate company. All rights reserved. No part

More information

S4EA1. SAP S/4HANA Asset Management - Functions and Innovations COURSE OUTLINE. Course Version: 05 Course Duration: 1 Day(s)

S4EA1. SAP S/4HANA Asset Management - Functions and Innovations COURSE OUTLINE. Course Version: 05 Course Duration: 1 Day(s) S4EA1 SAP S/4HANA Asset Management - Functions and Innovations. COURSE OUTLINE Course Version: 05 Course Duration: 1 Day(s) SAP Copyrights and Trademarks 2016 SAP SE or an SAP affiliate company. All rights

More information

ACT100 SAP Activate Methodology

ACT100 SAP Activate Methodology ACT100 SAP Activate Methodology. COURSE OUTLINE Course Version: 04 Course Duration: 2 Day(s) SAP Copyrights and Trademarks 2017 SAP SE or an SAP affiliate company. All rights reserved. No part of this

More information

S4F80 SAP BPC Optimized for SAP S/4HANA

S4F80 SAP BPC Optimized for SAP S/4HANA S4F80 SAP BPC Optimized for SAP S/4HANA. COURSE OUTLINE Course Version: 06 Course Duration: 4 Day(s) SAP Copyrights and Trademarks 2017 SAP SE or an SAP affiliate company. All rights reserved. No part

More information

Intercompany Integration Solution for SAP Business One Discover How the Intercompany Solution Enables Financial Data Consolidation & Provides

Intercompany Integration Solution for SAP Business One Discover How the Intercompany Solution Enables Financial Data Consolidation & Provides Intercompany Integration Solution for SAP Business One Discover How the Intercompany Solution Enables Financial Data Consolidation & Provides Business Insight TABLE OF CONTENTS OVERVIEW... 3 CONSOLIDATION

More information

BIT665 SAP Information Lifecycle Management (SAP ILM)

BIT665 SAP Information Lifecycle Management (SAP ILM) BIT665 SAP Information Lifecycle Management (SAP ILM). COURSE OUTLINE Course Version: 11 Course Duration: 2 Day(s) SAP Copyrights and Trademarks 2018 SAP SE or an SAP affiliate company. All rights reserved.

More information

S4SD1. SAP S/4HANA Sales - Functions & Innovations COURSE OUTLINE. Course Version: 05 Course Duration: 1 Day(s)

S4SD1. SAP S/4HANA Sales - Functions & Innovations COURSE OUTLINE. Course Version: 05 Course Duration: 1 Day(s) S4SD1 SAP S/4HANA Sales - Functions & Innovations. COURSE OUTLINE Course Version: 05 Course Duration: 1 Day(s) SAP Copyrights and Trademarks 2016 SAP SE or an SAP affiliate company. All rights reserved.

More information

S4F04. SAP S/4HANA Central Finance COURSE OUTLINE. Course Version: 05 Course Duration:

S4F04. SAP S/4HANA Central Finance COURSE OUTLINE. Course Version: 05 Course Duration: S4F04 SAP S/4HANA Central Finance. COURSE OUTLINE Course Version: 05 Course Duration: SAP Copyrights and Trademarks 2018 SAP SE or an SAP affiliate company. All rights reserved. No part of this publication

More information

S4225. SAP S/4HANA Production Orders COURSE OUTLINE. Course Version: 09 Course Duration: 5 Day(s)

S4225. SAP S/4HANA Production Orders COURSE OUTLINE. Course Version: 09 Course Duration: 5 Day(s) S4225 SAP S/4HANA Production Orders. COURSE OUTLINE Course Version: 09 Course Duration: 5 Day(s) SAP Copyrights and Trademarks 2018 SAP SE or an SAP affiliate company. All rights reserved. No part of

More information

S4F80 SAP BPC Optimized for SAP S/4HANA

S4F80 SAP BPC Optimized for SAP S/4HANA S4F80 SAP BPC Optimized for SAP S/4HANA. COURSE OUTLINE Course Version: 05 Course Duration: 3 Day(s) SAP Copyrights and Trademarks 2016 SAP SE or an SAP affiliate company. All rights reserved. No part

More information

UX412. Mobilizing SAP Fiori Standard Apps COURSE OUTLINE. Course Version: 02 Course Duration: 3 Day(s)

UX412. Mobilizing SAP Fiori Standard Apps COURSE OUTLINE. Course Version: 02 Course Duration: 3 Day(s) UX412 Mobilizing SAP Fiori Standard Apps. COURSE OUTLINE Course Version: 02 Course Duration: 3 Day(s) SAP Copyrights and Trademarks 2016 SAP SE or an SAP affiliate company. All rights reserved. No part

More information

SAP Machine Learning for Hadoop. Customer

SAP Machine Learning for Hadoop. Customer SAP Machine Learning for Hadoop Customer SAP BusinessObjects Predictive Analytics and Big Data 1. Support for end-to-end operational predictive lifecycle on Hadoop 2. Business Analyst Friendly No coding

More information

ACT200 Agile Project Delivery

ACT200 Agile Project Delivery ACT200 Agile Project Delivery. COURSE OUTLINE Course Version: 11 Course Duration: SAP Copyrights and Trademarks 2018 SAP SE or an SAP affiliate company. All rights reserved. No part of this publication

More information

ACT200 Agile Project Delivery

ACT200 Agile Project Delivery ACT200 Agile Project Delivery. COURSE OUTLINE Course Version: 11 Course Duration: 2 Day(s) SAP Copyrights and Trademarks 2017 SAP SE or an SAP affiliate company. All rights reserved. No part of this publication

More information

FS300 SAP Insurance Overview

FS300 SAP Insurance Overview FS300 SAP Insurance Overview. COURSE OUTLINE Course Version: 11 Course Duration: SAP Copyrights and Trademarks 2018 SAP SE or an SAP affiliate company. All rights reserved. No part of this publication

More information

Integration Framework for SAP Business One

Integration Framework for SAP Business One Integration Framework for SAP Business One Calling the Service Layer Object PUBLIC Global Roll-out October 2018, Krisztián Pápai Note: The example templates in this document are not officially supported

More information

EWM110. Basic Customizing SAP Extended Warehouse Management COURSE OUTLINE. Course Version: 17 Course Duration:

EWM110. Basic Customizing SAP Extended Warehouse Management COURSE OUTLINE. Course Version: 17 Course Duration: EWM110 Basic Customizing SAP Extended Warehouse Management. COURSE OUTLINE Course Version: 17 Course Duration: SAP Copyrights and Trademarks 2018 SAP SE or an SAP affiliate company. All rights reserved.

More information

S4F22. Cost Center and Internal Order Accounting in SAP S/4HANA COURSE OUTLINE. Course Version: 08 Course Duration: 5 Day(s)

S4F22. Cost Center and Internal Order Accounting in SAP S/4HANA COURSE OUTLINE. Course Version: 08 Course Duration: 5 Day(s) S4F22 Cost Center and Internal Order Accounting in SAP S/4HANA. COURSE OUTLINE Course Version: 08 Course Duration: 5 Day(s) SAP Copyrights and Trademarks 2018 SAP SE or an SAP affiliate company. All rights

More information

S4PR1 SAP S/4HANA Sourcing & Procurement - Functions & Innovations

S4PR1 SAP S/4HANA Sourcing & Procurement - Functions & Innovations S4PR1 SAP S/4HANA Sourcing & Procurement - Functions & Innovations. COURSE OUTLINE Course Version: 09 Course Duration: SAP Copyrights and Trademarks 2018 SAP SE or an SAP affiliate company. All rights

More information

Week 2 Unit 2: System Landscape Setup and Installation

Week 2 Unit 2: System Landscape Setup and Installation Week 2 Unit 2: System Landscape Setup and Installation Ttrade s system landscape at a glance 1.1 Prepare SAP Best Practices Sandbox System Use software appliance for jump-start implementation 1.2 Prepare

More information

ACT100 SAP Activate Methodology

ACT100 SAP Activate Methodology ACT100 SAP Activate Methodology. COURSE OUTLINE Course Version: 005 Course Duration: SAP Copyrights and Trademarks 2018 SAP SE or an SAP affiliate company. All rights reserved. No part of this publication

More information

5 Steps for Using AI to Avoid Bias in Decision Making

5 Steps for Using AI to Avoid Bias in Decision Making 5 Steps for Using AI to Avoid Bias in Decision Making Use AI as a force for good Artificial intelligence (AI) has the potential to be a tremendous force for good. It can help us avoid bias in hiring, operations,

More information

Intercompany Integration Solution for SAP Business One Intercompany Reporting

Intercompany Integration Solution for SAP Business One Intercompany Reporting Intercompany Integration Solution for SAP Business One Intercompany Reporting TABLE OF CONTENTS OVERVIEW... 3 Branch Inventory in Warehouse Report... 3 Branch Sales Analysis Report... 4 Branch Balances

More information

COURSE LISTING. Courses Listed. Training for Cloud with SAP Enable Now in Manage Sustainable Content. Grundlagen

COURSE LISTING. Courses Listed. Training for Cloud with SAP Enable Now in Manage Sustainable Content. Grundlagen Training for Cloud with SAP Enable Now in Manage Sustainable Content Courses Listed Grundlagen SEN100 - SAP Enable Now Basic Training for Authors SEN200 - SAP Enable Now Basic Training for Master Authors

More information

E2E220. SAP Test Management Overview COURSE OUTLINE. Course Version: 17 Course Duration: 3 Day(s)

E2E220. SAP Test Management Overview COURSE OUTLINE. Course Version: 17 Course Duration: 3 Day(s) E2E220 SAP Test Management Overview. COURSE OUTLINE Course Version: 17 Course Duration: 3 Day(s) SAP Copyrights and Trademarks 2017 SAP SE or an SAP affiliate company. All rights reserved. No part of

More information

PLM315 Customizing Maintenance Processing

PLM315 Customizing Maintenance Processing PLM315 Customizing Maintenance Processing. COURSE OUTLINE Course Version: 16 Course Duration: 3 Day(s) SAP Copyrights and Trademarks 2017 SAP SE or an SAP affiliate company. All rights reserved. No part

More information

BW465. SAP BW/4HANA - User Management and Authorizations COURSE OUTLINE. Course Version: 14 Course Duration:

BW465. SAP BW/4HANA - User Management and Authorizations COURSE OUTLINE. Course Version: 14 Course Duration: BW465 SAP BW/4HANA - User Management and Authorizations. COURSE OUTLINE Course Version: 14 Course Duration: SAP Copyrights and Trademarks 2018 SAP SE or an SAP affiliate company. All rights reserved. No

More information

SAP Business One Service Mobile App

SAP Business One Service Mobile App SAP Business One Service Mobile App Global Rollout December, 2018 SAP Business One Service - Introduction Provide on-site services for customers by easily and efficiently reviewing and resolving assigned

More information