SAP Edge Services, cloud edition Streaming Service - Configuration Guide Version 1803

Size: px
Start display at page:

Download "SAP Edge Services, cloud edition Streaming Service - Configuration Guide Version 1803"

Transcription

1 SAP Edge Services, cloud edition Streaming Service - Configuration Guide Version 1803

2 Public TABLE OF CONTENTS 1 INTRODUCTION PREREQUISITES JAVA_HOME Python (version 2.7.x 64-bit) INSTALLATION CONNECTING TO THE STREAMING SERVICE EDGE CONSOLE URL Admin Password IOT SERVICES DATA MAPPING IoT Services Naming IoT Services to Streaming Service Data Mapping Streaming Service to IoT Services Data Mapping IOT SERVICES CONFIGURATION Configuration DATABASE BACKUPS AND MAINTENANCE CUSTOMIZING SSL CONFIGURATION CUSTOMIZING EDGE CONSOLE PORTS LOG FILE CONFIGURATION ODATA CONFIGURATION (DEPRECATED) CONNECTING TO THE STREAMING SERVICE DATABASE TROUBLESHOOTING

3 1 INTRODUCTION This document focuses on the installation and configuration of SAP Edge Services - Streaming Service. 2 PREREQUISITES In addition to Java 1.8.x 64-bit, Streaming Service requires the following software package to already be installed on the host: Python version 2.7.x 64-bit The detailed installation requirements are discussed below. 2.1 JAVA_HOME The JAVA_HOME environment variable must refer to the same version of Java that the SAP IoT Services Gateway Edge process is started under (and is found on the system path). Note: SAP Edge Services requires JAVA_HOME to be configured on Windows x64. JAVA_HOME can point to a JRE or a JDK folder. 2.2 Python (version 2.7.x 64-bit) You can install Python either by downloading it from or on Linux by using the package manager local to the Linux distribution (apt, yum, or rpm). Python can be installed to any recommended directory and must be included in the PATH environment variable. 3 INSTALLATION Streaming Service installs to <edgeservices>/dep_iot_edge. This location is referred to as <dep_iot_edge> in this document. <edgeservices> refers to the location where SAP Edge Services is installed. By default, SAP Edge Services installs in a folder named edgeservices in the parent folder of the IoT Services Gateway Edge folder (i.e. at the same folder level as Gateway Edge folder). For more details on changing the installation folder of SAP Edge Services, refer to the SAP Edge Services Overview Guide. Streaming Service is installed through the Edge Services Console (Policy Service). The Edge Services Console (Policy Service) pushes all the bundles required by Streaming Service to the gateway and starts the bundles. Starting the bundle the first time starts the setup for Streaming Service. 4 CONNECTING TO THE STREAMING SERVICE EDGE CONSOLE 4.1 URL The URL for the Streaming Service Edge Console should be entered in the following format: Admin Password The setup for Streaming Service generates a secure random admin password for the Streaming Service Edge Console and copies it to the IoT Services Cockpit gateway properties with the key STREAM_SECRET in the corresponding network. The password can and should be changed using the Streaming Service Edge Console and cannot be done through the IoT Services Cockpit. Changes to the admin password made through Streaming Service Edge Console are not reflected in the IoT Services Cockpit properties. The STREAM_SECRET property can safely be deleted once the password is changed through the Streaming Service Edge Console. Process Flow Initial Login 1. The Streaming Service install is requested from the Policy Server. 2. The Streaming Service install program generates a secure random admin password. 3. The Streaming Service install program copies the admin password to the STREAM_SECRET gateway property. 4. The Administrator logs into the IoT Services Cockpit and retrieves the admin password in the STREAM_SECRET gateway property. 3

4 5. The Administrator logs into the Streaming Service Edge Console using the admin password stored in STREAM_SECRET. 6. The Administrator is advised to change the Streaming Service Edge Console admin password: a. The Administrator uses the Streaming Service Edge Console to change the admin password. The Administrator must keep track of the admin password in a separate secure system. b. At this point STREAM_SECRET is out of date and should be deleted to avoid future confusion. 5 IOT SERVICES DATA MAPPING 5.1 IoT Services Naming Note: In this section, we refer to IoT Services nomenclature using the values from IoT Services json payload column. IoT Services Data Model profileid capabilities/configaddr IoT Services json payload sensortypealternateid capabilityalternateid 5.2 IoT Services to Streaming Service Data Mapping The IoT services protocol plugin comes preconfigured with the Streaming Service. All data sent to the IoTServices gateway is intercepted and published by the EdgeInterceptor. The IoT services protocol plugin receives this data and maps the data into Streaming Service format as follows: Streaming Service Value from IoT Services Notes Data Model SensorProfileName {Label}_{sensorTypeAlternateId}_{capabilityAlternateId} ** Case Sensitive! SensorProfileName {Label}_{sensorTypeAlternateId}_{capabilityAlternateId} _{PropertyName} ** Case Sensitive! (relevant for Capabilities with Property Names defined) DeviceId {NSAP/MAC Address from IoT services} DeviceTag {sensortypealternateid} SensorId {TSAP from IoT services} SensorTag Unmapped Timestamp {ArrivalTime} ReadingValue {measures} Note: The sensortypealternateid/capabilityalternateid combination is used to lookup the Label in the IoT Services data model. Note: The mapping of SensorProfileName is case-sensitive! If Property Names for Capabilities are provided in the IoT Services data model, then the mapping from IoT Services to Streaming service will happen as follows: 1. The data will be mapped at the Capability Level where SensorProfileName = {Label}_{sensorTypeAlternateId}_{capabilityAlternateId} 2. The data will be mapped a second time at the individual Propery Level for each Property, where the SensorProfileName = {Label}_{sensorTypeAlternateId}_{capabilityAlternateId}_{PropertyName} Therefore, if a Capability has 3 Properties (Latitude, Longitude, Quote), then the data will be mapped four times into Streaming Service. In this case, it is important to only use the SensorProfile at the Capability level to define Fidelity Rules, as this ensures the outgoing payload contains all the data. If Streaming Service does not contain a Sensor Profile Name that matches, the message is dropped from further processing by Streaming Service. 4

5 Example data flow (mqtt): 1. An mqtt device with MAC Address AA:BB:CC:DD sends data to IoT Services: {"sensortypealternateid":"2", "capabilityalternateid": [100], "measures": [[89.5]], "sensoralternateid": "TempSensor103"} 2. Edge Interceptor forwards data to the IoT services protocol plugin. 3. The sensortypealternateid/capabilityalternateid combination is used to lookup the Label in the IoT Services data model (i.e. FreezerTemperature ) 4. IoT services protocol plugin maps the message into the Streaming Service Data Model as follows: Streaming Service Data Value from IoT Services Notes Model SensorProfileName FreezerTemperature_2_100 DeviceId AA:BB:CC:DD DeviceTag 2 sensortypealternateid = 2 SensorId Converted from lognodeaddr SensorTag Timestamp {ArrivalTime} ReadingValue Streaming Service to IoT Services Data Mapping The IoT services enterprise plugin comes preconfigured with the Streaming Service (refer to the Streaming Service - Administration Guide for details on configurating the IoT services enterprise plugin). The IoT services enterprise plugin is responsible for publishing both enterprise events and fidelity readings back to IoT Services. The Streaming Service maps data back into IoT Services data format as follows: IoT Services Data Model Enterprise Event Mapping Fidelity Event Mapping capabilityalternateid (capabilities/configaddr) Configured IoT services enterprise plugin value for ENTERPRISE_MEASURE_ID is used. The value must be defined in the IoT Services data model in sensortypealternateid defined by ENTERPRISE_PROFILE_ID. capabilityalternateid value remains the same as the incoming value DeviceAddress (NSAP/MAC Address) sensortypealternateid (profileid) If ENTERPRISE_PROFILE_ID is not defined, then the value for ENTERPRISE_MEASURE_ID must be defined in every profile for which enterprise events will be generated. DeviceAddress remains the same as the incoming value Configured IoT services enterprise plugin value for ENTERPRISE_PROFILE_ID is used. If not provided, then the outgoing sensortypealternateid value is same as the incoming sensortypealternateid that generated the event. DeviceAddress remains the same as the incoming value sensortypealternateid remains the same as the incoming value 5

6 SensorAddress (TSAP from IoT services) ArrivalTime measures New sensor address for Enterprise event in format (sensoraddress + SAPES + measureid) ArrivalTime remains the same as the incoming value The default ENTERPRISE_TEMPLATE for Enterprise Events is used. (Refer to the ENTERPRISE_TEMPLATE section in Streaming Service - Administration Guide.) SensorAddress remains the same as the incoming value ArrivalTime remains the same as the incoming value measures remains the same as the incoming value 6 IOT SERVICES CONFIGURATION 6.1 Configuration The Streaming Service has the following configuration values that can be set in the IoT Services Cockpit. Property Name: refreshtimeperiodfordatamodel Unit of Measure: seconds Default Value: 3600 Streaming Service polls for data model updates at the interval set by refreshtimeperiodfordatamodel. Any updates to the data model are consumed at this interval. Updates to the refreshtimeperiodfordatamodel value are also consumed at the same time. If refreshtimeperiodfordatamodel value changes, then the next interval uses the new value. refreshtimeperiodfordatamodel value (nothing) Behavior Data model (and refreshtimeperiodfordatamodel value) is read at the default interval of 3600 seconds. 600 Data model (and refreshtimeperiodfordatamodel value) is read at an interval of 600 seconds. Note: It is strongly recommended that you start the IoT Services Gateway Edge with offline support ( Disconnected Startup ) enabled. Refer to the SAP Edge Services Overview Guide for more information about enabling this feature. 7 DATABASE BACKUPS AND MAINTENANCE Streaming Service provides a database that is self-tuning. This database stores configuration, edge events and edge fidelity events. The database consists of a database file and a database transaction log file. Database best practices dictate that the database transaction log file must be maintained. Additionally, the database may be configured for backups as required. WARNING: By default, Streaming Service is not configured to perform database backups. Streaming Service truncates the database transaction log file when it reaches 1GB. This is accomplished via a database event DEP_Admin.TruncateLogFile. If there is a need for separate database backups, then this event should be disabled and an alternate backup and transaction log file maintenance plan should be implemented. Consult SQL Anywhere 17 product documentation for details on database backup options. 6

7 8 CUSTOMIZING SSL CONFIGURATION The Streaming Service setup (setup.sh/setup.bat) generates self-signed SSL certificates for use by: Streaming Service web server for HTTPS HttpProtocolPlugin to enable HTTPS and WSS This section describes how to replace both of the self-signed certificates in the following Java keystore: <dep_iot_edge>/store/dep.jks By default, the Streaming Service setup (setup.sh/setup.bat) uses Java Keytool to generate a 2048-bit RSA key pair with a validity period of 10,000 days in dep.jks under the alias httpprotocolplugin. The key pair is then duplicated under the alias com.sap.dep.webserver. The HttpProtocolPlugin makes use of the former and the Streaming Service webserver makes use of the latter. Both enable secure communications. Note: If the certificate being placed in the keystore is not a trusted certificate (for example, if it is self-signed), then it should be the same for both aliases so that the WebSocket communication used by the emulated device on the Live Sensors page works without requiring you to go to the web server hosted by HttpProtocolPlugin and manually accepting the untrusted certificate in the browser. If the certificates are trusted by the browser, they can be different without causing any issues. To connect to a secured enterprise endpoint using RESTEnterprisePlugin or WebSocketEnterprisePlugin and default configuration, the required certificates must be put into this cacerts keystore. To add a certificate to the cacerts keystore, use the following command with $keytool and $cacerts being the full path for the current platform: $keytool -import -alias $certificate_alias -keystore $cacerts -file $your_certificate_file To manually generate a key pair with Java keytool for use by HttpProtocolPlugin, use the following command: $keytool -genkeypair -keyalg RSA -alias "httpprotocolplugin" -keystore <dep_iot_edge>/store/dep.jks" -storepass $password_for_keystore -validity keysize 2048 After doing this, the value of the KEY_STORE_AUTHENTICATION configuration for HttpProtocolPlugin in the database should be updated to match $password. Refer to the Protocol Plugin Configuration section for instructions. To manually export the HttpProtocolPlugin key pair into the alias used by the webserver, use the following command: $keytool -importkeystore -srckeystore <dep_iot_edge>/store/dep.jks" -srcalias "httpprotocolplugin" -srcstorepass $password_for_keystore -src-keypass $password_for_keystore -destkeystore <dep_iot_edge>/store/dep.jks" -destalias "com.sap.dep.webserver " -deststorepass $password_for_keystore -destkeypass $password_for_webserver_cert Note: To obfuscate password properties that can optionally be obfuscated using Jetty, run the command java -cp jetty-all v uber.jar org.eclipse.jetty.util.security.password $password from the Streaming Service java_lib directory, replacing $password with the desired password. The obfuscated version of the password produced by the command can be identified by the OBF: prefix. When using the obfuscated password, you must include the OBF: prefix. After doing this, the value of the com.sap.dep.webserver.ssl.cert.auth property in <dep_iot_edge>/store/webserver.properties should be updated to be the value of $password_for_webserver_cert either Jetty obfuscated value or Base64 encoded. In addition the value of com.sap.dep.webserver.ssl.keystore.auth property in the same file should be updated to the value of $password_for_keystore Jetty obfuscated value or Base64 encoded. 7

8 To import a PKCS12 file into the Streaming Service keystore, use the following command: $keytool -importkeystore -srcalias "1" -srckeystore $pkcs12_filename -srcstorepass $pkcs12_password -srcstoretype PKCS12 -destalias $dest_alias -destkeystore "<dep_iot_edge>/store/dep.jks" -deststorepass $password_for_keystore The value for $dest_alias should be either httpprotocolplugin or com.sap.dep.webserver depending on which certificate you want to import. 9 CUSTOMIZING EDGE CONSOLE PORTS The Streaming Service web server ports for http and for https are configurable by modifying the file <dep_iot_edge>\store\webserver.properties and restarting the Streaming Service. By default, the ports are: com.sap.dep.webserver.httpport=3000 com.sap.dep.webserver.httpsport= LOG FILE CONFIGURATION All Streaming Service log files are stored in <dep_iot_edge>/log/ The following is a summary of the log files generated by Streaming Service. File Name Description misc_rootlogger.log This is the log4j root log file. IoTAdapter.log Logging for the main Streaming Service process IoTAdapter. StreamingLitePlugin.log Logging for the Streaming Lite Engine plugin. Webserver.log Logging for the Jetty webserver hosting the Streaming Service Console. EdgeConsole.log Logging for the Streaming Server Console program. WhitelistManager.log Logging of messages from non-whitelisted devices. StreamingLite.log The Streaming Lite log file stout and sterr are redirected to this file. HttpProtocolPlugin.log Logging for the HTTP plugin. RESTEnterprisePlugin.log Logging for the REST Enterprise plugin. MQTTPlugin.log Logging for the MQTT Protocol Plugin. WebSocketEnterprisePlugin.log Logging for the Web Socket Enterprise plugin. All files except StreamingLite.log roll over when they reach a size of 5MB. When a file has rolled over five times, the oldest file is overwritten. The configuration of the logging level is maintained in the Streaming Service Edge Console. Refer to Runtime Settings section of Streaming Service Administration Guide for instructions to change the global logging level. Additionally, each plugin can have its own log level that overrides the global value for that plugin. See the appropriate plugin Configuration section for instructions about changing a protocol or enterprise plugin log level. 11 ODATA CONFIGURATION Streaming Service provides an OData interface to query data. The OData feature has two layers of authentication: 1. The external layer is managed by Streaming Service web server. a. A technical user is created named odata_user. 2. The database layer is managed by Streaming Service database server (SAP SQL Anywhere), which is the destination of the forwarded OData call from the web server. 8

9 a. The username for database layer is DEP_OData and the password is generated during the setup process. Users do not need to work with the database layer authentication directly. The major steps relating to OData configuration are as follows: The password for the technical user odata_user can be changed in the Streaming Service Console. Go to Security => passwords => Change OData Credentials (refer to the Streaming Service - Administration Guide for details). Note: The DEP_OData database user has read-only permission to only two tables in the database: EDGE_EVENT and EDGE_FIDELITY_SENSOR_READING. OData Queries Notes on using the OData services: - The OData endpoint is - Authentication is via a basic authentication header for the OData technical user (odata_user) - EDGE_EVENT and EDGE_FIDELITY_SENSOR_READING Entity Sets expose the same-named database tables. - edgeeventswithnames and edgesensorfidelityreadingswithnames Entity Sets expose the same information but with the addition of sensor profile and rule names rather than only the Ids - One additional sample function, GetAggregateSensorFidelity, has been exposed. o Input Filters (AGGREGATE is required; all others are optional): SENSOR_PROFILE_ID DEVICE_ID DEVICE_TAG SENSOR_ID SENSOR_TAG AGGREGATE (required) One of ('MIN', 'MAX', 'AVG', 'SUM', 'COUNT', 'VARIANCE', 'STDDEV') TIME_WINDOW Maximum age of readings in seconds. Ignored if not greater than 0. NUM_RECORDS o Maximum number of records to retrieve. Ignored if not greater than 0. Output: Corresponding calculated value in JSON format. Sample OData Queries (Note: The following queries require a basic authentication header for OData user.) Sample call for SELECT * FROM EDGE_EVENT Sample call for SELECT * FROM EDGE_FIDELITY_SENSOR_READING Sample call for SELECT * FROM EDGE_FIDELITY_SENSOR_READING WHERE READING_VALUE > 2 LUE) gt '2')&$format=json Sample call for SELECT READING_VALUE FROM EDGE_FIDELITY_SENSOR_READING &$format=json Sample call for GetAggregateSensorFidelity function 9

10 OFILE_ID='<Your sensor Profile ID>'&AGGREGATE='MAX'&TIME_WINDOW=0&NUM_RECORDS=0 12 (DEPRECATED) CONNECTING TO THE STREAMING SERVICE DATABASE Deprecated The ODBC DSN DEP_IOT_ADMIN will be removed in a future version. Please make use of the Edge Console and available APIs to interact with the Streaming Service. For advanced configuration and troubleshooting, access to the underlying database may be beneficial. Warning: Direct database access should be performed with caution. To run SQL statements against the Streaming Service database, log in to Streaming Service host, open a command prompt and complete the following: Linux only: Update the SQL Anywhere install path in the sa_config.sh file located at <edgeservices>/ /sqlanywhere/ Linux only: Source the SQL Anywhere sa_config.sh: source <edgeservices>/sqlanywhere/17.0.8/bin64/sa_config.sh Windows only: Open a command prompt as administrator (since Streaming Service DSN is secured to administrators only) Execute the desired SQL as follows: <edgeservices>/sqlanywhere/17.0.8/bin64/dbisql -c "DSN=DEP_IOT_ADMIN" "<SQL Statement>" Note: To connect to the database from a different computer, a dedicated database user must be created where the password is known. For more information, see the SQL Anywhere documentation for the GRANT command. 13 TROUBLESHOOTING For advanced troubleshooting, check the following items: Issue Solution Check all components are running Linux: Run sudo./<dep_iot_edge>/bin/dep.sh status. Check all logs View logs in <dep_iot_edge>/log/ Under heavy load, messages could get dropped Increase the following configuration values in the with the error message [Streaming Lite Plugin] Failed to handle message as the processing StreamingLitePlugin Engine Plugin configuration: queue was full. This message exists in the StreamingLitePlugin.log file. PUBLISHING_MAX_POOL_SIZE PUBLISHING_PUBLISHER_POOL_SIZE PUBLISHING_WORK_QUEUE_CAPACITY 10

11 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 forward-looking 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 Edge Services, on-premise edition Streaming Service - Configuration Guide Version 3.0 FP01

SAP Edge Services, on-premise edition Streaming Service - Configuration Guide Version 3.0 FP01 SAP Edge Services, on-premise edition Streaming Service - Configuration Guide Version 3.0 FP01 TABLE OF CONTENTS 1 INTRODUCTION... 3 2 ARCHITECTURE... 3 3 SUPPORTED OPERATING SYSTEMS... 3 4 SUPPORTED WINDOWS

More information

Dynamic Edge Processing Streaming and Persistence Service - Configuration Guide Version 3.0

Dynamic Edge Processing Streaming and Persistence Service - Configuration Guide Version 3.0 Dynamic Edge Processing Streaming and Persistence Service - Configuration Guide Version 3.0 TABLE OF CONTENTS 1 INTRODUCTION... 4 2 ARCHITECTURE... 4 2.1 Installation Options... 5 3 SUPPORTED OPERATING

More information

SAP Business One Integration Framework

SAP Business One Integration Framework SAP Business One Integration Framework Configure Connectivity to SAP Business One Service Layer PUBLIC Global Roll-out August 2018, Krisztián Pápai TABLE OF CONTENTS 1. OBTAIN A VALID CERTIFICATE... 3

More information

Dynamic Edge Processing IoT Edge Services - Configuration Guide Version 2.0 FP02

Dynamic Edge Processing IoT Edge Services - Configuration Guide Version 2.0 FP02 Dynamic Edge Processing IoT Edge Services - Configuration Guide Version 2.0 FP02 TABLE OF CONTENTS INTRODUCTION... 4 ARCHITECTURE... 4 INSTALLATION OPTIONS... 5 SUPPORTED OPERATING SYSTEMS... 5 SUPPORTED

More information

HA215 SAP HANA Monitoring and Performance Analysis

HA215 SAP HANA Monitoring and Performance Analysis HA215 SAP HANA Monitoring and Performance Analysis. COURSE OUTLINE Course Version: 12 Course Duration: 2 Day(s) SAP Copyrights and Trademarks 2016 SAP SE or an SAP affiliate company. All rights reserved.

More information

BC414. Programming Database Updates COURSE OUTLINE. Course Version: 15 Course Duration: 2 Day(s)

BC414. Programming Database Updates COURSE OUTLINE. Course Version: 15 Course Duration: 2 Day(s) BC414 Programming Database Updates. COURSE OUTLINE Course Version: 15 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

FAQs OData Services SAP Hybris Cloud for Customer PUBLIC

FAQs OData Services SAP Hybris Cloud for Customer PUBLIC FAQs OData Services SAP Hybris Cloud for Customer PUBLIC TABLE OF CONTENTS FAQS ODATA SERVICES... 3 1. How to access the SAP Hybris Cloud for Customer OData API of your tenant?...3 2. How to access the

More information

HA215 SAP HANA Monitoring and Performance Analysis

HA215 SAP HANA Monitoring and Performance Analysis HA215 SAP HANA Monitoring and Performance Analysis. COURSE OUTLINE Course Version: 13 Course Duration: 2 Day(s) SAP Copyrights and Trademarks 2017 SAP SE or an SAP affiliate company. All rights reserved.

More information

SAP Hybris Billing, Pricing Simulation Extended Functions Release 2.0, SP03

SAP Hybris Billing, Pricing Simulation Extended Functions Release 2.0, SP03 SAP Hybris Billing, Pricing Simulation Extended Functions Release 2.0, SP03 Document Version 1.0 2017-06-13 TABLE OF CONTENTS EXTENDED FUNCTIONS IN SAP HYBRIS BILLING, PRICING SIMULATION... 3 Using Alternative

More information

ADM505. Oracle Database Administration COURSE OUTLINE. Course Version: 15 Course Duration: 3 Day(s)

ADM505. Oracle Database Administration COURSE OUTLINE. Course Version: 15 Course Duration: 3 Day(s) ADM505 Oracle Database Administration. 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 part of

More information

CLD100. Cloud for SAP COURSE OUTLINE. Course Version: 16 Course Duration: 2 Day(s)

CLD100. Cloud for SAP COURSE OUTLINE. Course Version: 16 Course Duration: 2 Day(s) CLD100 Cloud for SAP. COURSE OUTLINE Course Version: 16 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

S4H410. SAP S/4HANA Embedded Analytics and Modeling with Core Data Services (CDS) Views COURSE OUTLINE. Course Version: 05 Course Duration: 2 Day(s)

S4H410. SAP S/4HANA Embedded Analytics and Modeling with Core Data Services (CDS) Views COURSE OUTLINE. Course Version: 05 Course Duration: 2 Day(s) S4H410 SAP S/4HANA Embedded Analytics and Modeling with Core Data Services (CDS) Views. COURSE OUTLINE Course Version: 05 Course Duration: 2 Day(s) SAP Copyrights and Trademarks 2016 SAP SE or an SAP

More information

SAP Dynamic Edge Processing IoT Edge Services Developer Guide Version 2.0 FP01

SAP Dynamic Edge Processing IoT Edge Services Developer Guide Version 2.0 FP01 SAP Dynamic Edge Processing IoT Edge Services Developer Guide Version 2.0 FP01 TABLE OF CONTENTS PLUGIN DEVELOPMENT... 3 Introduction to Plugins for IoT Edge Services... 3 Protocol Plugins... 3 Enterprise

More information

S4D430 Building Views in Core Data Services ABAP (CDS ABAP)

S4D430 Building Views in Core Data Services ABAP (CDS ABAP) S4D430 Building Views in Core Data Services ABAP (CDS ABAP). COURSE OUTLINE Course Version: 10 Course Duration: 3 Day(s) SAP Copyrights and Trademarks 2017 SAP SE or an SAP affiliate company. All rights

More information

HA100 SAP HANA Introduction

HA100 SAP HANA Introduction HA100 SAP HANA Introduction. COURSE OUTLINE Course Version: 15 Course Duration: SAP Copyrights and Trademarks 2018 SAP SE or an SAP affiliate company. All rights reserved. No part of this publication may

More information

SLT100. Real Time Replication with SAP LT Replication Server COURSE OUTLINE. Course Version: 13 Course Duration: 3 Day(s)

SLT100. Real Time Replication with SAP LT Replication Server COURSE OUTLINE. Course Version: 13 Course Duration: 3 Day(s) SLT100 Real Time Replication with SAP LT Replication Server. COURSE OUTLINE Course Version: 13 Course Duration: 3 Day(s) SAP Copyrights and Trademarks 2016 SAP SE or an SAP affiliate company. All rights

More information

HA300 SAP HANA Modeling

HA300 SAP HANA Modeling HA300 SAP HANA Modeling. COURSE OUTLINE Course Version: 13 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

Week 2 Unit 3: Creating a JDBC Application. January, 2015

Week 2 Unit 3: Creating a JDBC Application. January, 2015 Week 2 Unit 3: Creating a JDBC Application January, 2015 JDBC Overview Java Database Connectivity (JDBC) Java-based data access technology Defines how a client can connect, query, and update data in a

More information

Week 2 Unit 1: Introduction and First Steps with EJB. January, 2015

Week 2 Unit 1: Introduction and First Steps with EJB. January, 2015 Week 2 Unit 1: Introduction and First Steps with EJB January, 2015 Persistence as a Service Manages the database systems in the cloud and the access to them Operations on database system level Monitoring

More information

HA301. SAP HANA 2.0 SPS03 - Advanced Modeling COURSE OUTLINE. Course Version: 15 Course Duration:

HA301. SAP HANA 2.0 SPS03 - Advanced Modeling COURSE OUTLINE. Course Version: 15 Course Duration: HA301 SAP HANA 2.0 SPS03 - Advanced Modeling. COURSE OUTLINE Course Version: 15 Course Duration: SAP Copyrights and Trademarks 2018 SAP SE or an SAP affiliate company. All rights reserved. No part of

More information

HA150 SQL Basics for SAP HANA

HA150 SQL Basics for SAP HANA HA150 SQL Basics for SAP HANA. COURSE OUTLINE Course Version: 13 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

HA300 SAP HANA Modeling

HA300 SAP HANA Modeling HA300 SAP HANA Modeling. COURSE OUTLINE Course Version: 12 Course Duration: 5 Day(s) SAP Copyrights and Trademarks 2016 SAP SE or an SAP affiliate company. All rights reserved. No part of this publication

More information

SAP IoT Application Enablement Best Practices Authorization Guide

SAP IoT Application Enablement Best Practices Authorization Guide SAP IoT Application Enablement Best Practices Authorization Guide TABLE OF CONTENTS 1 INITIAL TENANT SETUP... 3 1.1 Configure Trust... 3 1.1.1 Technical Background... 6 1.2 Establish Trust... 6 1.3 Set

More information

SAP 3D Visual Enterprise 9.0: Localization of Authoring Content

SAP 3D Visual Enterprise 9.0: Localization of Authoring Content SAP White Paper Visualization SAP 3D Visual Enterprise 9.0: Localization of Authoring Content Author once - deliver to Multiple Locales Table of Contents Localization Overview 4 Localizer Utility 6 Exporting

More information

C4C30. SAP Cloud Applications Studio COURSE OUTLINE. Course Version: 21 Course Duration: 4 Day(s)

C4C30. SAP Cloud Applications Studio COURSE OUTLINE. Course Version: 21 Course Duration: 4 Day(s) C4C30 SAP Cloud Applications Studio. COURSE OUTLINE Course Version: 21 Course Duration: 4 Day(s) SAP Copyrights and Trademarks 2018 SAP SE or an SAP affiliate company. All rights reserved. No part of

More information

SAP Edge Services, cloud edition Persistence Service Guide Version 1802

SAP Edge Services, cloud edition Persistence Service Guide Version 1802 SAP Edge Services, cloud edition Persistence Service Guide Version 1802 PERSISTENCE SERVICE - GUIDE Table of Contents ABOUT THIS DOCUMENT... 3 PERSISTENCE SERVICE (DATA STORAGE)... 4 Local Generic SQL

More information

SAP Edge Services, cloud edition Streaming Service JSON Configuration Reference Version 1802

SAP Edge Services, cloud edition Streaming Service JSON Configuration Reference Version 1802 SAP Edge Services, cloud edition Streaming Service JSON Configuration Reference Version 1802 Public TABLE OF CONTENTS 1 INTRODUCTION... 4 2 UNDERSTANDING CONFIGURATION STRUCTURE... 4 3 JSON GRAMMAR DEFINITION

More information

Using SAP SuccessFactors Integration Center for generating exports on Interview Central. SAP SuccessFactors Recruiting Management

Using SAP SuccessFactors Integration Center for generating exports on Interview Central. SAP SuccessFactors Recruiting Management Using SAP SuccessFactors Integration Center for generating exports on Interview Central SAP SuccessFactors Recruiting Management TABLE OF CONTENTS INTRODUCTION... 3 IMPORTING EXPORT DEFINITIONS INTO SAP

More information

ADM506. Database Administration Oracle II COURSE OUTLINE. Course Version: 15 Course Duration: 2 Day(s)

ADM506. Database Administration Oracle II COURSE OUTLINE. Course Version: 15 Course Duration: 2 Day(s) ADM506 Database Administration Oracle II. COURSE OUTLINE Course Version: 15 Course Duration: 2 Day(s) SAP Copyrights and Trademarks 2016 SAP SE or an SAP affiliate company. All rights reserved. No part

More information

HA355. SAP HANA Smart Data Integration COURSE OUTLINE. Course Version: 12 Course Duration: 3 Day(s)

HA355. SAP HANA Smart Data Integration COURSE OUTLINE. Course Version: 12 Course Duration: 3 Day(s) HA355 SAP HANA Smart Data Integration. COURSE OUTLINE Course Version: 12 Course Duration: 3 Day(s) SAP Copyrights and Trademarks 2016 SAP SE or an SAP affiliate company. All rights reserved. No part of

More information

Device Operation Process Diagrams. SAP Mobile Secure rapid-deployment solution September 2014

Device Operation Process Diagrams. SAP Mobile Secure rapid-deployment solution September 2014 Device Operation Process Diagrams SP Mobile Secure rapid-deployment solution September 2014 X94 Device Operation (1/6) Remote Device Management of ios Device Types SP faria faria dministrator Remote Lock

More information

UX402 SAP SAPUI5 Development

UX402 SAP SAPUI5 Development UX402 SAP SAPUI5 Development. COURSE OUTLINE Course Version: 03 Course Duration: SAP Copyrights and Trademarks 2018 SAP SE or an SAP affiliate company. All rights reserved. No part of this publication

More information

Device Application Onboarding Process Diagrams. SAP Mobile Secure: SAP Afaria 7 SP5 September 2014

Device Application Onboarding Process Diagrams. SAP Mobile Secure: SAP Afaria 7 SP5 September 2014 evice pplication Onboarding Process iagrams SP Mobile Secure: SP faria 7 SP5 September 204 X92 evice pplication Onboarding (/5) Enterprise pplication Onboarding for ios evice Types SP faria on Mobile ios

More information

Complementary Demo Guide

Complementary Demo Guide Complementary Demo Guide SAP Business ByDesign SAP Business ByDesign Global October 23, 2017 1 Table of Content 1 About this Document... 3 1.1 Purpose... 3 1.2 Demo Business Context... 3 1.3 Prerequisites...

More information

CA611 Testing with ecatt

CA611 Testing with ecatt CA611 Testing with ecatt. COURSE OUTLINE Course Version: 19 Course Duration: SAP Copyrights and Trademarks 2018 SAP SE or an SAP affiliate company. All rights reserved. No part of this publication may

More information

MDG100 Master Data Governance

MDG100 Master Data Governance MDG100 Master Data Governance. COURSE OUTLINE Course Version: 15 Course Duration: 5 Day(s) SAP Copyrights and Trademarks 2016 SAP SE or an SAP affiliate company. All rights reserved. No part of this publication

More information

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

S4H01. Introduction to SAP S/4HANA COURSE OUTLINE. Course Version: 04 Course Duration: 2 Day(s) S4H01 Introduction to SAP S/4HANA. COURSE OUTLINE Course Version: 04 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

DS10. Data Services - Platform and Transforms COURSE OUTLINE. Course Version: 15 Course Duration: 3 Day(s)

DS10. Data Services - Platform and Transforms COURSE OUTLINE. Course Version: 15 Course Duration: 3 Day(s) DS10 Data Services - Platform and Transforms. COURSE OUTLINE Course Version: 15 Course Duration: 3 Day(s) SAP Copyrights and Trademarks 2017 SAP SE or an SAP affiliate company. All rights reserved. No

More information

HA100 SAP HANA Introduction

HA100 SAP HANA Introduction HA100 SAP HANA Introduction. COURSE OUTLINE Course Version: 13 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

HA150. SAP HANA 2.0 SPS02 - SQL and SQLScript for SAP HANA COURSE OUTLINE. Course Version: 14 Course Duration: 3 Day(s)

HA150. SAP HANA 2.0 SPS02 - SQL and SQLScript for SAP HANA COURSE OUTLINE. Course Version: 14 Course Duration: 3 Day(s) HA150 SAP HANA 2.0 SPS02 - SQL and SQLScript for SAP HANA. COURSE OUTLINE Course Version: 14 Course Duration: 3 Day(s) SAP Copyrights and Trademarks 2018 SAP SE or an SAP affiliate company. All rights

More information

BOD410 SAP Lumira 2.0 Designer

BOD410 SAP Lumira 2.0 Designer BOD410 SAP Lumira 2.0 Designer. COURSE OUTLINE Course Version: 10 Course Duration: 5 Day(s) SAP Copyrights and Trademarks 2017 SAP SE or an SAP affiliate company. All rights reserved. No part of this

More information

ADM110. Installing and Patching SAP S/4HANA and SAP Business Suite Systems COURSE OUTLINE. Course Version: 17 Course Duration: 4 Day(s)

ADM110. Installing and Patching SAP S/4HANA and SAP Business Suite Systems COURSE OUTLINE. Course Version: 17 Course Duration: 4 Day(s) ADM110 Installing and Patching SAP S/4HANA and SAP Business Suite Systems. COURSE OUTLINE Course Version: 17 Course Duration: 4 Day(s) SAP Copyrights and Trademarks 2017 SAP SE or an SAP affiliate company.

More information

TADM51. SAP NetWeaver AS - DB Operation (Oracle) COURSE OUTLINE. Course Version: 15 Course Duration: 5 Day(s)

TADM51. SAP NetWeaver AS - DB Operation (Oracle) COURSE OUTLINE. Course Version: 15 Course Duration: 5 Day(s) TADM51 SAP NetWeaver AS - DB Operation (Oracle). COURSE OUTLINE Course Version: 15 Course Duration: 5 Day(s) SAP Copyrights and Trademarks 2016 SAP SE or an SAP affiliate company. All rights reserved.

More information

BC405 Programming ABAP Reports

BC405 Programming ABAP Reports BC405 Programming ABAP Reports. COURSE OUTLINE Course Version: 16 Course Duration: 5 Day(s) SAP Copyrights and Trademarks 2016 SAP SE or an SAP affiliate company. All rights reserved. No part of this publication

More information

BW305. SAP Business Warehouse Query Design and Analysis COURSE OUTLINE. Course Version: 15 Course Duration: 5 Day(s)

BW305. SAP Business Warehouse Query Design and Analysis COURSE OUTLINE. Course Version: 15 Course Duration: 5 Day(s) BW305 SAP Business Warehouse Query Design and Analysis. COURSE OUTLINE Course Version: 15 Course Duration: 5 Day(s) SAP Copyrights and Trademarks 2016 SAP SE or an SAP affiliate company. All rights reserved.

More information

ADM110. Installing and Patching SAP S/4HANA and SAP Business Suite Systems COURSE OUTLINE. Course Version: 18 Course Duration: 4 Day(s)

ADM110. Installing and Patching SAP S/4HANA and SAP Business Suite Systems COURSE OUTLINE. Course Version: 18 Course Duration: 4 Day(s) ADM110 Installing and Patching SAP S/4HANA and SAP Business Suite Systems. COURSE OUTLINE Course Version: 18 Course Duration: 4 Day(s) SAP Copyrights and Trademarks 2017 SAP SE or an SAP affiliate company.

More information

HA150. SAP HANA 2.0 SPS03 - SQL and SQLScript for SAP HANA COURSE OUTLINE. Course Version: 15 Course Duration:

HA150. SAP HANA 2.0 SPS03 - SQL and SQLScript for SAP HANA COURSE OUTLINE. Course Version: 15 Course Duration: HA150 SAP HANA 2.0 SPS03 - SQL and SQLScript for SAP HANA. COURSE OUTLINE Course Version: 15 Course Duration: SAP Copyrights and Trademarks 2018 SAP SE or an SAP affiliate company. All rights reserved.

More information

opensap How-to Guide for Exercise Instructor-Led Walkthrough of SAML2 Configuration (Week 4 Unit 5)

opensap How-to Guide for Exercise Instructor-Led Walkthrough of SAML2 Configuration (Week 4 Unit 5) opensap How-to Guide for Exercise Instructor-Led Walkthrough of SAML2 Configuration (Week 4 Unit 5) Table of Contents Configuring SSL on the Frontend Server... 3 Execute SAML 2.0 related configuration...

More information

HA240 Authorization, Security and Scenarios

HA240 Authorization, Security and Scenarios HA240 Authorization, Security and Scenarios. COURSE OUTLINE Course Version: 12 Course Duration: 2 Day(s) SAP Copyrights and Trademarks 2016 SAP SE or an SAP affiliate company. All rights reserved. No

More information

SAP Analytics Cloud model maintenance Restoring invalid model data caused by hierarchy conflicts

SAP Analytics Cloud model maintenance Restoring invalid model data caused by hierarchy conflicts SAP Analytics Cloud model maintenance Restoring invalid model data caused by hierarchy conflicts TABLE OF CONTENTS DEFINING THE PROBLEM... 3 EXAMPLE: REPRODUCING THE PROBLEM... 4 Setting up conflicting

More information

UX400. OpenUI5 Development Foundations COURSE OUTLINE. Course Version: 02 Course Duration: 5 Day(s)

UX400. OpenUI5 Development Foundations COURSE OUTLINE. Course Version: 02 Course Duration: 5 Day(s) UX400 OpenUI5 Development Foundations. COURSE OUTLINE Course Version: 02 Course Duration: 5 Day(s) SAP Copyrights and Trademarks 2017 SAP SE or an SAP affiliate company. All rights reserved. No part of

More information

FAQs Data Workbench SAP Hybris Cloud for Customer PUBLIC

FAQs Data Workbench SAP Hybris Cloud for Customer PUBLIC FAQs Data Workbench SAP Hybris Cloud for Customer PUBLIC TABLE OF CONTENTS FAQS DATA WORKBENCH... 3 1. How to migrate new set of data into the system using Data Workbench work center?...3 2. How to update/modify

More information

BC404. ABAP Programming in Eclipse COURSE OUTLINE. Course Version: 16 Course Duration: 3 Day(s)

BC404. ABAP Programming in Eclipse COURSE OUTLINE. Course Version: 16 Course Duration: 3 Day(s) BC404 ABAP Programming in Eclipse. 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 of this

More information

D75AW. Delta ABAP Workbench SAP NetWeaver 7.0 to SAP NetWeaver 7.51 COURSE OUTLINE. Course Version: 18 Course Duration:

D75AW. Delta ABAP Workbench SAP NetWeaver 7.0 to SAP NetWeaver 7.51 COURSE OUTLINE. Course Version: 18 Course Duration: D75AW Delta ABAP Workbench SAP NetWeaver 7.0 to SAP NetWeaver 7.51. COURSE OUTLINE Course Version: 18 Course Duration: SAP Copyrights and Trademarks 2018 SAP SE or an SAP affiliate company. All rights

More information

HA100 SAP HANA Introduction

HA100 SAP HANA Introduction HA100 SAP HANA Introduction. COURSE OUTLINE Course Version: 12 Course Duration: 2 Day(s) SAP Copyrights and Trademarks 2016 SAP SE or an SAP affiliate company. All rights reserved. No part of this publication

More information

BC403 Advanced ABAP Debugging

BC403 Advanced ABAP Debugging BC403 Advanced ABAP Debugging. COURSE OUTLINE Course Version: 15 Course Duration: 2 Day(s) SAP Copyrights and Trademarks 2016 SAP SE or an SAP affiliate company. All rights reserved. No part of this publication

More information

HA 450. Application Development for SAP HANA COURSE OUTLINE. Course Version: 12 Course Duration:

HA 450. Application Development for SAP HANA COURSE OUTLINE. Course Version: 12 Course Duration: HA 450 Application Development for SAP HANA. COURSE OUTLINE Course Version: 12 Course Duration: SAP Copyrights and Trademarks 2016 SAP SE or an SAP affiliate company. All rights reserved. No part of this

More information

BW305H. Query Design and Analysis with SAP Business Warehouse Powered by SAP HANA COURSE OUTLINE. Course Version: 15 Course Duration: 5 Day(s)

BW305H. Query Design and Analysis with SAP Business Warehouse Powered by SAP HANA COURSE OUTLINE. Course Version: 15 Course Duration: 5 Day(s) BW305H Query Design and Analysis with SAP Business Warehouse Powered by SAP HANA. COURSE OUTLINE Course Version: 15 Course Duration: 5 Day(s) SAP Copyrights and Trademarks 2017 SAP SE or an SAP affiliate

More information

HA240 SAP HANA 2.0 SPS02

HA240 SAP HANA 2.0 SPS02 HA240 SAP HANA 2.0 SPS02 - Authorizations, Scenarios & Security Requirements. COURSE OUTLINE Course Version: 14 Course Duration: 2 Day(s) SAP Copyrights and Trademarks 2018 SAP SE or an SAP affiliate

More information

FAQs Facebook Integration with SAP Hybris Cloud for Customer SAP Hybris Cloud for Customer PUBLIC

FAQs Facebook Integration with SAP Hybris Cloud for Customer SAP Hybris Cloud for Customer PUBLIC FAQs Facebook Integration with SAP Hybris Cloud for Customer SAP Hybris Cloud for Customer PUBLIC TABLE OF CONTENTS FAQS FACEBOOK INTEGRATION WITH SAP HYBRIS CLOUD FOR CUSTOMER...3 1. You are not able

More information

BOCRC. SAP Crystal Reports Compact Course COURSE OUTLINE. Course Version: 15 Course Duration: 3 Day(s)

BOCRC. SAP Crystal Reports Compact Course COURSE OUTLINE. Course Version: 15 Course Duration: 3 Day(s) BOCRC SAP Crystal Reports Compact Course. COURSE OUTLINE Course Version: 15 Course Duration: 3 Day(s) SAP Copyrights and Trademarks 2018 SAP SE or an SAP affiliate company. All rights reserved. No part

More information

BW405. BW/4HANA Query Design and Analysis COURSE OUTLINE. Course Version: 14 Course Duration: 5 Day(s)

BW405. BW/4HANA Query Design and Analysis COURSE OUTLINE. Course Version: 14 Course Duration: 5 Day(s) BW405 BW/4HANA Query Design and Analysis. COURSE OUTLINE Course Version: 14 Course Duration: 5 Day(s) SAP Copyrights and Trademarks 2018 SAP SE or an SAP affiliate company. All rights reserved. No part

More information

SAML with ADFS Setup Guide

SAML with ADFS Setup Guide SAML with ADFS Setup Guide Version 1.0 Corresponding Software Version: 4.2 This document is copyright of the Celonis SE. Distribution or reproduction are only permitted by written approval of the Celonis

More information

BC470. Form Printing with SAP Smart Forms COURSE OUTLINE. Course Version: 18 Course Duration:

BC470. Form Printing with SAP Smart Forms COURSE OUTLINE. Course Version: 18 Course Duration: BC470 Form Printing with SAP Smart Forms. COURSE OUTLINE Course Version: 18 Course Duration: SAP Copyrights and Trademarks 2018 SAP SE or an SAP affiliate company. All rights reserved. No part of this

More information

SAP Edge Services, cloud edition Edge Services Predictive Analytics Service Guide Version 1803

SAP Edge Services, cloud edition Edge Services Predictive Analytics Service Guide Version 1803 SAP Edge Services, cloud edition Edge Services Predictive Analytics Service Guide Version 1803 Table of Contents MACHINE LEARNING AND PREDICTIVE ANALYTICS... 3 Model Trained with R and Exported as PMML...

More information

BOID10. SAP BusinessObjects Information Design Tool COURSE OUTLINE. Course Version: 17 Course Duration: 5 Day(s)

BOID10. SAP BusinessObjects Information Design Tool COURSE OUTLINE. Course Version: 17 Course Duration: 5 Day(s) BOID10 SAP BusinessObjects Information Design Tool. COURSE OUTLINE Course Version: 17 Course Duration: 5 Day(s) SAP Copyrights and Trademarks 2017 SAP SE or an SAP affiliate company. All rights reserved.

More information

ADM535. DB2 LUW Administration for SAP COURSE OUTLINE. Course Version: Course Duration: 3 Day(s)

ADM535. DB2 LUW Administration for SAP COURSE OUTLINE. Course Version: Course Duration: 3 Day(s) ADM535 DB2 LUW Administration for SAP. COURSE OUTLINE Course Version: 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

SAP Global Track and Trace Onboarding Guide

SAP Global Track and Trace Onboarding Guide SAP Global Track and Trace Onboarding Guide Document Version: Cloud 2019.04a Implementation Guide PUBLIC TABLE OF CONTENTS 1 INTRODUCTION... 3 1.1 Prerequisite... 3 1.2 Overview... 3 2 SET UP AN SAP CLOUD

More information

SAP EarlyWatch Alert. SAP HANA Deployment Best Practices Active Global Support, SAP AG 2015

SAP EarlyWatch Alert. SAP HANA Deployment Best Practices Active Global Support, SAP AG 2015 SAP EarlyWatch Alert SAP HANA Deployment Best Practices Active Global Support, SAP AG 2015 Learning Objectives of this Presentation After completing this presentation, you will be able to: Understand the

More information

BW350H. SAP BW Powered by SAP HANA - Data Acquisition COURSE OUTLINE. Course Version: 15 Course Duration: 5 Day(s)

BW350H. SAP BW Powered by SAP HANA - Data Acquisition COURSE OUTLINE. Course Version: 15 Course Duration: 5 Day(s) BW350H SAP BW Powered by SAP HANA - Data Acquisition. COURSE OUTLINE Course Version: 15 Course Duration: 5 Day(s) SAP Copyrights and Trademarks 2017 SAP SE or an SAP affiliate company. All rights reserved.

More information

FAQs Data Cleansing SAP Hybris Cloud for Customer PUBLIC

FAQs Data Cleansing SAP Hybris Cloud for Customer PUBLIC FAQs Data Cleansing SAP Hybris Cloud for Customer PUBLIC TABLE OF CONTENTS FAQS DATA CLEANSING... 3 1. What is Data Cleansing?... 3 2. How do you scope this activity in your C4C system?...3 3. Is it possible

More information

Getting Started with FPM BOPF Integration (FBI)

Getting Started with FPM BOPF Integration (FBI) Summary Creating a List GUIBB with a Related View Level of complexity: Time required for completion: Beginner 45 min. Author: Sharon Dassa Company: SAP AG Created on: 20 February 2013 www.sap.com Table

More information

SAP Single Sign-On 2.0 Overview Presentation

SAP Single Sign-On 2.0 Overview Presentation SAP Single Sign-On 2.0 Overview Presentation June 2014 Public Legal disclaimer This presentation is not subject to your license agreement or any other agreement with SAP. SAP has no obligation to pursue

More information

BIT660 Data Archiving

BIT660 Data Archiving BIT660 Data Archiving. COURSE OUTLINE Course Version: 11 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

SAP HANA SPS 09 - What s New? SAP River

SAP HANA SPS 09 - What s New? SAP River SAP HANA SPS 09 - What s New? SAP River (Delta from SPS 08 to SPS 09) SAP HANA Product Management November, 2014 2014 SAP AG or an SAP affiliate company. All rights reserved. 1 SAP River What s New in

More information

FAQs Data Sources SAP Hybris Cloud for Customer PUBLIC

FAQs Data Sources SAP Hybris Cloud for Customer PUBLIC FAQs Data Sources SAP Hybris Cloud for Customer PUBLIC TABLE OF CONTENTS FAQS DATA SOURCES... 3 1. When I try to execute a custom report, throws an error: Report cannot be opened; report an incident, See

More information

Device Configuration Process Diagrams. SAP Mobile Secure: SAP Afaria 7 SP5 September 2014

Device Configuration Process Diagrams. SAP Mobile Secure: SAP Afaria 7 SP5 September 2014 evice onfiguration Process iagrams SP Mobile Secure: SP faria 7 SP5 September 204 evice onfiguration (/5) Passcode onfiguration of ios evice Types SP faria on Mobile ios evice SP faria Legend Mobile evice

More information

HA400 ABAP Programming for SAP HANA

HA400 ABAP Programming for SAP HANA HA400 ABAP Programming for SAP HANA. COURSE OUTLINE Course Version: 14 Course Duration: 3 Day(s) SAP Copyrights and Trademarks 2018 SAP SE or an SAP affiliate company. All rights reserved. No part of this

More information

SAP Fiori Launchpad Process Flow. SAP Fiori UX launchpad Configuration: End to End CEG: November 2014

SAP Fiori Launchpad Process Flow. SAP Fiori UX launchpad Configuration: End to End CEG: November 2014 SAP Fiori Launchpad Process Flow SAP Fiori UX launchpad Configuration: End to End CEG: November 2014 High Level Process Flow: End to End SAP Fiori UX launchpad Configuration 1 Pre-Requisites (SICF & SE80)

More information

HA100 SAP HANA Introduction

HA100 SAP HANA Introduction HA100 SAP HANA Introduction. COURSE OUTLINE Course Version: 10 Course Duration: 2 Day(s) SAP Copyrights and Trademarks 2016 SAP SE or an SAP affiliate company. All rights reserved. No part of this publication

More information

opensap TEXT ANALYTICS WITH SAP HANA PLATFORM WEEK 1

opensap TEXT ANALYTICS WITH SAP HANA PLATFORM WEEK 1 opensap TEXT ANALYTICS WITH SAP HANA PLATFORM WEEK 1 Version: January 20, 2016 Exercises / Solutions Anthony Waite / SAP Labs, LLC. Bill Miller / SAP Labs, LLC. Contents Desktop in SAP Cloud Appliance

More information

SAP SMS 365 SAP Messaging Proxy 365 Product Description August 2016 Version 1.0

SAP SMS 365 SAP Messaging Proxy 365 Product Description August 2016 Version 1.0 SAP SMS 365 SAP Messaging Proxy 365 Product Description August 2016 Version 1.0 TABLE OF CONTENTS 1 INTRODUCTION...3 2 BENEFITS...4 3 FUNCTIONAL DESCRIPTION...5 4 MESSAGE CLASSIFICATION...6 5 ARCHITECTURE...7

More information

SPNEGO SINGLE SIGN-ON USING SECURE LOGIN SERVER X.509 CLIENT CERTIFICATES

SPNEGO SINGLE SIGN-ON USING SECURE LOGIN SERVER X.509 CLIENT CERTIFICATES SPNEGO SINGLE SIGN-ON USING SECURE LOGIN SERVER X.509 CLIENT CERTIFICATES TABLE OF CONTENTS SCENARIO... 2 IMPLEMENTATION STEPS... 2 PREREQUISITES... 3 1. CONFIGURE ADMINISTRATOR FOR THE SECURE LOGIN ADMINISTRATION

More information

SAP 3D Visual Enterprise 9.0: Identifiers in VDS Files

SAP 3D Visual Enterprise 9.0: Identifiers in VDS Files SAP White Paper Visualization SAP 3D Visual Enterprise 9.0: Identifiers in VDS Files Enabling Applications to link to Visual Components and provide Change Reconciliation and Update Capabilities Table of

More information

DBW4H. Data Warehousing with SAP BW/4HANA - Delta from SAP BW powered by SAP HANA COURSE OUTLINE. Course Version: 13 Course Duration: 2 Day(s)

DBW4H. Data Warehousing with SAP BW/4HANA - Delta from SAP BW powered by SAP HANA COURSE OUTLINE. Course Version: 13 Course Duration: 2 Day(s) DBW4H Data Warehousing with SAP BW/4HANA - Delta from SAP BW powered by SAP HANA. COURSE OUTLINE Course Version: 13 Course Duration: 2 Day(s) SAP Copyrights and Trademarks 2017 SAP SE or an SAP affiliate

More information

SCM380 SAP MII - Manufacturing Integration and Intelligence Fundamentals

SCM380 SAP MII - Manufacturing Integration and Intelligence Fundamentals SCM380 SAP MII - Manufacturing Integration and Intelligence Fundamentals. COURSE OUTLINE Course Version: 10 Course Duration: 4 SAP Copyrights and Trademarks 2016 SAP SE or an SAP affiliate company. All

More information

Alert Consumption for Business Process Monitoring on MAI with SAP Solution Manager 7.1 SP12 Setup and features of notifications and incidents

Alert Consumption for Business Process Monitoring on MAI with SAP Solution Manager 7.1 SP12 Setup and features of notifications and incidents Alert Consumption for Business Process Monitoring on MAI with SAP Solution Manager 7.1 SP12 Setup and features of notifications and incidents TABLE OF CONTENTS 1 INTRODUCTION... 3 2 FUNCTIONAL OVERVIEW...

More information

ADFS Setup (SAML Authentication)

ADFS Setup (SAML Authentication) ADFS Setup (SAML Authentication) Version 1.6 Corresponding Software Version Celonis 4.3 This document is copyright of the Celonis SE. Distribution or reproduction are only permitted by written approval

More information

SAP Dynamic Edge Processing IoT Edge Services Developer Guide Version 2.0 FP02

SAP Dynamic Edge Processing IoT Edge Services Developer Guide Version 2.0 FP02 SAP Dynamic Edge Processing IoT Edge Services Developer Guide Version 2.0 FP02 [Type here] TABLE OF CONTENTS PLUGIN DEVELOPMENT... 3 Introduction to Plugins for IoT Edge Services... 3 Protocol Plugins...

More information

SAP Mobile Secure Rapiddeployment. Software Requirements

SAP Mobile Secure Rapiddeployment. Software Requirements September 2014 English SAP Mobile Secure Rapiddeployment Solution SAP SE Dietmar-Hopp-Allee 16 69190 Walldorf Germany Copyright 2014 SAP SE or an SAP affiliate company. All rights reserved. No part of

More information

UX300 SAP Screen Personas 3.0 Development

UX300 SAP Screen Personas 3.0 Development UX300 SAP Screen Personas 3.0 Development. COURSE OUTLINE Course Version: 03 Course Duration: SAP Copyrights and Trademarks 2018 SAP SE or an SAP affiliate company. All rights reserved. No part of this

More information

How-to Guide for Exercise Familiarize Yourself with SAP Fiori UX (Week 1, Unit 6, Part 2)

How-to Guide for Exercise Familiarize Yourself with SAP Fiori UX (Week 1, Unit 6, Part 2) How-to Guide for Exercise Familiarize Yourself with SAP Fiori UX (Week 1, Unit 6, Part 2) Table of Contents Introduction... 2 Connect to the opensap instance... 3 Login to the SAPgui... 5 Disable Internet

More information

BMW Group ebox Partner Archive Hotline

BMW Group ebox Partner Archive Hotline www.sap.com BMW Group ebox Partner Archive Hotline You can find a list of all needed and available contact persons here. BMW Group - Distribution Companies Please contact your local help desk. BMW AG:

More information

SAP: Speeding GRC Control Testing by 90% with SAP Solutions for GRC

SAP: Speeding GRC Control Testing by 90% with SAP Solutions for GRC 2015 SAP SE or an SAP affiliate company. All rights reserved. SAP: Speeding GRC Control Testing by 90% with SAP Solutions for GRC By implementing its solutions for governance, risk, and compliance (GRC),

More information

How-to Guide for Exercise Access the Demo Appliance Landscape (Week 1, Unit 6, Part 1)

How-to Guide for Exercise Access the Demo Appliance Landscape (Week 1, Unit 6, Part 1) How-to Guide for Exercise Access the Demo Appliance Landscape (Week 1, Unit 6, Part 1) Table of Contents Important note:... 1 Introduction to CAL... 2 Introduction to AWS... 2 Exercise overview... 2 Creating

More information

opensap: Big Data with SAP HANA Vora Course Week 03 - Exercises

opensap: Big Data with SAP HANA Vora Course Week 03 - Exercises opensap: Big Data with SAP HANA Vora Course Week 03 - Exercises opensap TABLE OF CONTENTS 1 TABLES AND VIEWS... 3 Create tables... 4 Select from the table... 4 Listing tables and views... 4 Loading tables

More information

Let s Exploit DITA: How to automate an App Catalog

Let s Exploit DITA: How to automate an App Catalog Let s Exploit DITA: How to automate an App Catalog Public Carsten Brennecke, SAP April 05, 2016 Agenda Our Challenge Our DITA Landscape Our Approach Conclusion 2016 SAP SE or an SAP affiliate company.

More information

BC401. ABAP Objects COURSE OUTLINE. Course Version: 18 Course Duration:

BC401. ABAP Objects COURSE OUTLINE. Course Version: 18 Course Duration: BC401 ABAP Objects. COURSE OUTLINE Course Version: 18 Course Duration: SAP Copyrights and Trademarks 2018 SAP SE or an SAP affiliate company. All rights reserved. No part of this publication may be reproduced

More information

SAP HANA SPS 08 - What s New? SAP HANA Web-based Development Workbench. (Delta from SPS 07 to SPS 08) SAP HANA Product Management May, 2014

SAP HANA SPS 08 - What s New? SAP HANA Web-based Development Workbench. (Delta from SPS 07 to SPS 08) SAP HANA Product Management May, 2014 SAP HANA SPS 08 - What s New? SAP HANA Web-based Development Workbench (Delta from SPS 07 to SPS 08) SAP HANA Product Management May, 2014 Agenda Background Syntax Highlighting/Formatting Tool Links /

More information

COURSE LISTING. Courses Listed. Training for Database & Technology with Administration in Database Migration. 3 September 2018 (21:31 BST)

COURSE LISTING. Courses Listed. Training for Database & Technology with Administration in Database Migration. 3 September 2018 (21:31 BST) Training for Database & Technology with Administration in Database Migration Courses Listed Fortgeschrittene TADM70 - SAP System: Operating System and Database Migration Zertifizierung C_TADM70_74 - SAP

More information