Customer-Defined Value Lists in SAP NetWeaver Decision Service Management

Size: px
Start display at page:

Download "Customer-Defined Value Lists in SAP NetWeaver Decision Service Management"

Transcription

1 Carsten Ziegler, Chief Product Owner SAP NetWeaver Decision Service Management, SAP AG Customer-Defined Value Lists in SAP NetWeaver Decision Service Management September 2013

2 TABLE OF CONTENTS WHERE THE VALUES COME FROM... 4 Database / Data Dictionary... 5 Value lists... 5 Exit class... 5 LIMITATIONS... 7 SOLUTION... 8 END NOTE

3 SAP NetWeaver Decision Service Management (DSM) embeds and extends Business Rule Framework plus (BRFplus) for the creation of business rules. With DSM those business rules can be used to implement decision services that can be deployed, this means transferred, to managed systems for local execution. DSM allows also access to data from managed systems during rules modeling for best integration with the ABAP stack and ABAP-based applications on the local system or on remote systems. DSM provides access to master data or configuration data on any managed system in the customer landscape, which has the following advantages: Avoiding the need to replicate any data Perfect integration with business applications Reduction of modeling errors (only existing data is used) VALUE LISTS IN THE UI Values from the ABAP backend are dynamically retrieved and used for validation of business rules such as decision tables. In decision tables a gap analysis is also performed based on the backend data to make sure all possible value combinations are covered by the decision table. Most visible is the use in the value help in the user interface. Figure 1: Value list used in value help In the data object properties, it is possible to define the check behavior. Values that do not exist in the value list may be used, or they may result in warnings or errors. 3

4 Figure 2: Additional element properties WHERE THE VALUES COME FROM There can be three sources for possible values: 1. Database / Data Dictionary 2. Value lists 3. Exit class When values are found they are shown on the respective tab in data object maintenance. Figure 3: Value list in element UI 4

5 Database / Data Dictionary Values are taken from the data dictionary or the database when a data object is bound to a data element in the data dictionary. Figure 4: Element binding Additionally, the data element needs to use a domain that has a value table or a list of values (Value Range tab). DSM inspects the data element and the domain as well as the value table when available. DSM further analyzes the value table for an assigned text table that is used to find descriptions for the values. All of the metadata is defined in the data dictionary. Value lists Data objects that are not bound to a data element in the data dictionary allow the creation of value lists directly in the data object user interface. Figure 5: Domain values in element UI Exit class It is possible to dynamically create value lists with help of a code exit for any data object. Therefore, an exit class needs to be defined on application level and the respective methods need to be implemented, namely CLASS_CONSTRUCTOR and IF_FDT_APPLICATION_SETTINGS~GET_ELEMENT_VALUES. 5

6 Figure 6: Application exit class In the class constructor, only one line of code is necessary to activate the element values exit if_fdt_application_settings~gv_get_element_values = abap_true. In the exit method IF_FDT_APPLICATION_SETTINGS~GET_ELEMENT_VALUES, any logic can be implemented to build a value list. The method provides several parameters: IV_ID IV_TIMESTAMP ITR_VALUE ITR_TEXT IV_LANGU IO_SELECTION ET_VALUE EV_NO_CHECKLIST EV_APPLICABLE ID of the data object for which values are retrieved Optional timestamp, usually values are independent of time and the parameter is not required Optional ABAP range table with selection conditions for the values Optional ABAP range table with selection conditions for the value texts Language to be used for the value texts Optional internal parameter List of values with texts Indicates that no value list does exist Indicates that the exit class applies for creation of the value list The following code can be used as a generic pattern to implement the method. DATA ls_value LIKE LINE OF et_value. CLEAR: ev_no_checklist, ev_applicable, et_value. ">>> only for a specific object CHECK iv_id EQ '005056A501951EE38A9D598B62FF4E26'. ">>> put your data retrieval code here DELETE et_value WHERE value NOT IN itr_value. DELETE et_value WHERE text NOT IN itr_text. ev_no_checklist = abap_false. ev_applicable = abap_true. 6

7 LIMITATIONS Value lists are created for single fields. Problems may occur when a data object is bound to a data element with reference to a value table that contains additional keys. A good example of this problem is the data element REGIO with value table T005S and text table T005U. Figure 7: Database table T005S Figure 8: Database table T005U 7

8 The values in the BLAND column that is typed with REGIO are not unique. In other words, there are multiple regions with value 01 and only the value in LAND 1 (=country) makes the value unique. LAND1 (Country) BLAND (Region) BEZEI (Description) AR 01 Buenos Aires BE 01 Antwerp BG 01 Burgas DE 01 Schleswig-Holstein In the dynamically generated value help in a decision table or text rule the country information is not available or not unique. In a decision table there may be a country column but cells may have enumeration values such as DE (Germany); FR (France); ES (Spain) or range options such as not equals, starts with and so on. Therefore it is not clear what exactly is meant when value 01 is used in the region column of the decision table. SOLUTION The solution to such problems is combining the values of two (or more) fields into one and the provisioning of values with the value help exit. The caller can combine two or more fields before evaluating of the decision service. But a formula expression as part of the decision service can also do the job. First, a data object with an appropriate length is needed to take the concatenated value. Figure 9: New data object to combine country and region The concatenation takes place with a formula, returning the value in the COUNTRY_REGION data object. 8

9 Figure 10: Formula to concatenate country and region Either the data object or the formula can now be used in rules or expressions such as decision tables. Note that you can use an expression as a calculated column in a decision table, for example, the formula that concatenates country and region. The formula result will then be compared with the table cell value, such as starts with DE for all regions in Germany. Next, an exit class that implements the class-constructor method (see above) and the element values exit needs to be created. METHOD if_fdt_application_settings~get_element_values. DATA: ls_value lv_rfcdest lt_t005t lt_t005s lt_t005u LIKE LINE OF et_value, TYPE rfcdest, TYPE STANDARD TABLE OF t005t, TYPE STANDARD TABLE OF t005s, TYPE STANDARD TABLE OF t005u. FIELD-SYMBOLS: <ls_t005s> TYPE t005s, <ls_t005t> TYPE t005t, <ls_t005u> TYPE t005u. CLEAR: ev_no_checklist, ev_applicable, et_value. ">>> only for specific object CHECK iv_id EQ '005056A501951EE38A9D598B62FF4E26'. * in remote scenarios data has to be retireved from other system lv_rfcdest = cl_fdt_dsm=>get_destination_for_object( iv_id ). IF lv_rfcdest IS INITIAL OR lv_rfcdest EQ 'NONE'. * select from local tables SELECT * FROM: t005s INTO TABLE lt_t005s, t005u INTO TABLE lt_t005u WHERE spras EQ iv_langu, t005t INTO TABLE lt_t005t WHERE spras EQ iv_langu. LOOP AT lt_t005s ASSIGNING <ls_t005s>. ls_value-value = <ls_t005s>-land1 && `/` && <ls_t005s>-bland. UNASSIGN: <ls_t005u>, <ls_t005t>. READ TABLE lt_t005u ASSIGNING <ls_t005u> WITH KEY land1 = <ls_t005s>-land1 bland = <ls_t005s>-bland. READ TABLE lt_t005t ASSIGNING <ls_t005t> WITH KEY land1 = <ls_t005s>-land1. CLEAR ls_value-text. IF <ls_t005t> IS ASSIGNED. "country description is available ls_value-text = <ls_t005t>-landx50. ENDIF. IF <ls_t005u> IS ASSIGNED. "region description is available 9

10 ls_value-text = ls_value-text && `/` && <ls_t005u>-bezei. ENDIF. INSERT ls_value INTO TABLE et_value. ENDLOOP. ELSE. * TODO: call your remote function module here ENDIF. DELETE et_value WHERE: value NOT IN itr_value, text NOT IN itr_text. ev_no_checklist = abap_false. ev_applicable = abap_true. ENDMETHOD. The result is a custom value list optimized for the specific use case. Now range options such as starts with can also be used and the selection of the state is possible because each value is unique. Figure 11: Value list with concatenated country and region values 10

11 END NOTE SAP NetWeaver AS ABAP in version 7.40 with Support Package 5 as well as SAP NetWeaver Decision Service Management 1.0 Support Package 2 were used for this document. The examples also work in a very similar way on other versions of the software. You can find more information about SAP NetWeaver Decision Service Management in SAP Community Network: 11

12 SAP AG. All rights reserved. SAP, R/3, SAP NetWeaver, Duet, PartnerEdge, ByDesign, SAP BusinessObjects Explorer, StreamWork, SAP HANA, and other SAP products and services mentioned herein as well as their respective logos are trademarks or registered trademarks of SAP AG in Germany and other countries. Business Objects and the Business Objects logo, BusinessObjects, Crystal Reports, Crystal Decisions, Web Intelligence, Xcelsius, and other Business Objects products and services mentioned herein as well as their respective logos are trademarks or registered trademarks of Business Objects Software Ltd. Business Objects is an SAP company. Sybase and Adaptive Server, ianywhere, Sybase 365, SQL Anywhere, and other Sybase products and services mentioned herein as well as their respective logos are trademarks or registered trademarks of Sybase Inc. Sybase is an SAP company. Crossgate, EDDY, B2B 360, and B2B 360 Services are registered trademarks of Crossgate AG in Germany and other countries. Crossgate is an SAP company. All other product and service names mentioned are the trademarks of their respective companies. Data contained in this document serves informational purposes only. National product specifications may vary. These materials are subject to change without notice. These materials are provided by SAP AG and its affiliated companies ("SAP Group") for informational purposes only, without representation or warranty of any kind, and SAP Group shall not be liable for errors or omissions with respect to the materials. The only warranties for SAP Group 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.

SAP BusinessObjects Business Intelligence 4 Innovation and Implementation

SAP BusinessObjects Business Intelligence 4 Innovation and Implementation SAP BusinessObjects Business Intelligence 4 Innovation and Implementation TABLE OF CONTENTS 1- INTRODUCTION... 4 2- LOGON DETAILS... 5 3- STARTING AND STOPPING THE APPLIANCE... 6 4.1 Remote Desktop Connection

More information

SAP BW on HANA & HANA Smart Data Access Setup

SAP BW on HANA & HANA Smart Data Access Setup SAP BW on HANA & HANA Smart Data Access Setup SAP BW ON HANA & SMART DATA ACCESS - SETUP TABLE OF CONTENTS WHAT ARE THE PREREQUISITES FOR SAP HANA SMART DATA ACCESS?... 3 Software Versions... 3 ODBC Drivers...

More information

SAP Landscape Transformation (SLT) Replication Server User Guide

SAP Landscape Transformation (SLT) Replication Server User Guide SAP Landscape Transformation (SLT) Replication Server User Guide February 2014 P a g e 1 NOTE : Pease refer the following guide for SLT installation. http://help.sap.com/hana/sap_hana_installation_guide_trigger_based

More information

Set Up Hortonworks Hadoop with SQL Anywhere

Set Up Hortonworks Hadoop with SQL Anywhere Set Up Hortonworks Hadoop with SQL Anywhere TABLE OF CONTENTS 1 INTRODUCTION... 3 2 INSTALL HADOOP ENVIRONMENT... 3 3 SET UP WINDOWS ENVIRONMENT... 5 3.1 Install Hortonworks ODBC Driver... 5 3.2 ODBC Driver

More information

Open Items Analytics Dashboard System Configuration

Open Items Analytics Dashboard System Configuration Author: Vijayakumar Udayakumar vijayakumar.udayakumar@sap.com Target Audience Developers Consultants For validation Document version 0.95 03/05/2013 Open Items Analytics Dashboard Scenario Overview Contents

More information

SAP PartnerEdge Program: Opportunities for SAP-Authorized Resellers

SAP PartnerEdge Program: Opportunities for SAP-Authorized Resellers For SAP-Authorized Resellers SAP PartnerEdge Program: Opportunities for SAP-Authorized Resellers SAP now offers companies the opportunity to resell SAP solutions to their customers. SAP-authorized resellers

More information

Extend the SAP FIORI app HCM Timesheet Approval

Extend the SAP FIORI app HCM Timesheet Approval SAP Web Integrated Development Environment How-To Guide Provided by Customer Experience Group Extend the SAP FIORI app HCM Timesheet Approval Applicable Releases: SAP Web Integrated Development Environment

More information

How-to guide: Monitoring of standalone Hosts. This guide explains how you can enable monitoring for standalone hosts in SAP Solution Manager

How-to guide: Monitoring of standalone Hosts. This guide explains how you can enable monitoring for standalone hosts in SAP Solution Manager How-to guide: Monitoring of standalone Hosts This guide explains how you can enable monitoring for standalone hosts in SAP Solution Manager TABLE OF CONTENT 1 CREATE TECHNICAL SYSTEM FOR HOST... 3 2 MANAGED

More information

Memory Management simplifications in ABAP Kernel 7.4*

Memory Management simplifications in ABAP Kernel 7.4* Memory Management simplifications in ABAP Kernel 7.4* TABLE OF CONTENTS OVERVIEW. 3 NEW PARAMETER FORMULAS 3 TROUBLESHOOTING.. 4 512 GB LIMIT. 5 CONCLUSION 5 2 OVERVIEW This paper describes Memory Management

More information

How to Implement a SAP HANA Database Procedure and consume it from an ABAP Program Step-by-Step Tutorial

How to Implement a SAP HANA Database Procedure and consume it from an ABAP Program Step-by-Step Tutorial How to Implement a SAP HANA Database Procedure and consume it from an ABAP Program Step-by-Step Tutorial Table of Contents Prerequisites... 3 Benefits of using SAP HANA Procedures... 3 Objectives... 3

More information

Agentry and SMP Metadata Performance Testing Guidelines for executing performance testing with Agentry and SAP Mobile Platform Metadata based

Agentry and SMP Metadata Performance Testing Guidelines for executing performance testing with Agentry and SAP Mobile Platform Metadata based Agentry and SMP Metadata Performance Testing Guidelines for executing performance testing with Agentry and SAP Mobile Platform Metadata based applications AGENTRY PERFORMANCE TESTING V 1.0 TABLE OF CONTENTS

More information

Using SAP Crystal Reports with SAP Sybase SQL Anywhere

Using SAP Crystal Reports with SAP Sybase SQL Anywhere Using SAP Crystal Reports with SAP Sybase SQL Anywhere TABLE OF CONTENTS INTRODUCTION... 3 REQUIREMENTS... 3 CONNECTING TO SQL ANYWHERE WITH CRYSTAL REPORTS... 4 CREATING A SIMPLE REPORT... 7 Adding Data

More information

Sybase ASE Linux Installation Guide Installation and getting started guide for SAP Sybase ASE on Linux

Sybase ASE Linux Installation Guide Installation and getting started guide for SAP Sybase ASE on Linux Sybase ASE Linux Installation Guide Installation and getting started guide for SAP Sybase ASE on Linux www.sap.com TABLE OF CONTENTS INSTALLING ADAPTIVE SERVER... 3 Installing Adaptive Server with the

More information

LVS Troubleshooting Common issues and solutions

LVS Troubleshooting Common issues and solutions LVS Troubleshooting Common issues and solutions www.sap.com TABLE OF CONTENT INSTALLATION... 3 No SQL Instance found... 3 Server reboots after LVS installs... 3 LVS Service does not start after update...

More information

Configuring Java IDoc Adapter (IDoc_AAE) in Process Integration. : SAP Labs India Pvt.Ltd

Configuring Java IDoc Adapter (IDoc_AAE) in Process Integration. : SAP Labs India Pvt.Ltd Configuring Java IDoc Adapter (IDoc_AAE) in Process Integration Author Company : Syed Umar : SAP Labs India Pvt.Ltd TABLE OF CONTENTS INTRODUCTION... 3 Preparation... 3 CONFIGURATION REQUIRED FOR SENDER

More information

SAP Sybase Adaptive Server Enterprise Shrinking a Database for Storage Optimization 2013

SAP Sybase Adaptive Server Enterprise Shrinking a Database for Storage Optimization 2013 SAP Sybase Adaptive Server Enterprise Shrinking a Database for Storage Optimization 2013 TABLE OF CONTENTS Introduction... 3 SAP Sybase ASE s techniques to shrink unused space... 3 Shrinking the Transaction

More information

How to Extend a Fiori Application: Purchase Order Approval

How to Extend a Fiori Application: Purchase Order Approval SAP Web IDE How-To Guide Provided by Customer Experience Group How to Extend a Fiori Application: Purchase Order Approval Applicable Releases: SAP Web IDE 1.4 Version 2.0 - October 2014 Document History

More information

How To... Master Data Governance for Material: Create Custom Print forms. Applicable Releases: MDG 7

How To... Master Data Governance for Material: Create Custom Print forms. Applicable Releases: MDG 7 Applicable Releases: MDG 7 Version 1 January 2014 Document History www.sap.com Document Version Description 1.00 First official release of this guide TABLE OF CONTENTS 1. BUSINESS SCENARIO... 4 2. BACKGROUND

More information

LHI Leasing Simplifying and Automating the IT Landscape with SAP Software. SAP Customer Success Story Financial Services Provider LHI Leasing

LHI Leasing Simplifying and Automating the IT Landscape with SAP Software. SAP Customer Success Story Financial Services Provider LHI Leasing LHI Leasing Simplifying and Automating the IT Landscape with SAP Software SAP Customer Success Story Financial Services Provider LHI Leasing Company LHI Leasing GmbH Headquarters Pullach, Germany Industry,

More information

BW Source System: Troubleshooting Guide

BW Source System: Troubleshooting Guide P. Mani Vannan SAP Labs India TABLE OF CONTENTS TROUBLESHOOTING:... 3 CHECK WHETHER SOURCE SYSTEM CONNECTION IS OK... 3 RELEVANT AUTHORIZATIONS FOR BACKGROUND USER... 8 ERROR RELATED TO IDOC MISMATCH BETWEEN

More information

SAP Solution Manager - Content Transfer This document provides information on architectural and design questions, such as which SAP Solution Manager

SAP Solution Manager - Content Transfer This document provides information on architectural and design questions, such as which SAP Solution Manager SAP Solution Manager - Content Transfer This document provides information on architectural and design questions, such as which SAP Solution Manager content is transferable and how. TABLE OF CONTENTS PREFACE...

More information

Installing and Configuring the HANA Cloud Connector for On-premise OData Access

Installing and Configuring the HANA Cloud Connector for On-premise OData Access SAP Cloud Connector How-To Guide Provided by SAP s Technology RIG Installing and Configuring the HANA Cloud Connector for On-premise OData Access Applicable Releases: HANA Cloud Connector 2.x Version 1.0

More information

Create and run apps on HANA Cloud in SAP Web IDE

Create and run apps on HANA Cloud in SAP Web IDE SAP Web IDE How-To Guide Provided by Customer Experience Group Create and run apps on HANA Cloud in SAP Web IDE Applicable Releases: SAP Web IDE 1.4 Version 2.0 - October 2014 Document History Document

More information

How To... Master Data Governance for Material: Maintenance for multiple Materials in one Change Request. Applicable Releases: all

How To... Master Data Governance for Material: Maintenance for multiple Materials in one Change Request. Applicable Releases: all How To... Master Data Governance for Material: Maintenance for multiple Materials in one Change Request Applicable Releases: all Version 1.2 December 2014 Document History Document Version Description

More information

Nine Reasons Why SAP Rapid Deployment Solutions Can Make Your Life Easier Get Where You Want to Be, One Step at a Time

Nine Reasons Why SAP Rapid Deployment Solutions Can Make Your Life Easier Get Where You Want to Be, One Step at a Time SAP Rapid Deployment Solutions Nine Reasons Why SAP Rapid Deployment Solutions Can Make Your Life Easier Get Where You Want to Be, One Step at a Time Nine Reasons Why SAP Rapid Deployment Solutions Can

More information

Creating a Fiori Starter Application for sales order tracking

Creating a Fiori Starter Application for sales order tracking SAP Web IDE How-To Guide Provided by Customer Experience Group Creating a Fiori Starter Application for sales order tracking Applicable Releases: SAP Web IDE 1.4 Version 2.0 - October 2014 Creating a Fiori

More information

Consumption of OData Services of Open Items Analytics Dashboard using SAP Predictive Analysis

Consumption of OData Services of Open Items Analytics Dashboard using SAP Predictive Analysis Consumption of OData Services of Open Items Analytics Dashboard using SAP Predictive Analysis (Version 1.17) For validation Document version 0.1 7/7/2014 Contents What is SAP Predictive Analytics?... 3

More information

Compare & Adjust How to Guide for Compare & Adjust in SAP Solution Manager Application Lifecycle Management

Compare & Adjust How to Guide for Compare & Adjust in SAP Solution Manager Application Lifecycle Management Compare & Adjust How to Guide for Compare & Adjust in SAP Solution Manager Application Lifecycle Management www.sap.com TABLE OF CONTENTS COPYRIGHT... 3 1.0 Motivation... 4 2.0 Method and Prerequisites...

More information

SAP CRM Service Manager 3.1 Mobile App Extended Feature List An extended list of all the features included in the default delivery of the SAP CRM

SAP CRM Service Manager 3.1 Mobile App Extended Feature List An extended list of all the features included in the default delivery of the SAP CRM SAP CRM Service Manager 3.1 Mobile App Extended Feature List An extended list of all the features included in the default delivery of the SAP CRM Service Manager Mobile App TABLE OF CONTENTS SECTION 1:

More information

Implementing an Enterprise Information Management Strategy An Approach That Mitigates Risk and Drives Down Costs

Implementing an Enterprise Information Management Strategy An Approach That Mitigates Risk and Drives Down Costs SAP Thought Leadership Paper Enterprise Information Management Implementing an Enterprise Information Management Strategy An Approach That Mitigates Risk and Drives Down Costs Table of Contents 5 Content

More information

SAP Security Recommendations December 2011. Secure Software Development at SAP Embedding Security in the Product Innovation Lifecycle Version 1.

SAP Security Recommendations December 2011. Secure Software Development at SAP Embedding Security in the Product Innovation Lifecycle Version 1. SAP Security Recommendations December 2011 Secure Software Development at SAP Embedding Security in the Product Innovation Lifecycle Version 1.0 Secure Software Development at SAP Table of Contents 4

More information

SAP BUSINESS PLANNING AND CONSOLIDATION 10.0, VERSION FOR SAP NETWEAVER, POWERED BY SAP HANA STARTER KIT FOR USGAAP

SAP BUSINESS PLANNING AND CONSOLIDATION 10.0, VERSION FOR SAP NETWEAVER, POWERED BY SAP HANA STARTER KIT FOR USGAAP SAP BUSINESS PLANNING AND CONSOLIDATION 10.0, VERSION FOR SAP NETWEAVER, POWERED BY SAP HANA STARTER KIT FOR USGAAP Configuration overview - Appendix TABLE OF CONTENTS LIST OF ACCOUNTS... 4 Assets...

More information

Active Quality Management

Active Quality Management Active Quality Management Recognizing Organizations that make the extraordinary look ordinary The underlying principles THE 10 PRINCIPLES OF QUALITY 1. Understand the business objectives as well as the

More information

SAP White Paper Enterprise Information Management

SAP White Paper Enterprise Information Management SAP White Paper Enterprise Information Management Including Business Content in a Comprehensive Information Management Program Enhance Efficiency and Compliance Through Process-Centric Information Management

More information

How to... Master Data Governance for Material: Use the Data Import Framework for Material. Applicable Releases: EhP6, MDG 6.1, MDG 7.

How to... Master Data Governance for Material: Use the Data Import Framework for Material. Applicable Releases: EhP6, MDG 6.1, MDG 7. Applicable Releases: EhP6, MDG 6.1, MDG 7.0 Version 5 December 2014 www.sap.com Document History Document Version Description 1.00 First official release of this guide 2.00 Additional SAP notes 3.00 Background

More information

Additional Guide to Implementing the SAP CRM Service Management rapiddeployment

Additional Guide to Implementing the SAP CRM Service Management rapiddeployment EHP3 for SAP CRM 7.0 April 2014 English Document Version 1.0 Additional Guide to Implementing the SAP CRM Service Management rapiddeployment solution / SAP Best Practices for Service Management in CRM

More information

Setting up Single Sign-On (SSO) with SAP HANA and SAP BusinessObjects XI 4.0

Setting up Single Sign-On (SSO) with SAP HANA and SAP BusinessObjects XI 4.0 Setting up Single Sign-On (SSO) with SAP HANA and SAP BusinessObjects XI 4.0 June 14, 2013 Version 2.0 Vishal Dhir Customer Solution Adoption (CSA) www.sap.com TABLE OF CONTENTS INTRODUCTION... 3 What

More information

Cloud Single Sign-On and On-Premise Identity Federation with SAP NetWeaver Cloud White Paper

Cloud Single Sign-On and On-Premise Identity Federation with SAP NetWeaver Cloud White Paper Cloud Single Sign-On and On-Premise Identity Federation with SAP NetWeaver Cloud White Paper TABLE OF CONTENTS INTRODUCTION... 3 Where we came from... 3 The User s Dilemma with the Cloud... 4 The Administrator

More information

SAP BusinessObjects Dashboarding Strategy and Statement of Direction

SAP BusinessObjects Dashboarding Strategy and Statement of Direction SAP BusinessObjects Dashboarding Strategy and Statement of Direction www.sap.com TABLE OF CONTENTS DISCLAIMER... 3 INTRODUCTION... 3 Engage with SAP... 3 Background... 3 CUSTOMER EXPECTATIONS AND BUSINESS

More information

Using Database Performance Warehouse to Monitor Microsoft SQL Server Report Content

Using Database Performance Warehouse to Monitor Microsoft SQL Server Report Content Using Database Performance Warehouse to Monitor Microsoft SQL Server Report Content Applies to: Enhancement Package 1 for SAP Solution Manager 7.0 (SP18) and Microsoft SQL Server databases. SAP Solution

More information

SAP Business One OnDemand. SAP Business One OnDemand Solution Overview

SAP Business One OnDemand. SAP Business One OnDemand Solution Overview SAP Business One OnDemand SAP Business One OnDemand Solution Overview SAP Business One OnDemand Table of Contents 4 Executive Summary Introduction SAP Business One Today 8 A Technical Overview: SAP Business

More information

Design Thinking for. Requirements Analysis

Design Thinking for. Requirements Analysis Design Thinking for Requirements Analysis IN THIS ARTICLE Design Thinking for Requirements Analysis Are you in the requirements gathering and analysis phase of a project? Do you need to get a clear understanding

More information

Five Strategies Small and Medium Enterprises Can Use to Successfully Implement High Value Business Mobility

Five Strategies Small and Medium Enterprises Can Use to Successfully Implement High Value Business Mobility Five Strategies Small and Medium Enterprises Can Use to Successfully Implement High Value Business Mobility Smartphone and tablet-based business mobility has become commonplace in enterprises of all sizes.

More information

SAP Thought Leadership Paper Engineering, Construction, and Operations. Beyond Enterprise Resource Planning Construction in the ipad Age

SAP Thought Leadership Paper Engineering, Construction, and Operations. Beyond Enterprise Resource Planning Construction in the ipad Age SAP Thought Leadership Paper Engineering, Construction, and Operations Beyond Enterprise Resource Planning Construction in the ipad Age Table of Contents 4 Bringing Constant Connectivity to the Construction

More information

Certification Guide Network Connectivity for SAP on Premise and Cloud Solutions Integration

Certification Guide Network Connectivity for SAP on Premise and Cloud Solutions Integration Network Connectivity for SAP on Premise and Cloud Solutions Integration TABLE OF CONTENTS INTRODUCTION... 3 NETWORK PRODUCTS IN SCOPE... 4 CERTIFICATION OVERVIEW... 5 Scenarios... 5 Test Cases... 5 THE

More information

Guide to the SAP Extended Business Program

Guide to the SAP Extended Business Program Guide to the SAP Extended Business Program Table of Contents 5 Program Overview: Building Stronger Relationships Program Purpose Your Role 6 SAP Solutions for the SME Market SAP Business One SAP Business

More information

What's New in SAP BusinessObjects XI 3.1 Service Pack 5

What's New in SAP BusinessObjects XI 3.1 Service Pack 5 What's New in SAP BusinessObjects XI 3.1 Service Pack 5 SAP BusinessObjects XI 3.1 Service Pack 5 Copyright 2011 SAP AG. All rights reserved.sap, R/3, SAP NetWeaver, Duet, PartnerEdge, ByDesign, SAP BusinessObjects

More information

Document and Data Retention Compliance Understanding and Addressing the Costs, Risks, and Legal Pitfalls

Document and Data Retention Compliance Understanding and Addressing the Costs, Risks, and Legal Pitfalls SAP Thought Leadership Paper Human Capital Management Document and Data Retention Compliance Understanding and Addressing the Costs, Risks, and Legal Pitfalls Enterprise information continues to grow in

More information

HANA Input Parameters with Multi-Values to Filter Calculation Views

HANA Input Parameters with Multi-Values to Filter Calculation Views HANA Input Parameters with Multi-Values to Filter Calculation Views Applies to: SAP BusinessObjects BI platform 4.0. Summary This document provides information and guidelines about HANA calculation views

More information

Training.sap.com User Guide

Training.sap.com User Guide Training.sap.com User Guide Table of Contents WELCOME TO SAP EDUCATION ONLINE!... 3 HOW TO REGISTER IN SAP EDUCATION ONLINE AND START YOUR COURSES... 3 BASIC NAVIGATION... 6 BROWSE OUR CATALOGUE HOME...

More information

Streamlined Planning and Consolidation for Finance Teams in Any Organization

Streamlined Planning and Consolidation for Finance Teams in Any Organization SAP Solution in Detail SAP Solutions for Enterprise Performance Management, Version for the Microsoft Platform Streamlined Planning and Consolidation for Finance Teams in Any Organization Table of Contents

More information

Data Governance. Data Governance, Data Architecture, and Metadata Essentials Enabling Data Reuse Across the Enterprise

Data Governance. Data Governance, Data Architecture, and Metadata Essentials Enabling Data Reuse Across the Enterprise Data Governance Data Governance, Data Architecture, and Metadata Essentials Enabling Data Reuse Across the Enterprise 2 Table of Contents 4 Why Business Success Requires Data Governance Data Repurposing

More information

SAP Work Manager 6.0 Mobile App Extended Feature List

SAP Work Manager 6.0 Mobile App Extended Feature List SAP Work Manager 6.0 Mobile App Extended Feature List An extended list of all the features included in the default delivery of the SAP Work Manager 6.0 Mobile Application Provided by SAP Mobile - Rapid

More information

Setting up Single Sign-On (SSO) with SAP HANA and SAP BusinessObjects XI 4.0

Setting up Single Sign-On (SSO) with SAP HANA and SAP BusinessObjects XI 4.0 Setting up Single Sign-On (SSO) with SAP HANA and SAP BusinessObjects XI 4.0 February 8, 2013 Version 1.0 Vishal Dhir Customer Solution Adoption (CSA) www.sap.com TABLE OF CONTENTS INTRODUCTION... 3 What

More information

Information Design Tool User Guide SAP BusinessObjects Business Intelligence platform 4.0 Feature Pack 3

Information Design Tool User Guide SAP BusinessObjects Business Intelligence platform 4.0 Feature Pack 3 Information Design Tool User Guide SAP BusinessObjects Business Intelligence platform 4.0 Feature Pack 3 Copyright 2012 SAP AG. All rights reserved.sap, R/3, SAP NetWeaver, Duet, PartnerEdge, ByDesign,

More information

Fiori Frequently Asked Technical Questions

Fiori Frequently Asked Technical Questions Fiori Frequently Asked Technical Questions Table of Contents SAP Fiori General Overview... 1 SAP Fiori Technical Overview... 1 SAP Fiori Applications... 3 SRM Applications... 3 Approval Applications...

More information

TM111. ERP Integration for Order Management (Shipper Specific) COURSE OUTLINE. Course Version: 15 Course Duration: 2 Day(s)

TM111. ERP Integration for Order Management (Shipper Specific) COURSE OUTLINE. Course Version: 15 Course Duration: 2 Day(s) TM111 ERP Integration for Order Management (Shipper Specific). COURSE OUTLINE Course Version: 15 Course Duration: 2 Day(s) SAP Copyrights and Trademarks 2014 SAP SE. All rights reserved. No part of this

More information

SAP PartnerEdge Program Guide for Language Services Partners

SAP PartnerEdge Program Guide for Language Services Partners SAP PartnerEdge Program Guide for Language Services Partners Table of Contents 5 The SAP PartnerEdge Program: Providing Superior Value Supporting Your Opportunities 13 Ongoing Program Requirements Requirements

More information

H2G Install SAP Web IDE locally for trial (Mac version)

H2G Install SAP Web IDE locally for trial (Mac version) SAP Web IDE How-To Guide Provided by Customer Experience Group H2G Install SAP Web IDE locally for trial (Mac version) Applicable Releases: SAP Web IDE 1.4 Version 1.0 - October 2014 Document History Document

More information

Crystal Reports Server Embedded 2008 with Service Pack 7 for Windows Supported Platforms

Crystal Reports Server Embedded 2008 with Service Pack 7 for Windows Supported Platforms Crystal Reports Server Embedded 2008 with Service Pack 7 for Windows Supported Platforms Applies to: Crystal Reports Server Embedded 2008 with Service Pack 7. Summary This document contains information

More information

Backup Strategy for Oracle

Backup Strategy for Oracle Backup Strategy for Oracle White Paper: Oracle Database Administration February 01 TABLE OF CONTENTS INTRODUCTION... 3 EXAMPLE 1... 4 EXAMPLE... 6 EXAMPLE 3... 7 SUMMARY... 8 ADDITIONAL INFORMATION...

More information

Quick Guide to the SAP Customer Relationship Management Rapid- Deployment Solution (based on EhP1) Demo/Evaluation Appliance

Quick Guide to the SAP Customer Relationship Management Rapid- Deployment Solution (based on EhP1) Demo/Evaluation Appliance SAP CRM 7.01 November 2012 English Quick Guide to the SAP Customer Relationship Management Rapid- Deployment Solution (based on EhP1) Demo/Evaluation Appliance SAP AG Dietmar-Hopp-Allee 16 69190 Walldorf

More information

ForFarmers: SAP Business Communications Management for Call Center Workload Distribution

ForFarmers: SAP Business Communications Management for Call Center Workload Distribution SAP Customer Success Story Wholesale and distribution ForFarmers ForFarmers: SAP Business Communications Management for Call Center Workload Distribution Thanks to SAP Business Communications Management

More information

HR400 SAP ERP HCM Payroll Configuration

HR400 SAP ERP HCM Payroll Configuration HR400 SAP ERP HCM Payroll Configuration. COURSE OUTLINE Course Version: 15 Course Duration: 5 Day(s) SAP Copyrights and Trademarks 2014 SAP AG. All rights reserved. No part of this publication may be reproduced

More information

SAPFIN. Overview of SAP ERP Financials COURSE OUTLINE. Course Version: 15 Course Duration: 2 Day(s)

SAPFIN. Overview of SAP ERP Financials COURSE OUTLINE. Course Version: 15 Course Duration: 2 Day(s) SAPFIN Overview of SAP ERP Financials. COURSE OUTLINE Course Version: 15 Course Duration: 2 Day(s) SAP Copyrights and Trademarks 2014 SAP AG. All rights reserved. No part of this publication may be reproduced

More information

SAP Sourcing OnDemand Wave 8 Solution Guide

SAP Sourcing OnDemand Wave 8 Solution Guide SAP Sourcing OnDemand Wave 8 Solution Guide The SAP Sourcing OD solution is a subscription-based offering that enables rapid time to value. It includes hosting and on-boarding services, training and user

More information

How To Install The Sap Business Explorer 7.X 2.X (Sap) On A Windows 7.30 Computer (Windows 7)

How To Install The Sap Business Explorer 7.X 2.X (Sap) On A Windows 7.30 Computer (Windows 7) SAP Business Explorer 7.X Copyright Copyright 2012 SAP AG. All rights reserved. No part of this publication may be reproduced or transmitted in any form or for any purpose without the express permission

More information

AP 7.00. Integration with BRFplus VERSION V1.00 22 APRIL 2011 - SAP AG

AP 7.00. Integration with BRFplus VERSION V1.00 22 APRIL 2011 - SAP AG AP 7.00 Integration with BRFplus VERSION V1.00 22 APRIL 2011 - SAP AG Table of Contents 1. Introduction... 3 1.1 Time based prices... 3 1.2 Usage of BRFplus... 3 1.3 About this document... 3 1.4 Target

More information

How-To Guide SAP Cloud for Customer Document Version: 1.0-2014-03-20. How to Configure SAP HCI basic authentication for SAP Cloud for Customer

How-To Guide SAP Cloud for Customer Document Version: 1.0-2014-03-20. How to Configure SAP HCI basic authentication for SAP Cloud for Customer How-To Guide SAP Cloud for Customer Document Version: 1.0-2014-03-20 How to Configure SAP HCI basic authentication for SAP Cloud for Customer Document History Document Version Description 1.0 First official

More information

SAP Briefing Brochure. Solutions. October 2010

SAP Briefing Brochure. Solutions. October 2010 SAP Briefing Brochure SAP Energy Management Solutions October 2010 Our vision to enable every customer to become a best-run business will be the catalyst to delivering through on our goals. We must continue

More information

AC200. Basics of Customizing for Financial Accounting: General Ledger, Accounts Receivable, Accounts Payable COURSE OUTLINE

AC200. Basics of Customizing for Financial Accounting: General Ledger, Accounts Receivable, Accounts Payable COURSE OUTLINE AC200 Basics of Customizing for Financial Accounting: General Ledger, Accounts Receivable, Accounts Payable. COURSE OUTLINE Course Version: 15 Course Duration: 5 Day(s) SAP Copyrights and Trademarks 2015

More information

Setting up the Environment for Creating or Extending SAP Fiori Apps

Setting up the Environment for Creating or Extending SAP Fiori Apps Setting up the Environment for Creating or Extending SAP Fiori Apps February 2014 Copyright Copyright 2014 SAP AG. All rights reserved SAP Library document classification: PUBLIC No part of this publication

More information

SAP Thought Leadership SAP Customer Relationship Management. Strengthen the Brand and Improve

SAP Thought Leadership SAP Customer Relationship Management. Strengthen the Brand and Improve SAP Thought Leadership SAP Customer Relationship Management Enhancing the Customer Experience with Loyalty Management Strengthen the Brand and Improve Customer Retention Executive Summary Satisfying Customers,

More information

Optimized Shift Planning and Scheduling Creating Shifts and Aligning Resources to Match the Forecasted Workload

Optimized Shift Planning and Scheduling Creating Shifts and Aligning Resources to Match the Forecasted Workload SAP Thought Leadership Paper Workforce Scheduling and Optimization Optimized Shift Planning and Scheduling Creating Shifts and Aligning Resources to Match the Forecasted Workload Table of Contents 5 Shift

More information

CRM WebClient UI & Netweaver Enterprise Portal Integration

CRM WebClient UI & Netweaver Enterprise Portal Integration CRM WebClient UI & Netweaver Enterprise Portal Integration Contents INTRODUCTION... 4 External Integration... 4 Architecture... 4 Tight/Classic Integration... 5 Architecture... 5 Integration via OBN...

More information

SAP BusinessObjects Edge BI, Standard Package Preferred Business Intelligence Choice for Growing Companies

SAP BusinessObjects Edge BI, Standard Package Preferred Business Intelligence Choice for Growing Companies SAP Solutions for Small Businesses and Midsize Companies SAP BusinessObjects Edge BI, Standard Package Preferred Business Intelligence Choice for Growing Companies SAP BusinessObjects Edge BI, Standard

More information

SAP DSM/BRFPlus System Architecture Considerations

SAP DSM/BRFPlus System Architecture Considerations SAP DSM/BRFPlus System Architecture Considerations Applies to: SAP DSM and BRFPlus all releases. For more information, visit the SAP NetWeaver Decision Service Management Summary This document throws some

More information

SAP HANA. SAP HANA Performance Efficient Speed and Scale-Out for Real-Time Business Intelligence

SAP HANA. SAP HANA Performance Efficient Speed and Scale-Out for Real-Time Business Intelligence SAP HANA SAP HANA Performance Efficient Speed and Scale-Out for Real-Time Business Intelligence SAP HANA Performance Table of Contents 3 Introduction 4 The Test Environment Database Schema Test Data System

More information

SAP ERP EMPLOYEE INTERACTION CENTER

SAP ERP EMPLOYEE INTERACTION CENTER SAP ERP EMPLOYEE INTERACTION CENTER Frequently Asked Questions 1) What is the employee interaction center offering? 2) What is the product history of the employee interaction center? 3) When is a standard

More information

Reducing Operational Risk with SAP Management of Change

Reducing Operational Risk with SAP Management of Change SAP Solution in Detail SAP Solutions for Sustainability SAP Management of Change Reducing Operational Risk with SAP Management of Change Table of Contents 3 Quick Facts 4 Improve Safety with Flexible and

More information

An Overview of the SAP Business One Cloud Landscape. SAP Business One Cloud Landscape Workshop

An Overview of the SAP Business One Cloud Landscape. SAP Business One Cloud Landscape Workshop An Overview of the SAP Business One Cloud Landscape SAP Business One Cloud Landscape Workshop Section Objectives This section of the course will enable you to: Understand the different components that

More information

Within Budget and on Time

Within Budget and on Time SAP Solution in Detail SAP Product Lifecycle Management SAP Portfolio and Project Management Plan Well and Manage Efficiently Within Budget and on Time Profitable product and service development in today

More information

Quick Guide EDI/IDoc Interfacing to SAP ECC from External System

Quick Guide EDI/IDoc Interfacing to SAP ECC from External System Quick Guide EDI/IDoc Interfacing to SAP ECC from External System Applies to: Up to ECC 6.0. For more information, visit the ABAP homepage. Summary IDoc Interface: EDI Application Scenario The application

More information

SAP NetWeaver Decision Service Management in SAP CRM for Utilities

SAP NetWeaver Decision Service Management in SAP CRM for Utilities SAP NetWeaver Decision Service Management in SAP CRM for Utilities Volker Rein Product Owner SAP CRM for Utilities SAP AG Christian Kleingerdes Development Architect SAP CRM for Utilities SAP AG Dr. Wolfgang

More information

Sizing and Deployment of the SAP Business One Cloud Landscape. SAP Business One Cloud Landscape Workshop

Sizing and Deployment of the SAP Business One Cloud Landscape. SAP Business One Cloud Landscape Workshop Sizing and Deployment of the SAP Business One Cloud Landscape SAP Business One Cloud Landscape Workshop Section Objectives This section of the course will enable you to: Understand the sizing metrics that

More information

2015-09-24. SAP Operational Process Intelligence Security Guide

2015-09-24. SAP Operational Process Intelligence Security Guide 2015-09-24 SAP Operational Process Intelligence Security Guide Content 1 Introduction.... 3 2 Before You Start....5 3 Architectural Overview.... 7 4 Authorizations and Roles.... 8 4.1 Assigning Roles to

More information

Integrating Easy Document Management System in SAP DMS

Integrating Easy Document Management System in SAP DMS Integrating Easy Document Management System in SAP DMS Applies to: SAP Easy Document Management System Version 6.0 SP12. For more information, visit the Product Lifecycle Management homepage. Summary This

More information

SAP BusinessObjects Enterprise Software Inventory Tool User's Guide

SAP BusinessObjects Enterprise Software Inventory Tool User's Guide SAP BusinessObjects Enterprise Software Inventory Tool User's Guide SAP BusinessObjects Enterprise XI 3.1 Service Pack 3 windows Copyright 2010 SAP AG. All rights reserved.sap, R/3, SAP NetWeaver, Duet,

More information

Getting Started with Scope and Effort Analyzer (SEA) ALM Solution Management, AGS, SAP AG

Getting Started with Scope and Effort Analyzer (SEA) ALM Solution Management, AGS, SAP AG Getting Started with Scope and Effort Analyzer (SEA) ALM Solution Management, AGS, SAP AG Introduction Upgrade Planning with Scope and Effort Analyzer (SEA) SAP Solution Manager - Scope and Effort Analyzer

More information

Made to Fit Your Needs. SAP Solution Overview SAP Solutions for Small Businesses and Midsize Companies

Made to Fit Your Needs. SAP Solution Overview SAP Solutions for Small Businesses and Midsize Companies SAP Solution Overview SAP Solutions for Small Businesses and Midsize Companies SAP Solutions for Small Businesses and Midsize Companies Made to Fit Your Needs. Designed to Help You Grow. Becoming a Best-Run

More information

How to Implement Mash Up to Show ECC Screen in SAP Cloud for Customer

How to Implement Mash Up to Show ECC Screen in SAP Cloud for Customer How-To Guide Document Version: 1411 2014.12.15 How to Implement Mash Up to Show ECC Screen in SAP Cloud for Customer How to implement Mash up to show ECC screen in SAP Cloud for Customer 2 Copyright 2014

More information

SAP Solutions. Delivering Financial Excellence with SAP Solutions

SAP Solutions. Delivering Financial Excellence with SAP Solutions SAP Solutions Delivering Financial Excellence with SAP Solutions CONTENT 4 Today s Brave New Business Environment 5 New Pressures and Opportunities for CFOs 6 A New Set of KPIs for Finance 7 How SAP Can

More information

Customization of SAP Sales Manager 2.5

Customization of SAP Sales Manager 2.5 SAP How-to Guide SAP Mobility Customization of SAP Sales Manager 2.5 A Branded Service provided by SAP Rapid Innovation Group Applicable Releases: SAP Sales Manager 2.5 Target Audience: CRM consultants

More information

How-To Guide SAP Cloud for Customer Document Version: 1.0-2015-04-29. How to replicate marketing attributes from SAP CRM to SAP Cloud for Customer

How-To Guide SAP Cloud for Customer Document Version: 1.0-2015-04-29. How to replicate marketing attributes from SAP CRM to SAP Cloud for Customer How-To Guide SAP Cloud for Customer Document Version: 1.0-2015-04-29 How to replicate marketing attributes from SAP CRM to SAP Cloud for Customer Document History Document Version Description 1.0 First

More information

Add Value and Enable Student Success with Online Training on SAP Software

Add Value and Enable Student Success with Online Training on SAP Software SAP Brief SAP Education SAP Student Academy Objectives Add Value and Enable Student Success with Online Training on SAP Software Differentiate while expanding student career opportunities Differentiate

More information

Finding the Leak Access Logging for Sensitive Data. SAP Product Management Security

Finding the Leak Access Logging for Sensitive Data. SAP Product Management Security Finding the Leak Access Logging for Sensitive Data SAP Product Management Security Disclaimer This document does not constitute a legally binding proposal, offer, quotation or bid on the part of SAP. SAP

More information

SAP White Paper Enterprise Mobility. Best Practices for a Mobility Center of Excellence Keeping Pace with Mobile Technology

SAP White Paper Enterprise Mobility. Best Practices for a Mobility Center of Excellence Keeping Pace with Mobile Technology SAP White Paper Enterprise Mobility Best Practices for a Mobility Center of Excellence Keeping Pace with Mobile Technology Table of Contents 5 Executive Summary 6 Exploring a Mobility Center of Excellence

More information

ABAP Custom Code Security

ABAP Custom Code Security ABAP Custom Code Security A collaboration of: SAP Global IT & SAP Product Management for Security, IDM & SSO November, 2012 Public SAP Global IT - ABAP custom code security 1. Introduction / Motivation

More information

Demand Planning. SAP Business ByDesign

Demand Planning. SAP Business ByDesign SAP Business ByDesign Table of Content 1 About this Document... 3 1.1 Purpose... 3 1.2 Reference System and Model Company... 3 2 Master and Organizational Data... 4 3 Business Process Tasks... 5 3.1 Demand

More information

SAP ERP E-Commerce and SAP CRM Web Channel Enablement versions available on the market

SAP ERP E-Commerce and SAP CRM Web Channel Enablement versions available on the market SAP ERP E-Commerce and SAP CRM Web Channel Enablement versions available on the market TABLE OF CONTENTS NAMING... 3 VERSIONS... 3 NETWEAVER TECHNICAL DIFFERENCES... 4 MAINTENANCE PERIODS... 5 UPGRADE

More information