Getting Started with FPM BOPF Integration (FBI)

Size: px
Start display at page:

Download "Getting Started with FPM BOPF Integration (FBI)"

Transcription

1 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

2 Table of Contents Introduction... 3 Proposed pre-readings and related documents... 3 Configure the FBI views... 4 Configure the Related View... 5 Integrate the main view and the related view... 6 Create and configure a Web Dynpro application... 7 Configure the Web Dynpro / FPM Application... 7 Create a new Initial Screen... 9 Create a Form UIBB for selecting the Sales Order Instance... 9 Configure the Form UIBB... 9 Test the configuration Result... 16

3 Introduction Floor Plan Manager (FPM) enables you as the application developer to create modification-free applications composed of discrete UI Building Blocks (UIBBs). Generic UIBBs (GUIBBs) are centrally provided UIBBs, where the application only provides the data and a layout configuration. The rendering is done by the GUIBB. Currently FPM offers several types of GUIBBs like: Form (FPM_FORM_UIBB) List (FPM_LIST_UIBB) Tabbed (FPM_TABBED_UIBB) FBI aims at providing generic GUIBB feeder classes to consume services of BOs in FPM applications. This enables you to create UI layouts as Web Dynpro configurations for standard GUIBBs and assemble such discrete GUIBB configurations in an application configuration. An FBI view is an FBI design-time configuration object that helps join application data across multiple related BO nodes. This helps convenient presentation of application data in GUIBBs. This document describes how you as an application developer can perform the common task to create and configure a list GUIBB with a related view. Proposed pre-readings and related documents Pre-reading For a detailed list of FBI features, see the corresponding Help: set=/en/b4/9b3862dd5042f39fd1a79c e/frameset.htm Solution summary The BO model that we will use in this document: Fig. 1: BO Model The UI will have an Initial Screen that will enable the user to select the Sales order, and a main screen that will display the selected sales order details. In the main screen there will be a form to display the Data from the sales order invoice, and a list that will show the sales order Items. 3

4 The list should also display the Item's description (in the correct logon language), so the list will need to be based on two different nodes ITEM & ITEM_TEXT. To include fields from more than one node we need to use FBI Views. The FBI view is used enhance the FPM configuration of the data source used by the feeder class. In this example we will use the FBI view to join application data across multiple related nodes. It can be used to join data of different nodes in the same business object or across different business objects. This document describes the following configuration measures in detail: How to configure a main FBI view How to configure a related view How to create and configure a Web Dynpro application Prerequisites In order to be able to perform the Getting Started, the following prerequisites have to be fulfilled: Systems, releases, and authorizations BOPF and FPM-BOPF Integration (FBI) are part of the Business Suite Foundation Layer, and therefore included in the following SAP Business Suite releases: SAP Business Suite EHP6, SP05 (or higher) SAP Business Suite EHP7, any SP (or higher) For creation of an FPM UI, your SAP user should have the S_DEVELOP authorization Knowledge Understanding BOPF data models from a consumption perspective Configure the FBI views Note: The first view is the main view and the second view is the related view, which will be integrated with the main view. In the SAP development system, open a new session and enter the transaction code for the SE80 Object Navigator transaction. In the navigation area, select Web Dynpro Comp./Intf. Select the /BOFU/FBI_VIEW component and click Display ( ). In the context menu of the /BOFU/FBI_VIEW object, choose Create/Change Configuration. The Editor for the Web Dynpro ABAP Component Configuration screen appears. Enter an appropriate configuration ID and choose the New button. In the Create Configuration dialog, enter an appropriate description for the configuration and choose the OK button. In the Select Package dialog, enter the package name and choose the OK button. The Component Configuration screen appears. Here, you can view and edit the main FBI view. On the Header tab, enter the following field values: In the Create Web Dynpro Application screen, enter the following field values: Business Object: BO name; for example, /BOFU/DEMO_SALES_ORDER Node: BO node name; for example, ITEM 4

5 Fig. 2: Component Configuration Configure the Related View In the SAP development system, open a new session and enter the transaction code for the SE80 Object Navigator transaction. In the navigation area, select Web Dynpro Comp./Intf. Select the /BOFU/FBI_VIEW component and choose the Display button. In the context menu of the /BOFU/FBI_VIEW object, choose Create/Change Configuration. The Editor for the Web Dynpro ABAP Component Configuration screen appears. Enter an appropriate configuration ID and choose the New button. In the Create Configuration dialog, enter an appropriate description for the configuration and choose the OK button. In the Select Package dialog, enter the package name and choose the OK button. The Component Configuration screen appears. Here, you can view and edit the related FBI view. On the Header tab, enter the following field values: Business Object: BO name; for example, /BOFU/DEMO_SALES_ORDER Node: BO node name; for example, ITEM_TEXT 5

6 Fig. 3: Component Configuration Save the second FBI view by clicking the Save button. Integrate the main view and the related view In the SAP development system, open a new session and enter the transaction code for the SE84 Repository Information System. Navigate to Web Dynpro folder -> Component Configuration Type the FBI view name that you created earlier and Press Execute button (F8). Fig. 4: Search the FBI view Double click on the Object name to display the FBI View. Fig. 5: Open the FBI view In the first FBI view configuration, navigate to the Related Views tab, click on the Add button. The first row of the Related View table is selected. In the Related View column of the selected row, type the name of the related view or choose the search icon to search for the related view. 6

7 In the Output Struc. Suffix column, enter a 2 characters suffix (we use IT in this example to represent Item Text node) as the output structure suffix, this is done in order to distinguish between similar fields names in different nodes - in Runtime the suffix is added to the relevant fields (e.g. DESCRIPTION_IT), this way we know to which related view it belongs to. Example: if we have two nodes that have both an 'ID' field, the FBI View suffix will be added to each field's name. In that way the combine structure that the FBI Views create will not have 2 fields with the same name. In the Association column, select the association between the node in first view and node in the second view. Fig. 6: Component Configuration Related View Save the view configuration. Create and configure a Web Dynpro application The transaction FPM_WB provides the design time for creating FPM applications. To get an initial configuration of the underlying Web Dynpro application, it offers wizards for dedicated purposes. In the context of FBI, choose the Wizard for Creating Empty FPM Applications. Fig. 7: FPM Workbench Configure the Web Dynpro / FPM Application In the first step you have to provide the Web Dynpro Application name and description. Assign a namespace, which will be applied for all entities created in the application. For test purposes use the prefix Z. Last but not least, you have to select a predefined Floorplan. FPM provides three main Floorplans: OIF Object Instance Floorplan 7

8 GAF Guided Activity Floorplan OVP Overview Page Floorplan. We will use the Overview Page Floorplan. With the selection the names for the derived components are proposed. Fig. 8: Web Dynpro Application Assign Package and Transport Request Click Next and the wizard will guide you to the package and transport request page. To start with, assign the components to your Local Objects in using the package $TMP and click Save. Fig. 9: Package and Transport Request You have created a Web Dynpro / FPM Application, with an application configuration and an OVP component configuration. Fig. 10: FPM Creation Wizard Result Message 8

9 Create a new Initial Screen The purpose of this screen is to select the sales order to be displayed in the main screen. The main page of our application has already been created by the wizard. Create another page for the initial screen by choosing Initial Screen in the drop down menu of the New button. Fig. 11: Component Configuration Screen Create a Form UIBB for selecting the Sales Order Instance Creating the initial screen already proposes a section and a new UIBB. To create it, you have to enter the UIBB component. As it is a form UIBB, use the generic FPM building block FPM_FORM_UIBB. The Window Name is FORM_WINDOW. Last but not least, you have to name the configuration of the reuse component in Configuration ID, use Z<nn>_<application name>_initial_screen. Save the screen (an error message will be displayed, it will disappear after the next step) Fig. 12: Form UI Building Block Configure the Form UIBB Take care that the row of the UIBB is selected. The button Configure UIBB is active now. Press this button, and enter a description on the following popup to create the UIBB Configuration. Fig. 13: UIBB Configuration 9

10 Assign the configuration to your local objects on the following screen. Then you are requested to enter the feeder class. In this example we need a feeder to select the ID of the Sales Order to be displayed in the main screen. Feeder class /BOFU/CL_FBI_GUIBB_ALTKEY_FDR, is a feeder class for simplified form, that exposes only alternative keys (in this example the Order ID). In the Edit Parameters dialog, enter the following parameters and choose the OK button: Business Object: Name of the BO which you have referred to; For example /BOFU/DEMO_SALES_ORDER Node: Name of the node; For example ROOT Alternate Key: Name of the alternative key you use to query the root node; For example ORDER_ID Fig. 14: Edit Feeder Class Parameter In the Form UIBB Schema tab, choose the Element button and select Add Group. In the Group Title column, enter a suitable title for the group. Choose the Child Element button and select Add Elements to Group. In the Edit Group dialog, select the element and choose the OK button. Choose the Attributes button (from the upper menu). Under Action Assignment, select the FPM event ID as FPM_LEAVE_INITIAL_SCREEN (). Save the UIBB configuration. Return to the component configuration screen by clicking the second link in the crumb bread navigation. Choose the UIBB button and select Form Component. Enter a suitable configuration name, save and choose the Configure UIBB button. Press New and enter package. In the Edit Feeder Class dialog, enter the /BOFU/CL_FBI_GUIBB_BOOTSTRAP feeder class and choose the Edit Parameters button. In the Edit Parameters dialog, enter the following parameters and choose the OK button: 10

11 Business Object: Name of the BO you have referred to; For example /BOFU/DEMO_SALES_ORDER Node: Name of the node; for example ROOT URL Key Provider: /BOFU/CL_FBI_URL_KEYPROVIDER Pre-selection Key Provider: /BOFU/CL_FBI_PRSEL_KEYPROVIDER Fig. 15: FPM Creation Wizard Result Message Save the UIBB configuration and return to the component configuration screen. Under General Settings, choose the Floorplan Settings button and select Application Controller Settings. In the Change Application-Specific Parameters dialog, enter the following parameters and choose the OK button: Enter /BOFU/WDC_FBI_CONTROLLER as Web Dynpro component/class. Enter /BOFU/WDCC_FBI_CONTROLLER_NEW as the configuration name. Fig. 16: Application-Specific Parameters Create and configure a list UIBB On the component configuration screen, in the Navigation pane, choose the Main Page table row. To create a list UIBB for the main page, on the Overview Page Schema tab, choose the UIBB button and select List Component. Enter the following details for the list GUIBB and choose the Save button: Component: FPM_LIST_UIBB View: LIST_WINDOW 11

12 Configuration Name: An appropriate configuration name Fig. 17 List UIBB Configuration Save and choose the Configure UIBB button. To create the configuration for your UIBB, in the Editor for the Web Dynpro ABAP Component Configuration screen, choose the New button. In the Create Configuration dialog box, enter any required description and confirm your entry. In the Select Package dialog box, enter your required package and confirm your entry. In the Edit Feeder Class dialog, enter the /BOFU/CL_FBI_GUIBB_LIST_ATS feeder class and choose the Edit Parameters button. Fig. 18: List Feeder Class Note: You can use F4 help to get this feeder class. 12

13 In the Edit Parameters dialog, enter the following feeder parameters and choose the OK button: Enter the FBI View name that you created before. Fig. 19: Edit Feeder Class Parameters Under List UIBB Schema Tab choose the Column button. In the List UIBB Schema you can see all the fields from the both FBI views which were created before. Select the elements to be displayed on the list and choose the OK button. Fig. 20: Edit Feeder Class Parameters 13

14 Fig. 21: Fields in the component configuration are taken from the FBI view & FBI related view Save the configuration. Return to the component configuration screen. In the Toolbar Schema tab of the Initial Screen choose the Global Toolbar, and then choose the Toolbar Element button. In the resulted popup select the Continue standard function and press OK. Fig. 22: Global Toolbar - Continue button Configure the Wiring In the Wire Schema tab choose the Graphical Wire Editor button. Fig. 23: Wire Schema 14

15 Perform the required wiring as shown in the following diagram - during wiring, select the connector class as /BOFU/CL_FBI_ CONNECTOR. The sequence of the wiring should be: Alt Key Bootstrap List. Fig. 24: Wiring Connector Class Choose the Done button & Save. Test the configuration Test your application, either by using the context menu in SE80 or the Test function in the menu button Additional Functions. Fig. 25: Application Test Now the sales order id entered on the initial screen is used to select the appropriate header data and the items data from the BO. Fig. 26: Initial Screen for Order ID 15

16 The item list includes the related item_text fields (language and descriptions) Fig. 27: Test Results Result You have now configured and tested your application and got some insights in the principles of FPM. FBI is the adapter between FPM and BOPF. If you want to continue with the FPM UI technology, we recommend you to learn more about FPM. In this guide we only touched very few basic principles and features. 16

17 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.

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

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

How To Create FPM Application consuming CDS view using ACT

How To Create FPM Application consuming CDS view using ACT SAP NetWeaver How-To Guide How To Create FPM Application consuming CDS view using ACT Applicable Releases: SAP NetWeaver AS ABAP 7.4 SP5 Target Audience: FPM Developers Version 1.0 February 2014 Copyright

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

SAP HANA SPS 08 - What s New? SAP HANA Modeling (Delta from SPS 07 to SPS 08) SAP HANA Product Management May, 2014

SAP HANA SPS 08 - What s New? SAP HANA Modeling (Delta from SPS 07 to SPS 08) SAP HANA Product Management May, 2014 SAP HANA SPS 08 - What s New? SAP HANA Modeling (Delta from SPS 07 to SPS 08) SAP HANA Product Management May, 2014 SAP HANA SPS 08 Feature Overview Modeling Enhancements Enhanced SAP HANA Modeling capabilities

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

Software and Delivery Requirements

Software and Delivery Requirements SAP HANA Activity Repository rapiddeployment solution V2.10 April 2015 English SAP HANA Activity Repository rapiddeployment solution: Software and Delivery Requirements SAP SE Dietmar-Hopp-Allee 16 69190

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

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

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

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

User Interface Layouts

User Interface Layouts SAP White Paper Visualization User Interface Layouts Standard (VDS) and Legacy (RH) Table of Contents Overview 4 Standard (VDS) Layout 5 Legacy (RH) Layout 8 Copyright 47 2 / 17 The Visual Enterprise Version

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

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

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

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

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

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

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

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

SAP Hybris Billing, pricing simulation Application Operations Guide Release 2.0, SP03

SAP Hybris Billing, pricing simulation Application Operations Guide Release 2.0, SP03 SAP Hybris Billing, pricing simulation Application Operations Guide elease 2.0, SP03 Document Version 2.1 2017-01-16 TABLE OF CONTENTS DOCUMENT HISTOY... 3 1. PICING SIMULATION COMPONENTS... 4 2. SYSTEM

More information

How to Create, Enhance and Adapt Floorplan Manager Applications on SAP NetWeaver 740

How to Create, Enhance and Adapt Floorplan Manager Applications on SAP NetWeaver 740 How to Create, Enhance and Adapt Floorplan Manager Applications on SAP NetWeaver 740 Applies to: SAP NetWeaver 7.40, SAP Business Suite 7 i2013, SAP ECC 6.0 EhP7 Summary Since Business Suite 7 Innovations

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

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

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

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

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

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

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

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

Defining Associations in Business Object Builder

Defining Associations in Business Object Builder Defining Associations in Business Object Builder expert Summary Associations create relationships within the nodes of a BO or between different BOs. This tutorial introduces the most important types of

More information

Customer Helpdesk User Manual

Customer Helpdesk User Manual Customer Helpdesk User Manual TABLE OF CONTENTS 1 INTRODUCTION... 3 2 HANDLING OF THE PROGRAM... 3 2.1 Preface... 3 2.2 Log In... 3 2.3 Reset Your Password... 4 2.4 Changing Personal Password... 4 3 PROGRAM

More information

How to create a What If simulation in SAP Analytics Cloud

How to create a What If simulation in SAP Analytics Cloud How to create a What If simulation in SAP Analytics Cloud Author: Ingo Hilgefort, SAP Canada 1 1 Copyright 2018 SAP SE or an SAP affiliate company. All rights reserved. No part of this publication may

More information

SAP HANA Cloud Integration for data services What s new in (Sept 2015) Ben Hofmans, Product Manager

SAP HANA Cloud Integration for data services What s new in (Sept 2015) Ben Hofmans, Product Manager SAP HANA Cloud Integration for data services What s new in 1.0.9 (Sept 2015) Ben Hofmans, Product Manager Disclaimer This presentation outlines our general product direction and should not be relied on

More information

UX125 SAP Fiori Elements. Public

UX125 SAP Fiori Elements. Public UX125 SAP Fiori Elements Public Speakers Las Vegas, Sept 19-23 Jan Ruessel Bangalore, October 5-7 Suneet Agarwal Barcelona, Nov 8-10 Jan Ruessel 2 Disclaimer The information in this presentation is confidential

More information

SAP HANA SPS 08 - What s New? SAP HANA Interactive Education - SHINE (Delta from SPS 07 to SPS 08) SAP HANA Product Management May, 2014

SAP HANA SPS 08 - What s New? SAP HANA Interactive Education - SHINE (Delta from SPS 07 to SPS 08) SAP HANA Product Management May, 2014 SAP HANA SPS 08 - What s New? SAP HANA Interactive Education - SHINE (Delta from SPS 07 to SPS 08) SAP HANA Product Management May, 2014 Agenda SHINE - Overview SHINE What s new in SPS 08 SHINE - Roadmap

More information

Visual Business Configuration with SAP TM

Visual Business Configuration with SAP TM SAP Transportation Management Visual Business Configuration with SAP TM CUSTOMER Document Version: 3.0 December 2013 SAP AG 1 Copyright Copyright 2013 SAP AG. All rights reserved. SAP Library document

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 HANA SPS 08 - What s New? SAP HANA Application Lifecycle Management (Delta from SPS 07 to SPS 08) SAP HANA Product Management June, 2014

SAP HANA SPS 08 - What s New? SAP HANA Application Lifecycle Management (Delta from SPS 07 to SPS 08) SAP HANA Product Management June, 2014 SAP HANA SPS 08 - What s New? SAP HANA Application Lifecycle Management (Delta from SPS 07 to SPS 08) SAP HANA Product Management June, 2014 Agenda Overview of SAP HANA Application Lifecycle Management

More information

Transitioning from Migration Workbench to Data Workbench

Transitioning from Migration Workbench to Data Workbench Transitioning from Migration Workbench to Data Workbench SAP CLOUD FOR CUSTOMER TABLE OF CONTENTS TRANSITIONING FROM MIGRATION WORKBENCH TO DATA WORKBENCH... 3 1. Navigate to Data Workbench Tool... 3 2.

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

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

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... 4 1. Why is it mandatory to select a template or an object?... 4 2. Can I map my ID key to the Internal

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 How-To Guide: Extend MDG-S / MDG-C Data Model by a New Entity Type (Flex Option)

SAP How-To Guide: Extend MDG-S / MDG-C Data Model by a New Entity Type (Flex Option) SAP How-To Guide: Extend MDG-S / MDG-C Data Model by a New Entity Type (Flex Option) Applies to: SAP MDG-S / MDG-C running on SAP ECC 6 EhP 6 Master Data Governance. For more information, visit the Master

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

DMM 163 Introduction to Data Modeling in SAP HANA

DMM 163 Introduction to Data Modeling in SAP HANA DMM 163 Introduction to Data Modeling in SAP HANA Christoph Morgen / SAP HANA Product Management, SAP SE Yves Augustin / SAP HANA Competence Center, SAP SE Tobias Niekamp / SAP HANA Competence Center,

More information

BW310H. Data Warehousing with SAP Business Warehouse powered by SAP HANA COURSE OUTLINE. Course Version: 15 Course Duration: 5 Day(s)

BW310H. Data Warehousing with SAP Business Warehouse powered by SAP HANA COURSE OUTLINE. Course Version: 15 Course Duration: 5 Day(s) BW310H Data Warehousing with SAP Business Warehouse powered by SAP HANA. COURSE OUTLINE Course Version: 15 Course Duration: 5 Day(s) SAP Copyrights and Trademarks 2016 SAP SE or an SAP affiliate company.

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

Ariba Network Configuration Guide

Ariba Network Configuration Guide Ariba Network Configuration Guide Content 1. Account Configuration I. Account Access II. Company Profile III. Email Notifications IV. Electronic Order Routing V. Electronic Invoice Routing VI. Remittances

More information