SAP BusinessObjects Dashboard Design Component SDK Tutorial 4 - Creating a custom property. sheet

Size: px
Start display at page:

Download "SAP BusinessObjects Dashboard Design Component SDK Tutorial 4 - Creating a custom property. sheet"

Transcription

1 SAP BusinessObjects Dashboard Design Component SDK Tutorial 4 - Creating a custom property sheet SAP BusinessObjects Dashboard Design Component SDK Tutorial 4 - Creating a custom property sheet

2 Copyright 2011 SAP AG. All rights reserved.sap, R/3, SAP NetWeaver, Duet, PartnerEdge, ByDesign, SAP BusinessObjects Explorer, StreamWork, 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. 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.

3 Contents Chapter 1 Introduction...5 Chapter 2 Task 1: Creating a basic Flex project...7 Chapter 3 Task 2: Designing the layout for the property sheet...9 Chapter 4 Task 3: Creating a CSS File...11 Chapter Task 4: Handling communication between property sheet and the component...13 Subtask 4a: Importing classes and creating local variables...13 Subtask 4b: Implementing init() function...14 Subtask 4c: Implementing initvalues() function...14 Subtask 4d: Implementing getpropertybinddisplayname and initiatebind functions...16 Subtask 4e: Implementing continuebind function

4 Contents 4

5 Introduction Introduction This tutorial assumes that you have at least some knowledge of Cascading Style Sheet (CSS), ActionScript 3.0, and MXML, the XML-based markup language introduced by Adobe Flex. The concentration of the tutorial is creating a custom property sheet for those who do not want to use the default property sheet. We will include Flex controls in the property sheet so that all of the properties and styles of the custom component can be exposed. We will also use a sample CSS definition to style the property sheet to look more like the Dashboard Design color scheme. Download the source code for the custom component so that you could see what properties and styles it has. You will need to reference the names of the properties/styles inside the property sheet source code. For demonstration purposes, only the basic controls for the layout of custom property sheet are mentioned. Please see the CustomPropSheetHorizontalSlider sample source code for a more advanced layout. 5

6 Introduction 6

7 Task 1: Creating a basic Flex project Task 1: Creating a basic Flex project 1. Create a basic Flex project for the custom property sheet.. For details on creating a project and adding the framework, refer to the Dashboard Design Component SDK SP1 User Guide section Create a visual component. 2. Open the Flex project application MXML file. 3. Inside of the <mx:application> tag, add applicationcomplete="init();". 7

8 Task 1: Creating a basic Flex project 8

9 Task 2: Designing the layout for the property sheet Task 2: Designing the layout for the property sheet 1. Switch to Design mode by pressing the Design button located next to the Source button. 2. Design the layout of the custom property sheet. Add the following controls to the layout: Viewstack: id=viewstack1, creationpolicy=all, left=0, right=0, y=45, height=100%, width=100%, minwidth=268, minheight=350 Canvas: id=general, label=general, minwidth=268, minheight=350, width=100%, height=100% Label: text=title, x=23, y=24, width=119 HRule: y=28, height=10, right=28, left=59 TextInput: id=titleeditor, change=proxy.setproperty('title', titleeditor.text), y=52, right=69, left=37 Label: text=value, x=23, y=116, width=119 HRule: y=118, height=10, right=28, left=66 TextInput: id=valueeditor, change=proxy.seproperty('value', Number(valueEditor.text)), y=144, right=69, left=37 Button: click=initiatebind('value'), to cell.png'), y=143, right=37, width=24 Canvas: id=appearance, label=appearance, minwidth=268, minheight=350, width=100%, height=100% Label: text=text, x=23, y=23, text=text, width=119 HRule: y=28, height=10, right=28, left=56 CheckBox: id=showtitleeditor, label=show Title, change=proxy.setproperty('showtitle', showtitleeditor.selected), selected=true, x=43, y=54 ComboBox: id=titlefontfamilyeditor, dataprovider=_fontnames, change=proxy.setstyle('titlefontfamily', titlefontfamilyeditor.value), x=94, y=79, width=129 ComboBox: id=titlefontsizeeditor, dataprovider=_fontsizes, change=proxy.setstyle('titlefontsize', titlefontsizeeditor.value), x=231 y=79 width=55 Label: text=color, x=23, y=136, width=119 HRule: y=141, height=10, right=28, left=62 Label: text=title Color, x=43, y=169, text=title Color:, width=116 ColorPicker: id=titlecoloreditor, change=proxy.setstyle('titlefontcolor', uint(titlecoloreditor.selectedcolor)), x=137, y=169 TabBar: dataprovider=viewstack1 3. After laying out the controls, switch to Source mode, you should have the following code: <?xml version="1.0" encoding="utf-8"?> <mx:application xmlns:mx=" layout="absolute" applicationcomplete="init();"> <mx:viewstack id="viewstack1" creationpolicy="all" left="0" right="0" y="45" height="100%" width="100%" minwidth="268" minheight="350"> <mx:canvas id="general" label="general" minwidth="268" minheight="350" width="100%" height="100%"> 9

10 Task 2: Designing the layout for the property sheet <mx:label x="23" y="24" text="title" width="119"/> <mx:hrule y="28" height="10" right="28" left="59"/> <mx:textinput id="titleeditor" y="52" right="69" left="37" change="proxy.setproperty('ti tle',titleeditor.text)"/> <mx:label x="23" y="116" text="value" width="119"/> <mx:hrule y="118" height="10" right="28" left="66"/> <mx:textinput id="valueeditor" y="144" right="69" left="37" change="proxy.setproperty('value', Number(valueEditor.text))"/> <mx:button y="143" right="37" width="24" click="initiatebind('value');" sources/bind to cell.png')"/> </mx:canvas> <mx:canvas id="appearance" label="appearance" minwidth="268" minheight="350" width="100%" height="100%"> <mx:label x="23" y="23" text="text" width="119"/> <mx:hrule y="28" height="10" right="28" left="56"/> <mx:checkbox id="showtitleeditor" x="43" y="54" label="show Title" change="proxy.setproper ty('showtitle', showtitleeditor.selected)" selected="true"/> <mx:combobox id="titlefontfamilyeditor" dataprovider="_fontnames" x="94" y="79" width="129" change="proxy.setstyle('titlefontfamily', titlefontfamilyeditor.value)" /> <mx:combobox id="titlefontsizeeditor" dataprovider="_fontsizes" x="231" y="79" width="55" change="proxy.setstyle('titlefontsize', titlefontsizeeditor.value)" /> <mx:label x="23" y="136" text="color" width="119"/> <mx:hrule y="141" height="10" right="28" left="62"/> <mx:label x="43" y="169" text="title Color:" width="116"/> <mx:colorpicker id="titlecoloreditor" x="137" y="169" change="proxy.setstyle('titlefontcolor', uint(titlecoloreditor.selectedcolor))" /> </mx:canvas> </mx:viewstack> <mx:tabbar x="0" y="0" dataprovider="viewstack1"> </mx:tabbar> </mx:application> 10

11 Task 3: Creating a CSS File Task 3: Creating a CSS File 1. Immediately after <mx:application> and before <mx:viewstack>, add the following tags: <mx:style /> <mx:script> <![CDATA[ ]]> </mx:script> 2. Right click on the project folder in the Navigation window and create a new folder named style; then import PSStyle.css, located in the SDK install folder: SDK\samples\CustomPropSheetHo rizontalslider\custompropsheethorizontalsliderpropertysheet\style\. This CSS definition file contains several tags that define the styles for each of them. These styles definitions were chosen because they closely match Dashboard Design property sheet styles: background color is #F4F3EE, fontfamily is Tahoma, text color is black, etc. 3. Modify the source of <mx:style> tag to include PSStyle.css: <mx:style source="style\psstyle.css"/> 11

12 Task 3: Creating a CSS File 12

13 Task 4: Handling communication between property sheet and the component Task 4: Handling communication between property sheet and the component Task 4 is divided into five subtasks, 4a through 4e. In the first subtask, you will import classes from the Dashboard Design SDK framework. In the remaining subtasks, you will implement the following functions: init():void initializes the property sheet on load getpropertybinddisplayname(propertyname:string):string returns the bind display name or null if not Bound. initiatebind(propertyname:string):void allows the user of the component to bind the Excel spreadsheet cell to an Dashboard Design custom component property/style. continuebind(bindingid:string):void completes the binding when the user has finished selecting the cell to bind to or cleared the binding. 5.1 Subtask 4a: Importing classes and creating local variables Inside CData section, include the following segments of code: import mx.containers.*; import mx.controls.*; import mx.core.container; import mx.events.flexevent; import xcelsius.binding.bindingdirection; import xcelsius.binding.tablemaps.input.inputbindings; import xcelsius.binding.tablemaps.output.outputbindings; import xcelsius.propertysheets.impl.propertysheetexternalproxy; import xcelsius.propertysheets.interfaces.propertysheetfunctionnamessdk; [Bindable] private var _fontnames:array = []; "22"); [Bindable] protected var _fontsizes:array = new Array("8", "9", "10", "11", "12", "14", "16", "18", "20", protected var proxy:propertysheetexternalproxy = new PropertySheetExternalProxy(); protected var propertytobind:string; protected var currentbindingid:string; 13

14 Task 4: Handling communication between property sheet and the component _fontnames will contain system fonts that the user can choose from. _fontsizes is the list of selectable font sizes. Both of these variables need to be bindable since we bind them to the data providers of the combo boxes on the "Appearance" tab. Variable proxy is the Dashboard Design proxy that enables communication between the property sheet and the custom component. The package xcelsius.propertysheets.impl.propertyshee texternalproxy for the proxy is the implementation of the interface xcelsius.propertysheets.in terfaces.ipropertysheetproxy, which are both included in the xcelsiusframework.swc. Variable propertytobind stores the name of the property that the user is binding, and current BindingID stores the current binding id (null if there's no binding) for the property. 5.2 Subtask 4b: Implementing init() function The function init() sets the callback to continuebind method when the user is picking Excel cell(s) to bind to, and then notifies Dashboard Design that it has finished loading the property sheet. Refer to the API Documentation for the list of function name constants. The retrieval of the list of system fonts is implemented here. Lastly, it makes a call to initvalues method that initializes the property sheet on load with default property/style values. protected function init():void proxy.addcallback(propertysheetfunctionnamessdk.response_binding_id, this.continuebind); proxy.callcontainer(propertysheetfunctionnamessdk.init_complete_function); var allfonts:array = Font.enumerateFonts(true); allfonts.sorton("fontname", Array.CASEINSENSITIVE); var numfonts:int = allfonts.length; for (var i:int=0; i<numfonts; i++) var font:font = allfonts[i]; _fontnames.push(font.fontname); initvalues(); 5.3 Subtask 4c: Implementing initvalues() function In initvalues(), we first get the array of values for the Dashboard Design custom component properties using proxy.getproperties method, then the array of values for the styles using proxy. getstyles method. Both methods need a list of property or style names passed in as an array of strings. Next, we process through the arrays retrieving the name and value of each property and style, and either displaying that value to the corresponding control's default value or the cell address(es) if bound 14

15 Task 4: Handling communication between property sheet and the component to the Excel spreadsheet. If a property has binding capability, make use of getpropertybinddis playname method and add an if-else statement to handle that correctly. protected function initvalues():void // Process the array of values for the Xcelsius custom component properties. var propertyvalues:array = proxy.getproperties(["title", "value","showtitle"]); var propertyvalueslength:int = (propertyvalues!= null? propertyvalues.length : 0); for (var i:int=0; i < propertyvalueslength; i++) var propertyobject:object = propertyvalues[i]; var propertyname:string = propertyobject.name; var propertyvalue:* = propertyobject.value; var bindingtext:string = ""; switch (propertyname) case "title": titleeditor.text = String(propertyValue); case "value": bindingtext = getpropertybinddisplayname(propertyname); if (bindingtext!= null) valueeditor.enabled = false; valueeditor.text = bindingtext; else valueeditor.text = propertyvalue; case "showtitle": showtitleeditor.selected = Boolean(propertyValue); default: Size"]); // Process the array of values for the custom component styles. var stylevalues:array = proxy.getstyles(["titlefontfamily", "titlefontcolor", "titlefont var stylevalueslength:int = (stylevalues!= null? stylevalues.length : 0); for (var j:int=0; j < stylevalueslength; j++) var styleobject:object = stylevalues[j]; var stylename:string = styleobject.name; var stylevalue:* = styleobject.value; var bindingtextstyle:string = ""; switch (stylename) case "titlefontcolor": titlecoloreditor.selectedcolor = uint(stylevalue); case "titlefontfamily": titlefontfamilyeditor.selectedindex = _fontnames.indexof(stylevalue); case "titlefontsize": titlefontsizeeditor.selectedindex = _fontsizes.indexof(stylevalue); var index:int; index = _fontsizes.indexof(stylevalue.tostring()); if (index!= -1) titlefontsizeeditor.selectedindex = index; else if (!isnan(stylevalue)) titlefontsizeeditor.text = stylevalue.tostring(); else titlefontsizeeditor.selectedindex = -1; default: 15

16 Task 4: Handling communication between property sheet and the component 5.4 Subtask 4d: Implementing getpropertybinddisplayname and initiatebind functions Given a property name, getpropertybinddisplayname gets the array of bindings for that property by calling proxy.getbindings method. If we have at least one binding for that property then pick the first one. > 0)) protected function getpropertybinddisplayname(propertyname:string):string var propertybindings:array = proxy.getbindings([propertyname]); if ((propertybindings!= null) && (propertybindings.length > 0) && (propertybindings[0].length var bindingid:string = propertybindings[0][0]; return proxy.getbindingdisplayname(bindingid); return null; Given a property name, initiatebind allows the user to select the Excel spreadsheet cell(s) to bind to an Dashboard Design custom component property. If there is an existing binding for that property, show that in the Excel binding selection window and store the currentbindingid (null if there is no current binding) in case we "continuebinding". Use the function proxy.requestuserselection method to let the user choose where to bind to in the Excel spreadsheet. protected function initiatebind(propertyname:string):void currentbindingid = null; var propertybindings:array = proxy.getbindings([propertyname]); if ((propertybindings!= null) && (propertybindings.length > 0)) currentbindingid = propertybindings[0]; propertytobind = propertyname; proxy.requestuserselection(currentbindingid); 5.5 Subtask 4e: Implementing continuebind function continuebind method completes the binding when the user has finished selecting the cell(s) to bind to or cleared the binding. Again, we process through each property that has binding capability to do the following: filling the control with current value and set property when the user explicitly clears binding, disabling the option to manually enter a value once the component if the property is bound, displaying the range address, and the actual binding using proxy.bind method. BindingDirection.BOTH updates the custom component property when the spreadsheet changes and also updates the spreadsheet when the custom component changes. InputBindings.SINGLETON writes to a single cell in the spreadsheet. OutputBindings.SINGLETON reads a single cell in the spreadsheet. 16

17 Task 4: Handling communication between property sheet and the component For more information on bindings and the custom property sheet API, refer to Appendix B in the Dashboard Design Component SDK SP1 User Guide. protected function continuebind(bindingid:string):void var propertyname:string = propertytobind; var propertyvalues:array; var propertyobject:object; var bindingaddresses:array; if (currentbindingid!= null) proxy.unbind(currentbindingid); currentbindingid = null; switch (propertyname) case "value": if ((bindingid == null) (bindingid == "")) valueeditor.enabled = true; propertyvalues = proxy.getproperties([propertyname]); propertyobject = propertyvalues[0]; valueeditor.text = propertyobject.value; proxy.setproperty(propertyname, propertyobject.value); return; valueeditor.enabled = false; valueeditor.text = proxy.getbindingdisplayname(bindingid); proxy.bind("value", null, bindingid, BindingDirection.BOTH, InputBindings.SINGLETON, OutputBindings.SINGLETON); default: Save and build. 17

18 Task 4: Handling communication between property sheet and the component 18

SAP BusinessObjects Dashboard Design Component SDK Installation Guide

SAP BusinessObjects Dashboard Design Component SDK Installation Guide SAP BusinessObjects Dashboard Design Component SDK Installation Guide SAP BusinessObjects Dashboard Design Component SDK Installation Guide Copyright 2011 SAP AG. All rights reserved.sap, R/3, SAP NetWeaver,

More information

Disclosure Management. Default font on styles in Disclosure Management

Disclosure Management. Default font on styles in Disclosure Management Disclosure Management Default font on styles in Disclosure Management DISCLOSURE MANAGEMENT DEFAULT FONT IS STYLES (V1.1) TABLE OF CONTENT Introduction... 3 An example... 3 What happens in the system...

More information

Dashboards Batch Utility User Guide

Dashboards Batch Utility User Guide Dashboards Batch Utility User Guide Copyright 2011 SAP AG. All rights reserved.sap, R/3, SAP NetWeaver, Duet, PartnerEdge, ByDesign, SAP BusinessObjects Explorer, StreamWork, and other SAP products and

More information

Disclosure Management US SEC. Preview

Disclosure Management US SEC. Preview Disclosure Management US SEC Preview TABLE OF CONTENT Introduction... 3 Creating the Preview... 4 Troubleshooting... 8 Alternative way of creating the Preview... 10 Useful Notes/KBAs... 14 2 Introduction

More information

SAP BusinessObjects Dashboards Component SDK Tutorial 1 - Creating a basic horizontal slider SAP BusinessObjects 4.1

SAP BusinessObjects Dashboards Component SDK Tutorial 1 - Creating a basic horizontal slider SAP BusinessObjects 4.1 SAP BusinessObjects Dashboards Component SDK Tutorial 1 - Creating a basic horizontal slider SAP BusinessObjects 4.1 Copyright 2013 SAP AG or an SAP affiliate company. All rights reserved.no part of this

More information

Moving BCM to different IP range

Moving BCM to different IP range Moving BCM to different IP range PREREQUISITES This document describes how to move your BCM application server to a different IP range. The solution is for BCM system administrators who have basic knowledge

More information

How the Standard Integration between SAP EM and SAP TM Can Be Tested with SE37

How the Standard Integration between SAP EM and SAP TM Can Be Tested with SE37 How the Standard Integration between SAP EM and SAP TM Can Be Tested with SE37 Author: Daniel Härder Document Date: 04.02.2013 TABLE OF CONTENTS SUMMARY... 3 TESTING EM TM INTEGRATION WITH SE37... 3 DEFINING

More information

How to Use a Customer Specific UIBB in MDG Application 'Create Change Request' Author: Matthias Hubert Company: SAP Created on 5th July 2013

How to Use a Customer Specific UIBB in MDG Application 'Create Change Request' Author: Matthias Hubert Company: SAP Created on 5th July 2013 How to Use a Customer Specific UIBB in MDG Application 'Create Change Request' Author: Matthias Hubert Company: SAP Created on 5th July 2013 TABLE OF CONTENTS 1 INTRODUCTION... 3 2 PREREQUISITES... 3 2.1

More information

Dashboards LiveCycle Data Services Gateway Installation Guide SAP BusinessObjects 4.0 Support Package 4

Dashboards LiveCycle Data Services Gateway Installation Guide SAP BusinessObjects 4.0 Support Package 4 Dashboards LiveCycle Data Services Gateway Installation Guide SAP BusinessObjects 4.0 Support Package 4 Copyright 2011 SAP AG. All rights reserved.sap, R/3, SAP NetWeaver, Duet, PartnerEdge, ByDesign,

More information

Passing Parameters via Web Dynpro Application

Passing Parameters via Web Dynpro Application Applies to: SAP ABAP Workbench that supports Web Dynpro development. For more information, visit the Web Dynpro ABAP homepage. Summary This article explains how to pass parameters via Web Dynpro Application.

More information

BW Workspaces Data Cleansing during Flat File Upload

BW Workspaces Data Cleansing during Flat File Upload BW Workspaces Data Cleansing during Flat File Upload TABLE OF CONTENTS INTRODUCTION INTO THE TOPIC BW WORKSPACE... 3 HISTORY OF THE FILE UPLOAD... 3 NEW DATA CLEANSING FUNCTIONALITY... 3 Transfer File...

More information

UI Changes for SAP Portfolio and Project Management Depending on NW Release

UI Changes for SAP Portfolio and Project Management Depending on NW Release UI Changes for SAP Portfolio and Project Management Depending on NW Release TABLE OF CONTENTS CHANGES IN RENDERING OF SAP PORTF. AND PROJ MGMT. WITH UI GUIDELINE 2.0... 3 Toolbars in Tables... 3 Toolbars

More information

Dashboards SharePoint Installation Guide SAP BusinessObjects 4.1

Dashboards SharePoint Installation Guide SAP BusinessObjects 4.1 Dashboards SharePoint Installation Guide SAP BusinessObjects 4.1 Copyright 2011 SAP AG. All rights reserved.sap, R/3, SAP NetWeaver, Duet, PartnerEdge, ByDesign, SAP BusinessObjects Explorer, StreamWork,

More information

SAP Crystal Reports for Enterprise User Guide SAP Crystal Reports for Enterprise

SAP Crystal Reports for Enterprise User Guide SAP Crystal Reports for Enterprise SAP Crystal Reports for Enterprise User Guide SAP Crystal Reports for Enterprise Copyright 2011 SAP AG. All rights reserved.sap, R/3, SAP NetWeaver, Duet, PartnerEdge, ByDesign, SAP BusinessObjects Explorer,

More information

Managing Substitutions in My Inbox 2.0 app

Managing Substitutions in My Inbox 2.0 app Managing Substitutions in My Inbox 2.0 app SAP NetWeaver (7.5) Gateway Joaquin Fornas 2016 SAP AG. All rights reserved. SAP, R/3, SAP NetWeaver, Duet, PartnerEdge, ByDesign, SAP BusinessObjects Explorer,

More information

SAP BusinessObjects Integration Option for Microsoft SharePoint Getting Started Guide

SAP BusinessObjects Integration Option for Microsoft SharePoint Getting Started Guide SAP BusinessObjects Integration Option for Microsoft SharePoint Getting Started Guide SAP BusinessObjects XI3.1 Service Pack 4 Copyright 2011 SAP AG. All rights reserved.sap, R/3, SAP NetWeaver, Duet,

More information

SAP Directory Content Migration Tool

SAP Directory Content Migration Tool This document describes SAP directory content migration which is used for migration and mass change functionality for PI scenarios and channels from Dual Stack to Single Stack system. This document explains

More information

Cube Designer User Guide SAP BusinessObjects Financial Consolidation, Cube Designer 10.0

Cube Designer User Guide SAP BusinessObjects Financial Consolidation, Cube Designer 10.0 Cube Designer User Guide SAP BusinessObjects Financial Consolidation, Cube Designer 10.0 Copyright 2011 SAP AG. All rights reserved.sap, R/3, SAP NetWeaver, Duet, PartnerEdge, ByDesign, SAP BusinessObjects

More information

CREATION AND CONFIGURATION OF WEB SERVICE FROM RFC AND DEPLOYMENT IN ANOTHER SYSTEM

CREATION AND CONFIGURATION OF WEB SERVICE FROM RFC AND DEPLOYMENT IN ANOTHER SYSTEM CREATION AND CONFIGURATION OF WEB SERVICE FROM RFC AND DEPLOYMENT IN ANOTHER SYSTEM Applies to: SAP Summary The purpose of this document is to provide creation and configuration of web service from function

More information

Experience SAP HANA Cloud Portal. Use SAP HANA Cloud Portal to Create Engaging Websites in 5 Simple Steps

Experience SAP HANA Cloud Portal. Use SAP HANA Cloud Portal to Create Engaging Websites in 5 Simple Steps Experience SAP HANA Cloud Portal Use SAP HANA Cloud Portal to Create Engaging Websites in 5 Simple Steps TABLE OF CONTENTS TUTORIAL AGENDA... 3 PREREQUISITES... 3 EXERCISE 1: CREATE AND CONFIGURE A NEW

More information

SAP Sybase Replication Server Change DATA Capture Configuration. Example Configuration

SAP Sybase Replication Server Change DATA Capture Configuration. Example Configuration SAP Sybase Replication Server Change DATA Capture Configuration Example Configuration TABLE OF CONTENTS 1 INTRODUCTION... 3 1.1 Scope... 3 1.2 Purpose... 3 2 CONFIGURATION... 4 2.1 Requeriments... 4 2.2

More information

SAP BusinessObjects Xcelsius 2008 FP3.3 What's Fixed Xcelsius 2008 FP3.3

SAP BusinessObjects Xcelsius 2008 FP3.3 What's Fixed Xcelsius 2008 FP3.3 SAP BusinessObjects Xcelsius 2008 FP3.3 What's Fixed Xcelsius 2008 FP3.3 Copyright 2010 SAP AG. All rights reserved.sap, R/3, SAP NetWeaver, Duet, PartnerEdge, ByDesign, SAP Business ByDesign, and other

More information

Disclosure Management Financial Consolidation. Troubleshooting Data Import Interface

Disclosure Management Financial Consolidation. Troubleshooting Data Import Interface Disclosure Management Financial Consolidation Troubleshooting Data Import Interface TABLE OF CONTENT Introduction... 3 Process... 4 Troubleshooting... 5 Connectivity... 5 Financial Consolidation... 15

More information

Information Design Tool User Guide SAP BusinessObjects Business Intelligence platform 4.0 Support Package 4

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

More information

Create and run apps on HANA Cloud in SAP River RDE

Create and run apps on HANA Cloud in SAP River RDE SAP River Rapid Development Environment How-To Guide Provided by Customer Experience Group Create and run apps on HANA Cloud in SAP River RDE Applicable Releases: SAP River Rapid Development Environment

More information

SAP BusinessObjects Dashboards Component SDK User Guide SAP BusinessObjects 4.0 Support Package 4

SAP BusinessObjects Dashboards Component SDK User Guide SAP BusinessObjects 4.0 Support Package 4 SAP BusinessObjects Dashboards Component SDK User Guide SAP BusinessObjects 4.0 Support Package 4 Copyright 2011 SAP AG. All rights reserved.sap, R/3, SAP NetWeaver, Duet, PartnerEdge, ByDesign, SAP BusinessObjects

More information

Introduction to Flex. Indy Nagpal. Web On The Piste August 2007

Introduction to Flex. Indy Nagpal. Web On The Piste August 2007 Introduction to Flex Indy Nagpal Web On The Piste August 2007 Who am I Senior Developer with Straker Interactive Trainer -- Flex, ColdFusion, ShadoCMS A couple of years with Flex A decade of working with

More information

Introduction to BW Workspaces and its usage with SAP BusinessObjects BI Tools

Introduction to BW Workspaces and its usage with SAP BusinessObjects BI Tools Introduction to BW Workspaces and its usage with SAP BusinessObjects BI Tools Applies to: SAP NetWeaver Business Warehouse 7.3, powered by SAP HANA or SAP BW Accelerator (BWA) SAP BusinessObjects BI 4.1

More information

BC405 Programming ABAP Reports

BC405 Programming ABAP Reports BC405 Programming ABAP Reports. COURSE OUTLINE Course Version: 10 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

BC410. Programming User Dialogs with Classical Screens (Dynpros) COURSE OUTLINE. Course Version: 10 Course Duration: 3 Day(s)

BC410. Programming User Dialogs with Classical Screens (Dynpros) COURSE OUTLINE. Course Version: 10 Course Duration: 3 Day(s) BC410 Programming User Dialogs with Classical Screens (Dynpros). COURSE OUTLINE Course Version: 10 Course Duration: 3 Day(s) SAP Copyrights and Trademarks 2013 SAP AG. All rights reserved. No part of this

More information

BC100. Introduction to Programming with ABAP COURSE OUTLINE. Course Version: 15 Course Duration: 2 Day(s)

BC100. Introduction to Programming with ABAP COURSE OUTLINE. Course Version: 15 Course Duration: 2 Day(s) BC100 Introduction to Programming with ABAP. 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

More information

BC480 PDF-Based Print Forms

BC480 PDF-Based Print Forms BC480 PDF-Based Print Forms. COURSE OUTLINE Course Version: 15 Course Duration: 3 Day(s) SAP Copyrights and Trademarks 2015 SAP SE. All rights reserved. No part of this publication may be reproduced or

More information

A Sample PhoneGap Application Using SUP

A Sample PhoneGap Application Using SUP This document summarizes the creation of a PhoneGap application on android platform which uses SUP server to fetch the data. This document also describes the basics of PhoneGap from the environment setup,

More information

BIT460. SAP Process Integration Message Mapping COURSE OUTLINE. Course Version: 15 Course Duration: 3 Day(s)

BIT460. SAP Process Integration Message Mapping COURSE OUTLINE. Course Version: 15 Course Duration: 3 Day(s) BIT460 SAP Process Integration Message Mapping. COURSE OUTLINE Course Version: 15 Course Duration: 3 Day(s) SAP Copyrights and Trademarks 2015 SAP SE. All rights reserved. No part of this publication may

More information

EWM125. Labor Management in SAP EWM COURSE OUTLINE. Course Version: 16 Course Duration: 4 Hours

EWM125. Labor Management in SAP EWM COURSE OUTLINE. Course Version: 16 Course Duration: 4 Hours EWM125 Labor Management in SAP EWM. COURSE OUTLINE Course Version: 16 Course Duration: 4 Hours SAP Copyrights and Trademarks 2015 SAP SE. All rights reserved. No part of this publication may be reproduced

More information

Chapter 8: Sizing and Positioning Components

Chapter 8: Sizing and Positioning Components 145 Chapter 8: Sizing and Positioning Components Adobe Flex lays out components by determining their sizes and positions; it provides you with multiple options for controlling both sizes and positions.

More information

ADM950. Secure SAP System Management COURSE OUTLINE. Course Version: 10 Course Duration: 2 Day(s)

ADM950. Secure SAP System Management COURSE OUTLINE. Course Version: 10 Course Duration: 2 Day(s) ADM950 Secure SAP System Management.. COURSE OUTLINE Course Version: 10 Course Duration: 2 Day(s) SAP Copyrights and Trademarks 2013 SAP AG. All rights reserved. No part of this publication may be reproduced

More information

AC507. Additional Functions of Product Cost Planning COURSE OUTLINE. Course Version: 15 Course Duration: 2 Day(s)

AC507. Additional Functions of Product Cost Planning COURSE OUTLINE. Course Version: 15 Course Duration: 2 Day(s) AC507 Additional Functions of Product Cost Planning. 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

More information

BOCE20. SAP Crystal Reports for Enterprise: Advanced Report Design COURSE OUTLINE. Course Version: 15 Course Duration: 3 Day(s)

BOCE20. SAP Crystal Reports for Enterprise: Advanced Report Design COURSE OUTLINE. Course Version: 15 Course Duration: 3 Day(s) BOCE20 SAP Crystal Reports for Enterprise: Advanced Report Design. COURSE OUTLINE Course Version: 15 Course Duration: 3 Day(s) SAP Copyrights and Trademarks 2014 SAP SE. All rights reserved. No part of

More information

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

PLM210. Master Data Configuration in SAP Project System COURSE OUTLINE. Course Version: 15 Course Duration: 2 Day(s) PLM210 Master Data Configuration in SAP Project System. COURSE OUTLINE Course Version: 15 Course Duration: 2 Day(s) SAP Copyrights and Trademarks 2014 SAP SE. All rights reserved. No part of this publication

More information

EP350. Innovated Content Management and Collaboration COURSE OUTLINE. Course Version: 10 Course Duration: 5 Day(s)

EP350. Innovated Content Management and Collaboration COURSE OUTLINE. Course Version: 10 Course Duration: 5 Day(s) EP350 Innovated Content Management and Collaboration. COURSE OUTLINE Course Version: 10 Course Duration: 5 Day(s) SAP Copyrights and Trademarks 2014 SAP AG. All rights reserved. No part of this publication

More information

BOC310. SAP Crystal Reports: Fundamentals of Report Design COURSE OUTLINE. Course Version: 15 Course Duration: 2 Day(s)

BOC310. SAP Crystal Reports: Fundamentals of Report Design COURSE OUTLINE. Course Version: 15 Course Duration: 2 Day(s) BOC310 SAP Crystal Reports: Fundamentals of Report Design. COURSE OUTLINE Course Version: 15 Course Duration: 2 Day(s) SAP Copyrights and Trademarks 2014 SAP SE. All rights reserved. No part of this publication

More information

DEV523 Customizing and Extending PowerDesigner

DEV523 Customizing and Extending PowerDesigner DEV523 Customizing and Extending PowerDesigner. COURSE OUTLINE Course Version: 15 Course Duration: 2 Day(s) SAP Copyrights and Trademarks 2015 SAP SE. All rights reserved. No part of this publication may

More information

SAP BusinessObjects Explorer API Guide SAP BusinessObjects Explorer XI 3.2 SP2

SAP BusinessObjects Explorer API Guide SAP BusinessObjects Explorer XI 3.2 SP2 SAP BusinessObjects Explorer API Guide SAP BusinessObjects Explorer XI 3.2 SP2 Copyright 2010 SAP AG. All rights reserved.sap, R/3, SAP NetWeaver, Duet, PartnerEdge, ByDesign, SAP Business ByDesign, and

More information

AFA461 SAP Afaria 7.0 System Administration (SP03)

AFA461 SAP Afaria 7.0 System Administration (SP03) AFA461 SAP Afaria 7.0 System Administration (SP03). COURSE OUTLINE Course Version: 10 Course Duration: 5 Day(s) SAP Copyrights and Trademarks 2014 SAP AG. All rights reserved. No part of this publication

More information

How to Setup Notifications in Fiori 2.0 Step-by-Step

How to Setup Notifications in Fiori 2.0 Step-by-Step How to Setup Notifications in Fiori 2.0 Step-by-Step SAP S/4HANA 1610 Wilson Wei 2017 SAP AG. All rights reserved. SAP, R/3, SAP NetWeaver, Duet, PartnerEdge, ByDesign, SAP BusinessObjects Explorer, StreamWork,

More information

SMP521. SAP Mobile Platform - Native and Hybrid Application Development COURSE OUTLINE. Course Version: 10 Course Duration: 5 Day(s)

SMP521. SAP Mobile Platform - Native and Hybrid Application Development COURSE OUTLINE. Course Version: 10 Course Duration: 5 Day(s) SMP521 SAP Mobile Platform - Native and Hybrid Application Development. COURSE OUTLINE Course Version: 10 Course Duration: 5 Day(s) SAP Copyrights and Trademarks 2014 SAP AG. All rights reserved. No part

More information

NET311. Advanced Web Dynpro for ABAP COURSE OUTLINE. Course Version: 10 Course Duration: 4 Day(s)

NET311. Advanced Web Dynpro for ABAP COURSE OUTLINE. Course Version: 10 Course Duration: 4 Day(s) NET311 Advanced Web Dynpro for ABAP. COURSE OUTLINE Course Version: 10 Course Duration: 4 Day(s) SAP Copyrights and Trademarks 2015 SAP SE. All rights reserved. No part of this publication may be reproduced

More information

Deploy a SAPUI5 Mobile App to Android Device

Deploy a SAPUI5 Mobile App to Android Device TABLE OF CONTENTS PREREQUISITE... 3 http://developer.android.com/sdk/installing/installing-adt.html... 3 STEPS TO DEPLOY AN SAPUI5 APP TO ANDROID DEVICE USING PHONEGAP... 3 2 PREREQUISITE You should have

More information

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

BC404. ABAP Programming in Eclipse COURSE OUTLINE. Course Version: 15 Course Duration: 3 Day(s) BC404 ABAP Programming in Eclipse. COURSE OUTLINE Course Version: 15 Course Duration: 3 Day(s) SAP Copyrights and Trademarks 2015 SAP SE. All rights reserved. No part of this publication may be reproduced

More information

How-to guide: OS Command Adapter

How-to guide: OS Command Adapter How-to guide: OS Command Adapter This guide explains how you can react to MAI Alerts in SAP Solution Manager 7.10 by sending an OS Command Version 2.20 (March 2015) SAP Active Global Support TABLE OF CONTENT

More information

Building a Real-time Dashboard using Xcelsius and Data Integrator

Building a Real-time Dashboard using Xcelsius and Data Integrator Building a Real-time Dashboard using Xcelsius and Data Integrator Applies to: BusinessObjects Data Integrator XI (11.7) Summary This white paper shows how to use certain features of Data Integrator (DI)

More information

DS50. Managing Data Quality with SAP Information Steward COURSE OUTLINE. Course Version: 10 Course Duration: 2 Day(s)

DS50. Managing Data Quality with SAP Information Steward COURSE OUTLINE. Course Version: 10 Course Duration: 2 Day(s) DS50 Managing Data Quality with SAP Information Steward. COURSE OUTLINE Course Version: 10 Course Duration: 2 Day(s) SAP Copyrights and Trademarks 2014 SAP SE. All rights reserved. No part of this publication

More information

How To - Extend MDG-M content by new attributes for customer Z-fields in standard tables

How To - Extend MDG-M content by new attributes for customer Z-fields in standard tables How To - Extend MDG-M content by new attributes for customer Z-fields in standard tables Applicable Releases: From EHP6 FOR SAP ERP 6.0 and from SAP S/4HANA 1511 Version 3 March 2017 Document History Document

More information

GRC100. GRC Principles and Harmonization COURSE OUTLINE. Course Version: 10 Course Duration: 2 Day(s)

GRC100. GRC Principles and Harmonization COURSE OUTLINE. Course Version: 10 Course Duration: 2 Day(s) GRC100 GRC Principles and Harmonization. COURSE OUTLINE Course Version: 10 Course Duration: 2 Day(s) SAP Copyrights and Trademarks 2016 SAP SE. All rights reserved. No part of this publication may be reproduced

More information

HA150 SQL Basics for SAP HANA

HA150 SQL Basics for SAP HANA HA150 SQL Basics for SAP HANA. COURSE OUTLINE Course Version: 10 Course Duration: 2 Day(s) SAP Copyrights and Trademarks 2015 SAP SE. All rights reserved. No part of this publication may be reproduced

More information

BC400 Introduction to the ABAP Workbench

BC400 Introduction to the ABAP Workbench BC400 Introduction to the ABAP Workbench. COURSE OUTLINE Course Version: 10 Course Duration: 5 Day(s) SAP Copyrights and Trademarks 2014 SAP AG. All rights reserved. No part of this publication may be

More information

MDG100 Master Data Governance

MDG100 Master Data Governance MDG100 Master Data Governance. COURSE OUTLINE Course Version: 10 Course Duration: 4 Day(s) SAP Copyrights and Trademarks 2015 SAP SE. All rights reserved. No part of this publication may be reproduced

More information

NET312. UI Development with Web Dynpro for ABAP COURSE OUTLINE. Course Version: 10 Course Duration: 4 Day(s)

NET312. UI Development with Web Dynpro for ABAP COURSE OUTLINE. Course Version: 10 Course Duration: 4 Day(s) NET312 UI Development with Web Dynpro for ABAP. COURSE OUTLINE Course Version: 10 Course Duration: 4 Day(s) SAP Copyrights and Trademarks 2015 SAP SE. All rights reserved. No part of this publication may

More information

EDB116. Fast Track to SAP Adaptive Server Enterprise COURSE OUTLINE. Course Version: 15 Course Duration: 5 Day(s)

EDB116. Fast Track to SAP Adaptive Server Enterprise COURSE OUTLINE. Course Version: 15 Course Duration: 5 Day(s) EDB116 Fast Track to SAP Adaptive Server Enterprise. COURSE OUTLINE Course Version: 15 Course Duration: 5 Day(s) SAP Copyrights and Trademarks 2015 SAP SE. All rights reserved. No part of this publication

More information

BC430 ABAP Dictionary

BC430 ABAP Dictionary BC430 ABAP Dictionary. COURSE OUTLINE Course Version: 15 Course Duration: 3 Day(s)12 SAP Copyrights and Trademarks 2014 SAP SE. All rights reserved. No part of this publication may be reproduced or transmitted

More information

BOC320. SAP Crystal Reports - Business Reporting and Report Processing Strategies COURSE OUTLINE. Course Version: 15 Course Duration: 3 Day(s)

BOC320. SAP Crystal Reports - Business Reporting and Report Processing Strategies COURSE OUTLINE. Course Version: 15 Course Duration: 3 Day(s) BOC320 SAP Crystal Reports - Business Reporting and Report Processing Strategies. COURSE OUTLINE Course Version: 15 Course Duration: 3 Day(s) SAP Copyrights and Trademarks 2014 SAP SE. All rights reserved.

More information

Business Intelligence Launch Pad User Guide SAP BusinessObjects Business Intelligence Platform 4.0 Support Package 5

Business Intelligence Launch Pad User Guide SAP BusinessObjects Business Intelligence Platform 4.0 Support Package 5 Business Intelligence Launch Pad User Guide SAP BusinessObjects Business Intelligence Platform 4.0 Support Package 5 Copyright 2012 SAP AG. All rights reserved.sap, R/3, SAP NetWeaver, Duet, PartnerEdge,

More information

TBIT44 PI Mapping and ccbpm

TBIT44 PI Mapping and ccbpm TBIT44 PI Mapping and ccbpm. COURSE OUTLINE Course Version: 15 Course Duration: 5 Day(s) SAP Copyrights and Trademarks 2015 SAP SE. All rights reserved. No part of this publication may be reproduced or

More information

ADM960. SAP NetWeaver Application Server Security COURSE OUTLINE. Course Version: 10 Course Duration: 5 Day(s)

ADM960. SAP NetWeaver Application Server Security COURSE OUTLINE. Course Version: 10 Course Duration: 5 Day(s) ADM960 SAP NetWeaver Application Server Security. COURSE OUTLINE Course Version: 10 Course Duration: 5 Day(s) SAP Copyrights and Trademarks 2013 SAP AG. All rights reserved. No part of this publication

More information

ADM900 SAP System Security Fundamentals

ADM900 SAP System Security Fundamentals ADM900 SAP System Security Fundamentals. COURSE OUTLINE Course Version: 15 Course Duration: 2 Day(s) SAP Copyrights and Trademarks 2015 SAP SE. All rights reserved. No part of this publication may be reproduced

More information

ADM100 AS ABAP - Administration

ADM100 AS ABAP - Administration ADM100 AS ABAP - Administration. 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

ADM920 SAP Identity Management

ADM920 SAP Identity Management ADM920 SAP Identity Management. COURSE OUTLINE Course Version: 10 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

BC400. ABAP Workbench Foundations COURSE OUTLINE. Course Version: 15 Course Duration: 5 Day(s)

BC400. ABAP Workbench Foundations COURSE OUTLINE. Course Version: 15 Course Duration: 5 Day(s) BC400 ABAP Workbench Foundations. COURSE OUTLINE Course Version: 15 Course Duration: 5 Day(s) SAP Copyrights and Trademarks 2014 SAP SE. All rights reserved. No part of this publication may be reproduced

More information

EDB785 SAP IQ Administration

EDB785 SAP IQ Administration EDB785 SAP IQ Administration. COURSE OUTLINE Course Version: 10 Course Duration: 5 Day(s) SAP Copyrights and Trademarks 2014 SAP AG. All rights reserved. No part of this publication may be reproduced or

More information

ADM950. Secure SAP System Management COURSE OUTLINE. Course Version: 15 Course Duration: 2 Day(s)

ADM950. Secure SAP System Management COURSE OUTLINE. Course Version: 15 Course Duration: 2 Day(s) ADM950 Secure SAP System Management. COURSE OUTLINE Course Version: 15 Course Duration: 2 Day(s) SAP Copyrights and Trademarks 2015 SAP SE. All rights reserved. No part of this publication may be reproduced

More information

MII - Crystal Reports Configuration Guide

MII - Crystal Reports Configuration Guide TABLE OF CONTENTS INTRODUCTION... 3 CONFIGURE SAP CRYSTAL REPORTS TO USE CR MII CONNECTOR... 4 CREATING CONNECTION TO MII SERVER FROM SAP CRYSTAL REPORTS DESIGNER... 5 CREATING REPORT FROM MII QUERY TEMPLATE...

More information

Implementation steps for Note

Implementation steps for Note Implementation steps for Note 1698684 TABLE OF CONTENT 1 PREFACE... 3 2 PRE-IMPLEMENTATION STEPS... 4 2.1 Domains... 4 2.1.1 Vehicle Body Type... 4 2.1.2 Vehicle Ownership Type... 4 2.2 Structures... 4

More information

SMP541. SAP Mobile Platform 3.0 Native and Hybrid Application Development COURSE OUTLINE. Course Version: 15 Course Duration: 5 Day(s)

SMP541. SAP Mobile Platform 3.0 Native and Hybrid Application Development COURSE OUTLINE. Course Version: 15 Course Duration: 5 Day(s) SMP541 SAP Mobile Platform 3.0 Native and Hybrid Application Development. COURSE OUTLINE Course Version: 15 Course Duration: 5 Day(s) SAP Copyrights and Trademarks 2015 SAP SE. All rights reserved. No

More information

EDB358. System and Database Administration: Adaptive Server Enterprise COURSE OUTLINE. Course Version: 10 Course Duration: 5 Day(s)

EDB358. System and Database Administration: Adaptive Server Enterprise COURSE OUTLINE. Course Version: 10 Course Duration: 5 Day(s) EDB358 System and Database Administration: Adaptive Server Enterprise. COURSE OUTLINE Course Version: 10 Course Duration: 5 Day(s) SAP Copyrights and Trademarks 2014 SAP AG. All rights reserved. No part

More information

Configuring relay server in Sybase Control Center

Configuring relay server in Sybase Control Center Configuring relay server in Sybase Control Center Applies to: SUP 2.1.x SUP 2.2.x SUP 2.3.x Summary Relay servers can be used to connect to SUP server through internet and this would be one of the best

More information

ADM960. SAP NetWeaver Application Server Security COURSE OUTLINE. Course Version: 15 Course Duration: 5 Day

ADM960. SAP NetWeaver Application Server Security COURSE OUTLINE. Course Version: 15 Course Duration: 5 Day ADM960 SAP NetWeaver Application Server Security. COURSE OUTLINE Course Version: 15 Course Duration: 5 Day SAP Copyrights and Trademarks 2015 SAP SE. All rights reserved. No part of this publication may

More information

SAP NetWeaver Identity Management Identity Center. Implementation guide. Version 7.2 Rev 4. - Optimizing dispatcher performance

SAP NetWeaver Identity Management Identity Center. Implementation guide. Version 7.2 Rev 4. - Optimizing dispatcher performance SAP NetWeaver Identity Management Identity Center Implementation guide - Optimizing dispatcher performance Version 7.2 Rev 4 2012 SAP AG. All rights reserved. No part of this publication may be reproduced

More information

SAP BusinessObjects Predictive Analysis 1.0 Supported Platforms

SAP BusinessObjects Predictive Analysis 1.0 Supported Platforms SAP BusinessObjects Predictive Analysis 1.0 Supported Platforms Applies to: SAP BusinessObjects Predictive Analysis 1.0 Summary This document contains information specific to platforms and configurations

More information

BC490 ABAP Performance Tuning

BC490 ABAP Performance Tuning BC490 ABAP Performance Tuning. COURSE OUTLINE Course Version: 10 Course Duration: 5 Day(s) SAP Copyrights and Trademarks 2015 SAP SE. All rights reserved. No part of this publication may be reproduced

More information

TBIT40 SAP NetWeaver Process Integration

TBIT40 SAP NetWeaver Process Integration TBIT40 SAP NetWeaver Process Integration. COURSE OUTLINE Course Version: 15 Course Duration: 5 Day(s) SAP Copyrights and Trademarks 2015 SAP SE. All rights reserved. No part of this publication may be

More information

EDB367. Powering Up with SAP Adaptative Server Enterprise 15.7 COURSE OUTLINE. Course Version: 10 Course Duration: 2 Day(s)

EDB367. Powering Up with SAP Adaptative Server Enterprise 15.7 COURSE OUTLINE. Course Version: 10 Course Duration: 2 Day(s) EDB367 Powering Up with SAP Adaptative Server Enterprise 15.7. COURSE OUTLINE Course Version: 10 Course Duration: 2 Day(s) SAP Copyrights and Trademarks 2014 SAP AG. All rights reserved. No part of this

More information

bbc Creating Flex Applications Enabled for LiveCycle Workspace ES2 Adobe LiveCycle ES2 March 2010 Version 9

bbc Creating Flex Applications Enabled for LiveCycle Workspace ES2 Adobe LiveCycle ES2 March 2010 Version 9 bbc Creating Flex Applications Enabled for LiveCycle Workspace ES2 Adobe LiveCycle ES2 March 2010 Version 9 2010 Adobe Systems Incorporated. All rights reserved. Adobe LiveCycle ES2 (9.0) Creating Flex

More information

SAP Business Communications Management (BCM) Release Notes 7.0 SP04 Patch 1 ( )

SAP Business Communications Management (BCM) Release Notes 7.0 SP04 Patch 1 ( ) SAP Business Communications Management (BCM) Release Notes 7.0 SP04 Patch 1 (7.0.4.100) TABLE OF CONTENTS 1 INTRODUCTION... 3 2 FUNCTIONAL CHANGES... 4 3 CORRECTED DEFECTS... 5 2 1 INTRODUCTION This document

More information

EP200. SAP NetWeaver Portal: System Administration COURSE OUTLINE. Course Version: 10 Course Duration: 5 Day(s)

EP200. SAP NetWeaver Portal: System Administration COURSE OUTLINE. Course Version: 10 Course Duration: 5 Day(s) EP200 SAP NetWeaver Portal: System Administration. COURSE OUTLINE Course Version: 10 Course Duration: 5 Day(s) SAP Copyrights and Trademarks 2013 SAP AG. All rights reserved. No part of this publication

More information

BW310. BW - Enterprise Data Warehousing COURSE OUTLINE. Course Version: 10 Course Duration: 5 Day(s)

BW310. BW - Enterprise Data Warehousing COURSE OUTLINE. Course Version: 10 Course Duration: 5 Day(s) BW310 BW - Enterprise Data Warehousing. COURSE OUTLINE Course Version: 10 Course Duration: 5 Day(s) SAP Copyrights and Trademarks 2015 SAP SE. All rights reserved. No part of this publication may be reproduced

More information

TBW30 SAP BW Modeling & Implementation

TBW30 SAP BW Modeling & Implementation TBW30 SAP BW Modeling & Implementation. COURSE OUTLINE Course Version: 10 Course Duration: 5 Day(s) SAP Copyrights and Trademarks 2014 SAP SE. All rights reserved. No part of this publication may be reproduced

More information

Logo Usage and Communication Guideline Powered by SAP HANA. November 2013

Logo Usage and Communication Guideline Powered by SAP HANA. November 2013 Logo Usage and Communication Guideline November 2013 Introduction Page 2 Partner solutions or applications that are powered by SAP HANA are certified by SAP to run on the SAP HANA platform. Applications

More information

BC401. ABAP Objects COURSE OUTLINE. Course Version: 15 Course Duration: 5 Day(s)

BC401. ABAP Objects COURSE OUTLINE. Course Version: 15 Course Duration: 5 Day(s) BC401 ABAP Objects. COURSE OUTLINE Course Version: 15 Course Duration: 5 Day(s) SAP Copyrights and Trademarks 2015 SAP SE. All rights reserved. No part of this publication may be reproduced or transmitted

More information

Using Xcelsius 2008 with SAP NetWeaver BW

Using Xcelsius 2008 with SAP NetWeaver BW Using Xcelsius 2008 with SAP NetWeaver BW Applies to: Xcelsius 2008 Enterprise Service Pack 02 (and higher) SAP NetWeaver BW 7.0 Enhancement package 01 Service Pack 05 (and higher) Summary In this short

More information

Portal Integration Kit User's Guide for SAP BusinessObjects Portlets

Portal Integration Kit User's Guide for SAP BusinessObjects Portlets Portal Integration Kit User's Guide for SAP BusinessObjects Portlets SAP BusinessObjects Enterprise XI 3.1 Service Pack 3 Copyright 2010 SAP AG. All rights reserved.sap, R/3, SAP NetWeaver, Duet, PartnerEdge,

More information

Business Intelligence Platform User Guide SAP BusinessObjects Business Intelligence platform 4.0 Support Package 4

Business Intelligence Platform User Guide SAP BusinessObjects Business Intelligence platform 4.0 Support Package 4 Business Intelligence Platform User Guide SAP BusinessObjects Business Intelligence platform 4.0 Support Package 4 Copyright 2012 SAP AG. All rights reserved.sap, R/3, SAP NetWeaver, Duet, PartnerEdge,

More information

SAP ESP: Keyed Streams in CCL New feature in SP08

SAP ESP: Keyed Streams in CCL New feature in SP08 New feature in SP08 www.sap.com TABLE OF CONTENTS KEYED STREAMS... 3 Introduction... 3 A Deeper Look... 3 Supported Operations... 3 Filter Behavior... 4 Join Behavior... 5 Flex Behavior... 6 Interaction

More information

How-to Connect your HANA Cloud Platform Mobile Service Account to your On-Premise OData Service

How-to Connect your HANA Cloud Platform Mobile Service Account to your On-Premise OData Service How-to Connect your HANA Cloud Platform Mobile Service Account to your On-Premise OData Service How-to Connect your HANA Cloud Platform Mobile Service Account to your On-Premise OData Service How-to Provided

More information

Visual Composer s Control Types

Visual Composer s Control Types Visual Composer s Control Types Applies to: Visual Composer for CE. For more information, visit the Portal and Collaboration homepage. Summary The document will discuss Control types and their properties

More information

SAP BusinessObjects Dashboards 4.0 SAP Crystal Dashboard Design 2011 SAP Crystal Presentation Design 2011

SAP BusinessObjects Dashboards 4.0 SAP Crystal Dashboard Design 2011 SAP Crystal Presentation Design 2011 SAP BusinessObjects Dashboards 4.0 SAP Crystal Dashboard Design 2011 SAP Crystal Presentation Design 2011 August 18th, 2011 Product Availability Matrix (PAM) Dashboard Design 2011 / Presentation Design

More information

How to Use Context Menus in a Web Dynpro for Java Application

How to Use Context Menus in a Web Dynpro for Java Application How to Use Context Menus in a Web Dynpro for Java Application Applies to: Web Dynpro for Java 7.11. For more information, visit the Web Dynpro Java homepage. Summary This tutorial explains the Web Dynpro

More information

EDB377. Fast Track to SAP Replication Server Administration COURSE OUTLINE. Course Version: 15 Course Duration: 5 Day(s)

EDB377. Fast Track to SAP Replication Server Administration COURSE OUTLINE. Course Version: 15 Course Duration: 5 Day(s) EDB377 Fast Track to SAP Replication Server Administration. COURSE OUTLINE Course Version: 15 Course Duration: 5 Day(s) SAP Copyrights and Trademarks 2015 SAP SE. All rights reserved. No part of this publication

More information

SAP NetWeaver Identity Management Identity Services Configuration Guide

SAP NetWeaver Identity Management Identity Services Configuration Guide SAP NetWeaver Identity Management Identity Services Configuration Guide Version 7.2 Rev 3 2011 SAP AG. All rights reserved. No part of this publication may be reproduced or transmitted in any form or for

More information

Single Sign-on For SAP NetWeaver Mobile PDA Client

Single Sign-on For SAP NetWeaver Mobile PDA Client Single Sign-on For SAP NetWeaver Mobile PDA Client Applies to: SAP NetWeaver PDA Mobile Client 7.30. For more information, visit the Mobile homepage. Summary Single Sign-On (SSO) is a mechanism that eliminates

More information