Reader expected need to be familiar with Websphere Lom bardi Edition V7.2, Websphere Application Server V7.0 and DB2 version 9.

Size: px
Start display at page:

Download "Reader expected need to be familiar with Websphere Lom bardi Edition V7.2, Websphere Application Server V7.0 and DB2 version 9."

Transcription

1 Websphere Lombardi V7.2 and SQL Integration service Introduction WebSphere Lombardi Edition V7.2(Author Envir) provides Integrated Service to connect to the database management system (DBMS) that was specified during installation time Microsoft SQL server, DB2, or Oracle. This tutorial illustrates how to manipulate data in the DBMS using Lombardi Edition by using JNDI in Websphere Application Server. In this tutorial we use DB2 version 9.7 Fix pack 1 Objectives In this tutorial, you will learn how to: Work with the Authoring Environment in WebSphere Lombardi Edition. Create a Toolkit, a re-used library can be used across numerous process applications Create variables: input, output, private, and complex structure Create an Integrated Services interacting with database by using SQL Integration Using parameter in SQL integration Debug Create a Human Service Integrate the Human Service with the Integration Service Create database, table and configure authority. Create a custom data source that you can use in WebSphere Lombardi Edition. Test the custom data source. Prerequisites Reader expected need to be familiar with Websphere Lom bardi Edition V7.2, Websphere Application Server V7.0 and DB2 version 9.7 Fix pack 1 System requirements You need WebSphere Lombardi Edition V7.2 running on Windows XP or Windows 7 with access to DB2 V

2 Create a Toolkit in Authoring Environment A Toolkit is a collection of library items which can be re-used in variety of process applications. The Image below is a good illustration of toolkits Step 1: Login into Lombardi Authoring Environment(Author Envir) with tw_admin user Step 2: Create a new Toolkit in Lombardi Authoring Environment Fill in the pop up dialog as below and click Create button 2

3 Step 3: Open the Designer perspective Step 4: Create an Integration Service to connect to DB2 We need to have a connection to DB2 for extracting data from db2 purpose. Therefore, we need to have an Integration Service to do it. Fill in popup dialog as below, then click Finish button: 3

4 Step 4: Design the workflow for the new Integration Service On the right Common pallet, drag 2 components(server Scriptlet and Server Script), which run at server side, into the diagram as below. 4

5 Step 5: Connect with SQL Execute Statement. In Author Envir, The SQL Integration services are Java-based integrations that bind to a specific method in the teamworks.sqlconnector Java class. It means that we have many built in services in the System Data toolkit enable us to have interaction with database. In this tutorial we use SQL Execute Statement Under Toolkits, expand System Data and select All, then start typing SQL Execute to filter the components, Drag the SQL Execute Statement into the diagram Step 6: Wire all the component together and set reasonable names for the components a. To set the name for Untitled1, Please click on Untitled 1, in the Properties panel, select Step and type Set Query for the name property b. Set the name for Untitled2 as Set Parameter At this state, we can have a brief overview about the workflow of our new toolkit. Further next step, we need to have data to store. Click Save(Ctrl + S) button to save the new toolkit Create Variables for the toolkit Step 1: Select the Variables tab, and click on Add Input button to add an input The Default data type is String. Check the Has Default check box and input the PO_1234_56 as default value 5

6 Step 2: Add Output Click on Add Output button to add Output data. Our integration service is retrieving data from database, it s not right if our service does not return any value. Hence, we need to add Output to return data from the service. a. Set the name for output as policydetails. b. In Variable Type click on New button policydetails contains a lot of user defined data such as: policy number, policy issue date, etc. In Author Envir, we definitely does not have any data type sound similar like it. That s the reason we need to create a Complex Structure Type c. Put PolicyDetails as the name for the new Complex Structure Type and click Finish to bring an assist window for the new data type. 6

7 d. In the Parameter section, click on Add button and fill in Name property as PolicyNum. The default data type is String, we do not need to select e. Click on Add button(in the Parameter section), fill in the Name property as PolicyIssueDate. Click on Select button to select data type Select Date as date type f. Add new parameters for this complex data as the image below 7

8 g. Click save and press close button to navigate to Retrieve Policy Details toolkit We need an SQL string for the SQL Integration to execute, I bring up some questions: Where is this SQL string defined: inside this integration service or can be dynamically set as an input? Does it contain any parameter? If yes, what kinds of parameter they are? What sort of data return after executing this SQL? What kinds of data type the return values(a list, a string or a number, etc)? Where do we store the return data for the SQL execution? Depending on your requirements, you will have different answers and they affect the way you design the toolkit and application. For this tutorial, we just need to define the SQL string inside the toolkit, the return values is a PolicyDetails type. This is the reason we need to have a private variable to store SQL string, a private variable to store a parameter, and a private variable to store the returned result list of the SQL string. We will discuss further details in next section. 8

9 Step 3: Add private variables: a. Add a private variable named SQL with data type as String b. Add a private variable named params with data type as SQL Parameter. Check Is List c. Add a private variable named policydetailslist with data type as PolicyDetails. Check Is List d. Click Save 9

10 Implement the components of Retrieve Policy Details Integration Service Step 1: Implement the Set Query component a. Click on Set Query component, and click on Implementation b. In the Script section, input the SQL String: SELECT POLICYNUM as POLICYNUM, POLICYISSUEDATE as POLICYISSUEDATE, POLICYSTATUS as POLICYSTATUS, POLICYCOMMENCEMENTDATE as POLICYCOMMENCEMENTDATE, POLICYMATURITYDATE as POLICYMATURITYDATE, PROPOSERNAME as PROPOSERNAME,FIRSTLIFEASSURED as FIRSTLIFEASSURED, FIRSTLIFEASSUREDNAME as FIRSTLIFEASSUREDNAME, GENDERFIRSTLIFEASSURED as GENDERFIRSTLIFEASSURED, SECONDLIFEASSURED as SECONDLIFEASSURED, SECONDLIFEASSUREDNAME as SECONDLIFEASSUREDNAME, GENDERSECONDLIFEASSURED as GENDERSECONDLIFEASSURED, VIP as VIP, CLAIMNUMBER as CLAIMNUMBER, CLAIMSTATUS as CLAIMSTATUS FROM DB2ADMIN.POLICYDETAILS WHERE POLICYNUM=? c. In the Binding section, click on Select button to select the variable to store the SQL String into private variable, select private sql variable Step 2: Implement the Set Parameter component a. Select on Set Parameter component, click on its Implementation property b. In the Script section, input script as below c. Step 3: Implement the SQL Execute Statement component 10

11 d. We have already defined the SQL string and keep in a private variable named sql. For this component, we need to pass the SQL string into this component as one of the inputs. Furthermore, this SQL Component also requires parameters list, return type, data source name, and etc as inputs. Fortunately, we have planned for the return type, data source name and parameters list e. Click on the SQL Execute Statement component, select the Data Mapping property. f. Click the button to map the SQL String as the picture below g. Unchecked the Use default checkbox of parameters to enable edit its content, Click on mapping button to map data to private variable named params. h. Unchecked the Use default check of returntype, and put "PolicyDetails" as its value. i. Enable edit the datasourcename and insert "jdbc/sampledb" as its value j. For the results(any) field of mapping output section, we choose policydetailslist as output 11

12 Debug Assumed that we have configured the JNDI jdbc/sampl edb In Websphere Application Server successfully and database is setup already, we will debug the Retrieve Policy Details Integration service to test our new service whether its service function properly. If you have not setup the database, please refer to Create database and configure Authority section to setup database If you have not created the JNDI, please refer to Setup data source(jndi) in Websphere Application Server section to configure the JNDI properly Step 1: Click on debug button of this service. In web browser, we will see a new window specified for debugging. In the browser, there are two buttons Step and Run. Step button is useful for debugging for every step in our service. By contrast, the Run button is purely execution to the next break point or the end of the work flow 12

13 Step 2: Click on Step button in the web browser to examine all the parameters and values of our service. Step 3: Go back to our Lombardi Authoring Environment to look over the token and data inside each component. The Lombardi Authoring Environment navigates to Inspector perspective. You can see the token,, indicating the current flow of our process. In the Inspector view, we can examine more details, data flow of our current service. a. In the Execution State panel, click on Sever Script to display the Variables of the current Flow Object. b. In the Variables Panel, click on policynum to retrieve its value. Step 4: In Web Browser, click on Step button, In Lombardi, out token moves to SQL Execute Statement 13

14 component. Step 5: In Web Browser, click on Step button, NOT the Step Over button, to debug inside the SQL Execute Statement component. In our Lombardi, the token will move into this component as below Step 6: In Web Browser, click on Step button. We can see the return results. Step 7: In Web Browser, click on Step button to go next. Click on Step button to finish debugging By going through these steps, we can understand and analyze the data flow behind the scenes, monitoring the token flow among the activities, flow objects. 14

15 Refine the output of our Integration Service As we can see the results in the debugging mode, the result is a list. However, our SQL Integration Service retrieves the PolicyDetails data by the policynum, which is a Primary key of the PolicyDetails table. Hence, the output of our service is a single record, not a list. Step 1: Drag the Server Script into the diagram, between the SQL Execute Statement and the end Step 2: Rename the new component as Refine Output and wave the new component, Step 3: Click on the End line.unchecked the Show End State Step 4: Click on the Refine Output Server Script, Select the Implementation and put the script as below into its Script field. This script is used to assign the first record in the return result list to output variable.if(tw.local.policydetailslist.listlength > 0){ tw.local.policydetails = tw.local.policydetailslist[0]; } 15

16 Design a Human Service (Coach) to capture the return data from our database integration service We can design a Human Service in a process application. But in this tutorial, I choose to design the Human Service inside this toolkit because i need to re-use this Human service in many process applications. Putting it into your toolkit or process application is up to your specific requirements Step 1: In Designer view, click + button of User Interface, and select Human Service Step 2: Input Select Policy in the new popup dialog and click Finish button. Step 3: In the Select Policy service, switch to Variables tab Step 4: Click on Add Private button, and put policydetails as its name and select PolicyDetails as its variable type. Check Has Default 16

17 Step 5: Go back to Diagram view, drag a Coach into the diagram Step 6: Click Save, double click on the new Coach to navigate into Coach view. Step 7: Drag the policydetails variable in the Variables panel into the Coach 17

18 Step 8: Select the Policy Details panel, In the Properties panel, select Section, and increase # of Columns to 2. Step 9: Drag the Button Group in the Controls panel right below the Policy Num, re-arrange the GUIs Step 10: Select the new button(button), select Presentation, and change the label of this button into Search 18

19 Step 11: Drag the OK button into the Policy Details Section, and select the Section Title and press Delete button. Step 12: Go back to Diagram view, and wave all the objects together Step 13: Select the Coach, and change its name to Main GUI Step 14: Select the Implementation, and drag the Retrieve Policy Details Integration Service into our Human Service s diagram 19

20 Step 15: Select the Sequence Flow button, and draw the diagram as below: Step 16: Select the Retrieve Policy Details, In the Data Mapping, map the input to tw.local.policydetails.policynum and output to tw.local.policydetails. Step 17: Press Save button and Click the Run button,, to test our product Result after clicking on Search button 20

21 Create database and configure Authority It depends on the DB2 front end, we can have numerous ways to create a dedicated database for business interaction. I do not really pay very high attention on database setup in this tutorial. However, I focus on some very important steps only. Step 1: Create database name : SAMPLE Step 2: Ensure the security of the SAMPLE database granting to appropriate user correctly: In this tutorial, I choose db2admin is granted user. Step 3: Create table and populate initial data into the new table a. Create table CREATE TABLE DB2ADMIN.POLICYDETAILS ( POLICYNUM VARCHAR (10) NOT NULL, POLICYISSUEDATE DATE, POLICYSTATUS VARCHAR (10), POLICYCOMMENCEMENTDATE DATE, POLICYMATURITYDATE DATE, PROPOSERNAME VARCHAR (10), FIRSTLIFEASSURED VARCHAR (10), FIRSTLIFEASSUREDNAME VARCHAR (10), GENDERFIRSTLIFEASSURED VARCHAR (10), SECONDLIFEASSURED VARCHAR (10), SECONDLIFEASSUREDNAME VARCHAR (10), GENDERSECONDLIFEASSURED VARCHAR (10), VIP 21

22 CHARACTER (1), CLAIMNUMBER INTEGER, CLAIMSTATUS VARCHAR (10), CONSTRAINT CC PRIMARY KEY ( POLICYNUM) ) ; b. Populate data INSERT INTO SYSIBM.POLICYDETAILS (POLICYNUM, POLICYSTATUS, PROPOSERNAME, FIRSTLIFEASSURED, FIRSTLIFEASSUREDNAME, GENDERFIRSTLIFEASSURED, SECONDLIFEASSURED, SECONDLIFEASSUREDNAME, GENDERSECONDLIFEASSURED, VIP, CLAIMNUMBER, CLAIMSTATUS) VALUES('PO_1234_56','VALID','DANH_PROP','FIRST_DANH','1ST_AS_N','MALE','2ND_ASS','2ND_AS_NA',' MALE','Y',1234,'VALID'); 22

23 Setup data source(jndi) in Websphere Application Server. 1. The assumptions are: a. DB2 is running and you have created a sample database to test with it. In this case, we are using the sample database that comes with the DB2 product. If the sample database does not exist, you may run the DB2 First Steps to create it. b. The WebSphere Application Server V7.0 ProcessCenter01 service is started. 2. In a web browser, bring up the WebSphere Administrative Console. For example, The port number may be different in your environment. You can look in the <WLE_HOME>/AppServer/profiles/Lombardi/logs/ProcessCenter01 Service.log file to determine the port number. 3. Log in as tw_user. The password is tw_user, as shown in Figure 1. Figure 1. WebSphere Administrative Console login 4. In the navigation pane go to Resources > JDBC > Data sources. 5. In All scopes, you see five data sources that were created during product installation. One is the default "Datasource" and the other four are related to Lombardi Teamworks. 6. You will create a new data source that points to the sample database: a. Change the Scope to Cell=LombardiCell01. b. Click New. c. Enter a data source name. We called it SampleDB Data Source. d. Enter a JNDI name, for example, jdbc/sampledb (Figure 2) and click Next. Figure 2. Data source information 23

24 e. You may choose to create a new Java Database Connectivity (JDBC) provider. Since one already exists for DB2, select an existing JDBC provider. f. Click Select an existing JDBC Provider. From the drop down list, select TeamWorks Process Server DB2 JDBC Driver as shown in Figure 3 and click Next. Figure 3. Select the JDBC provider g. For the driver type, choose 4. h. Enter the database name as SAMPLE. i. Enter the database server name as localhost. j. If the port number is not filled in, enter the database port number as shown in Figure 4. The default port number for DB2 is k. Click Next. Note: In production environments, we recommend that you use a fully qualified host name 24

25 rather than localhost. Figure 4. Database properties l. Choose the LombardiCell01/processdblogon alias (Figure 5) for all, except the mappingconfiguration alias. m. Click Next. Note: Typically, you create a J2C authentication alias. Since you are simply using a different database table in the same DB2 instance, you can use the existing J2C aliases. Figure 5. Security settings 25

26 n. On the Summary screen, double-check the values and click Finish, as shown in Figure 6. Figure 6. Data source creation summary screen 26

27 o. Save to the master configuration and restart the server. p. Select the newly created data source and click the Test connection button. Make sure the connection is successful. If there are errors, fix them before proceeding. 7. We need to add user and password to this JNDI. In the data source page, click on the link Sample Data Source Name 27

28 8. In the new window, click on Custom properties 9. Click on New button 10. Fill user to the name text field. Fill your db2 user in the value text field, In my environment, my db2 user is db2admin. Then, Click Apply 28

29 After this step, we have one property having db2 user name 11. We need to create another property containing the password as well. 29

30 12. Double check the overall Custom properties, and click Save 13. Test connection. 30

31 References: WebSphere Lombardi Edition 7.1 STEW Materials WB003 V 01.1 ENG 31

Exposing CICS Transactions to WLE

Exposing CICS Transactions to WLE Exposing CICS Transactions to WLE Lab Exercise Author: David J Brett, Version 1.0 IBM BPM 7.5 Lab Number 1 Copyright IBM Corporation, 2011 US Government Users Restricted Rights - Use, duplication or disclosure

More information

CREATING ORACLE DATA SOURCES

CREATING ORACLE DATA SOURCES CREATING ORACLE DATA SOURCES This document describes how to create and configure WAS (WebSphere Application Server) JDBC (Java Database Connectivity) data sources for a Standardization Rules Designer installation

More information

Creating a SQL Service with IBM WebSphere Portlet Factory. Introduction to creating services from a relational database

Creating a SQL Service with IBM WebSphere Portlet Factory. Introduction to creating services from a relational database Creating a SQL Service with IBM WebSphere Portlet Factory May, 2009 Copyright International Business Machines Corporation 2009. All rights reserved. This article with the accompanying sample shows you

More information

IBM WebSphere Lombardi Edition 7.2 Business Process Management Workshop

IBM WebSphere Lombardi Edition 7.2 Business Process Management Workshop IBM IBM WebSphere Lombardi Edition 7.2 Business Process Management Workshop Lab Exercises Contents LAB 1 BUILD-FROM-SCRATCH LAB - PART 1... 4 1.1 START LOMBARDI AUTHORING ENVIRONMENT... 4 1.1.1 START THE

More information

The following instructions cover how to edit an existing report in IBM Cognos Analytics.

The following instructions cover how to edit an existing report in IBM Cognos Analytics. IBM Cognos Analytics Edit a Report The following instructions cover how to edit an existing report in IBM Cognos Analytics. Navigate to Cognos Cognos Analytics supports all browsers with the exception

More information

Departamento de Engenharia Informática. Systems Integration. SOA Adapters Tutorial. 1. Open SQL*Plus in order to run SQL commands.

Departamento de Engenharia Informática. Systems Integration. SOA Adapters Tutorial. 1. Open SQL*Plus in order to run SQL commands. Departamento de Engenharia Informática Systems Integration SOA Adapters Tutorial IE 2016 In this tutorial, we shall create a BPEL process that uses two adapters, namely the file adapter and database adapter.

More information

SharePoint AD Administration Tutorial for SharePoint 2007

SharePoint AD Administration Tutorial for SharePoint 2007 SharePoint AD Administration Tutorial for SharePoint 2007 1. General Note Please note that AD Administration has to be activated before it can be used. For further reference, please see our Product Installation

More information

API Gateway Version September Key Property Store User Guide

API Gateway Version September Key Property Store User Guide API Gateway Version 7.5.2 15 September 2017 Key Property Store User Guide Copyright 2017 Axway All rights reserved. This documentation describes the following Axway software: Axway API Gateway 7.5.2 No

More information

29 March 2017 SECURITY SERVER INSTALLATION GUIDE

29 March 2017 SECURITY SERVER INSTALLATION GUIDE 29 March 2017 SECURITY SERVER INSTALLATION GUIDE Contents 1. Introduction... 2 1.1 Assumptions... 2 1.2 Prerequisites... 2 2. Required setups prior the Security Server Installation... 3 1.1 Create domain

More information

Managing Your Database Using Oracle SQL Developer

Managing Your Database Using Oracle SQL Developer Page 1 of 54 Managing Your Database Using Oracle SQL Developer Purpose This tutorial introduces Oracle SQL Developer and shows you how to manage your database objects. Time to Complete Approximately 50

More information

Database Explorer Quickstart

Database Explorer Quickstart Database Explorer Quickstart Last Revision: Outline 1. Preface 2. Requirements 3. Introduction 4. Creating a Database Connection 1. Configuring a JDBC Driver 2. Creating a Connection Profile 3. Opening

More information

SignArchive 2.5. User Manual SOFTPRO GmbH, All rights reserved. Version 0.4

SignArchive 2.5. User Manual SOFTPRO GmbH, All rights reserved. Version 0.4 SignArchive 2.5 User Manual. 2008 SOFTPRO GmbH, All rights reserved Version 0.4 Date: August 5, 2008 Date: August 5, 2008 Content 1 OVERVIEW...4 2 INSTALLATION...5 2.1 SIGNARCHIVE SERVER...5 2.1.1 Upgrade

More information

Tutorial 1. Creating a Database

Tutorial 1. Creating a Database Tutorial 1 Creating a Database Microsoft Access 2010 Objectives Learn basic database concepts and terms Explore the Microsoft Access window and Backstage view Create a blank database Create and save a

More information

Red Hat JBoss Data Virtualization 6.2 Using the Dashboard Builder. David Sage

Red Hat JBoss Data Virtualization 6.2 Using the Dashboard Builder. David Sage Red Hat JBoss Data Virtualization 6.2 Using the Dashboard Builder David Sage Red Hat JBoss Data Virtualization 6.2 Using the Dashboard Builder David Sage dlesage@redhat.com Legal Notice Copyright 2017

More information

Oracle Big Data Cloud Service, Oracle Storage Cloud Service, Oracle Database Cloud Service

Oracle Big Data Cloud Service, Oracle Storage Cloud Service, Oracle Database Cloud Service Demo Introduction Keywords: Oracle Big Data Cloud Service, Oracle Storage Cloud Service, Oracle Database Cloud Service Goal of Demo: Oracle Big Data Preparation Cloud Services can ingest data from various

More information

IBM DB Getting started with Data Studio Hands-On Lab. Information Management Cloud Computing Center of Competence.

IBM DB Getting started with Data Studio Hands-On Lab. Information Management Cloud Computing Center of Competence. IBM DB2 9.7 Getting started with Data Studio Hands-On Lab I Information Management Cloud Computing Center of Competence IBM Canada Lab Contents 1. INTRODUCTION...2 2. OBJECTIVES...2 3. SUGGESTED READING...3

More information

Tivoli Common Reporting V Cognos report in a Tivoli Integrated Portal dashboard

Tivoli Common Reporting V Cognos report in a Tivoli Integrated Portal dashboard Tivoli Common Reporting V2.1.1 Cognos report in a Tivoli Integrated Portal dashboard Preethi C Mohan IBM India Ltd. India Software Labs, Bangalore +91 80 40255077 preethi.mohan@in.ibm.com Copyright IBM

More information

Policy Manager for IBM WebSphere DataPower 7.2: Configuration Guide

Policy Manager for IBM WebSphere DataPower 7.2: Configuration Guide Policy Manager for IBM WebSphere DataPower 7.2: Configuration Guide Policy Manager for IBM WebSphere DataPower Configuration Guide SOAPMDP_Config_7.2.0 Copyright Copyright 2015 SOA Software, Inc. All rights

More information

APAR PO06620 Installation Instructions

APAR PO06620 Installation Instructions IBM Corporation APAR PO06620 Installation Instructions IBM Counter Fraud Management 1.5.0.5 IBM Counter Fraud Development 3-31-2017 Table of Contents 1 Fix readme... 1 2 Abstract... 1 3 Contents... 1 4

More information

AquaLogic BPM Enterprise Configuration Guide

AquaLogic BPM Enterprise Configuration Guide AquaLogic BPM Enterprise Configuration Guide IBM WebSphere Edition Version: 6.0 2 ALBPM TOC Contents Getting Started...4 Document Scope and Audience...4 Documentation Roadmap...4 What is ALBPM Enterprise?...4

More information

Installing Oracle 12c R1 on a 64-bit OS

Installing Oracle 12c R1 on a 64-bit OS Complete this step only AFTER installing SQL Server Development Tools (SSDT). To install Oracle, complete these steps. Confirm Prerequisite 1) Confirm SSDT (Sql Server Data Tools) exists on the workstation.

More information

Configuring Pentaho to Use Database-Based Security

Configuring Pentaho to Use Database-Based Security Configuring Pentaho to Use Database-Based Security This page intentionally left blank. Contents Overview... 1 Before You Begin... 1 Use Case: Applying Pentaho to Existing Database-Based Security... 1 Authentication

More information

opencrx Installation Guide for MySQL 5

opencrx Installation Guide for MySQL 5 opencrx Installation Guide for MySQL 5 Version 2.5.1 www.opencrx.org License The contents of this file are subject to a BSD license (the "License"); you may not use this file except in compliance with

More information

Kony MobileFabric. Sync Windows Installation - Manual - WebSphere. On-Premises. Release 7.2. Document Relevance and Accuracy

Kony MobileFabric. Sync Windows Installation - Manual - WebSphere. On-Premises. Release 7.2. Document Relevance and Accuracy Kony MobileFabric Sync Windows Installation - Manual - WebSphere On-Premises Release 7.2 Document Relevance and Accuracy This document is considered relevant to the Release stated on this title page and

More information

Security Management System Camera Configuration Axis IP Device (Stream Profile Support)

Security Management System Camera Configuration Axis IP Device (Stream Profile Support) Security Management System Camera Configuration Axis IP Device (Stream Profile Support) Introduction Security Management System software supports several video source makes and models. This includes IP

More information

Importing source database objects from a database

Importing source database objects from a database Importing source database objects from a database We are now at the point where we can finally import our source database objects, source database objects. We ll walk through the process of importing from

More information

Manipulating Database Objects

Manipulating Database Objects Manipulating Database Objects Purpose This tutorial shows you how to manipulate database objects using Oracle Application Express. Time to Complete Approximately 30 minutes. Topics This tutorial covers

More information

National Fire Incident Reporting System (NFIRS 5.0) Configuration Tool User's Guide

National Fire Incident Reporting System (NFIRS 5.0) Configuration Tool User's Guide National Fire Incident Reporting System (NFIRS 5.0) Configuration Tool User's Guide NFIRS 5.0 Software Version 5.3 Prepared for: FEMA Round Hill, VA 20142 Prepared by: Verizon Federal Incorporated P.O.

More information

TIBCO Jaspersoft running in AWS accessing a back office Oracle database via JDBC with Progress DataDirect Cloud.

TIBCO Jaspersoft running in AWS accessing a back office Oracle database via JDBC with Progress DataDirect Cloud. TIBCO Jaspersoft running in AWS accessing a back office Oracle database via JDBC with Progress DataDirect Cloud. This tutorial walks through the installation and configuration process to access data from

More information

Lotus Connections 2.5 Install

Lotus Connections 2.5 Install Copyright IBM Corporation All rights reserved Lotus Connections 2.5 Install Contact you local IBM Representative for more information IBM Corporation Page 1 of 108 The architecture used in this guide is

More information

FuegoBPM TM Enterprise Process Orchestration Engine Configuration Instructions for a JVM Engine

FuegoBPM TM Enterprise Process Orchestration Engine Configuration Instructions for a JVM Engine FuegoBPM TM Enterprise Process Orchestration Engine Configuration Instructions for a JVM Engine FUEGOBPM System Administration Training PART NO. FEPOECv5.5 Date January 1, 2005 Copyright Fuego, Inc. 2004.

More information

Toolkit Activity Installation and Registration

Toolkit Activity Installation and Registration Toolkit Activity Installation and Registration Installing the Toolkit activity on the Workflow Server Install the Qfiche Toolkit workflow activity by running the appropriate SETUP.EXE and stepping through

More information

It is recommended for the users reading this document for the first time to read in the following sequence.

It is recommended for the users reading this document for the first time to read in the following sequence. Revision information Revision date Revision contents 2014-01-01 Initial version Table of contents Introduction Purpose of this document This document describes about the system administration function

More information

Portlet Application Development Webinar exercise using JSF and JPA with Rational Application Developer

Portlet Application Development Webinar exercise using JSF and JPA with Rational Application Developer Portlet Application Development Webinar exercise using JSF and JPA with Rational Application Developer This exercise demonstrates how to create an end-to-end Java Persistence API (JPA) enabled Java Server

More information

Expand Your IBM Case Manager System - Integrating with Cognos Real-Time Monitor

Expand Your IBM Case Manager System - Integrating with Cognos Real-Time Monitor Expand Your IBM Case Manager System - Integrating with Cognos Real-Time Monitor Author: Gang Zhan (zhangang@cn.ibm.com) Gang Zhan works on QA of IBM Case Manager development starting from the 2011. He

More information

DB Browser UI Specs Anu Page 1 of 15 30/06/2004

DB Browser UI Specs Anu Page 1 of 15 30/06/2004 DB Browser UI Specs Anu Page 1 of 15 30/06/2004 Contents Topic Page Introduction 3 UI Model 3 Main Window 4 Column properties tab 5 SQL Tab 6 View Record window 7 Connection Information window 9 Setting

More information

AD Sync Client Install Guide. Contents

AD Sync Client Install Guide. Contents AD Sync Client Install Guide Contents AD Sync Client Install Guide... 1 Introduction... 2 Deployment Prerequisites... 2 Configure SQL Prerequisites... 3 Switch SQL to Mixed Mode authentication... 3 Create

More information

Navigate to Cognos Cognos Analytics supports all browsers with the exception of Microsoft Edge.

Navigate to Cognos Cognos Analytics supports all browsers with the exception of Microsoft Edge. IBM Cognos Analytics Create a List The following instructions cover how to create a list report in IBM Cognos Analytics. A list is a report type in Cognos that displays a series of data columns listing

More information

Lab - System Restore in Windows 7 and Vista

Lab - System Restore in Windows 7 and Vista Lab - System Restore in Windows 7 and Vista Introduction In this lab, you will create a restore point and then use it to restore your computer. Recommended Equipment A computer running Windows 7 or Vista

More information

3 Connecting to Applications

3 Connecting to Applications 3 Connecting to Applications 3 Connecting to Applications...1 3.1 Prerequisites...1 3.2 Introduction...1 3.2.1 Pega, the Widget Supplier...2 3.2.2 Mega, the Widget Procurer...2 3.3 Create Requisition...3

More information

WebSphere 6.1 with EJB3 Feature Package Installation and Configuration On Windows

WebSphere 6.1 with EJB3 Feature Package Installation and Configuration On Windows WebSphere 6.1 with EJB3 Feature Package Installation and Configuration On Windows Introdution This exercise is divided into four parts: Part 1 Install WebSphere Application Server Version 6.1 Part 2 Install

More information

VUEWorks Report Generation Training Packet

VUEWorks Report Generation Training Packet VUEWorks Report Generation Training Packet Thursday, June 21, 2018 Copyright 2017 VUEWorks, LLC. All rights reserved. Page 1 of 53 Table of Contents VUEWorks Reporting Course Description... 3 Generating

More information

Once you have entered your Google and password, you can click the Sign In button to continue.

Once you have entered your Google  and password, you can click the Sign In button to continue. Slide 1 Welcome to the Creating and Uploading with Google Docs Tutorial. Google Docs allows you to create documents, spreadsheets, presentations, draw pictures, create forms, and much more directly within

More information

MySQL On Crux Part II The GUI Client

MySQL On Crux Part II The GUI Client DATABASE MANAGEMENT USING SQL (CIS 331) MYSL ON CRUX (Part 2) MySQL On Crux Part II The GUI Client MySQL is the Structured Query Language processor that we will be using for this class. MySQL has been

More information

Document Attachments & Process Links

Document Attachments &  Process Links talkdata Business Process Management Document Attachments & e-mail Process Links Insurance Claim Processing Example Showing a Step-by-step Approach to Document Attachment and e-mail Integration Examples

More information

BP-VA Quick Start. Last update: 29 th January, Copyright Visual Paradigm International Ltd.

BP-VA Quick Start. Last update: 29 th January, Copyright Visual Paradigm International Ltd. BP-VA Quick Start Last update: 29 th January, 2010 Copyright 2002-2010 Visual Paradigm International Ltd. Table of Contents Table of Contents... 2 Getting started... 3 Installing Business Process Visual

More information

DASHBOARD PERFORMANCE INDICATOR DATABASE SYSTEM (PIDS) USER MANUAL LIBERIA STRATEGIC ANALYSIS TABLE OF CONTETABLE OF CONT. Version 1.

DASHBOARD PERFORMANCE INDICATOR DATABASE SYSTEM (PIDS) USER MANUAL LIBERIA STRATEGIC ANALYSIS TABLE OF CONTETABLE OF CONT. Version 1. UNITED STATES AGENCY FOR INTERNATIONAL DEVELOPMENT TABLE OF CONTETABLE OF CONT PERFORMANCE INDICATOR DATABASE SYSTEM (PIDS) LIBERIA STRATEGIC ANALYSIS DASHBOARD USER MANUAL Version 1.0 PERFORMANCE INDICATOR

More information

Plants By WebSphere Ajax Sample Application Installation, Setup and Configuration WebSphere Application Server v8.0

Plants By WebSphere Ajax Sample Application Installation, Setup and Configuration WebSphere Application Server v8.0 Plants By WebSphere Ajax Sample Application Installation, Setup and Configuration WebSphere Application Server v8.0 Tibor Beres Software Engineer WebSphere Application Server SIP Testing IBM Software Group,

More information

Setting up Property File Oracle FLEXCUBE Universal Banking Version [May] [2011]

Setting up Property File Oracle FLEXCUBE Universal Banking Version [May] [2011] Setting up Property File Oracle FLEXCUBE Universal Banking Version-11.3.0 [May] [2011] Table of Contents 1. SETTING UP PROPERTY FILE... 1-1 1.1 INTRODUCTION... 1-1 1.2 PREREQUISITES FOR ORACLE FLEXCUBE...

More information

Outlook Web App (Exchange 2010) User Guide Computer Training Solutions Version Revision Date

Outlook Web App (Exchange 2010) User Guide Computer Training Solutions Version Revision Date Outlook Web App (Exchange 2010) Computer Training Solutions Version 1.7 Revision Date 2014-December-1 Table of Contents QUICK REFERENCE... 2 OUTLOOK WEB APP URL... 2 MANITOBA EHEALTH SERVICE DESK... 2

More information

A quick start: Develop and run SQLJ programs

A quick start: Develop and run SQLJ programs Skill Level: Introductory Yongli An (yongli@ca.ibm.com) DB2 UDB Performance Engineer IBM 02 Dec 2004 Learn how to quickly start using WebSphere Studio Application Developer and DB2 Universal Database to

More information

Extended Search Administration

Extended Search Administration IBM Lotus Extended Search Extended Search Administration Version 4 Release 0.1 SC27-1404-02 IBM Lotus Extended Search Extended Search Administration Version 4 Release 0.1 SC27-1404-02 Note! Before using

More information

IBM. Database Database overview. IBM i 7.1

IBM. Database Database overview. IBM i 7.1 IBM IBM i Database Database overview 7.1 IBM IBM i Database Database overview 7.1 Note Before using this information and the product it supports, read the information in Notices, on page 39. This edition

More information

LET S GET STARTED. A Quick-Start Guide to Development. Version 5

LET S GET STARTED. A Quick-Start Guide to Development. Version 5 Version 5 A Quick-Start Guide to Development RFgen s powerful interactive development environment eases the burdens of almost any development effort by allowing developers to focus on the end results rather

More information

Setting up Property File Oracle FLEXCUBE Universal Banking Version 12.0 [May] [2012]

Setting up Property File Oracle FLEXCUBE Universal Banking Version 12.0 [May] [2012] Setting up Property File Oracle FLEXCUBE Universal Banking Version 12.0 [May] [2012] Table of Contents 1. SETTING UP PROPERTY FILE... 1-1 1.1 INTRODUCTION... 1-1 1.2 PREREQUISITES FOR ORACLE FLEXCUBE...

More information

Setting up a database for multi-user access

Setting up a database for multi-user access BioNumerics Tutorial: Setting up a database for multi-user access 1 Aims There are several situations in which multiple users in the same local area network (LAN) may wish to work with a shared BioNumerics

More information

NBC-IG Installation Guide. Version 7.2

NBC-IG Installation Guide. Version 7.2 Installation Guide Version 7.2 2017 Nuance Business Connect 7.2 Installation Guide Document Revision History Revision Date August 8, 2017 Revision List Updated supported SQL Server versions June 14, 2017

More information

Enterprise Modernization for IBM System z:

Enterprise Modernization for IBM System z: Enterprise Modernization for IBM System z: Transform 3270 green screens to Web UI using Rational Host Access Transformation Services for Multiplatforms Extend a host application to the Web using System

More information

IBM Atlas Policy Distribution Administrators Guide: IER Connector. for IBM Atlas Suite v6

IBM Atlas Policy Distribution Administrators Guide: IER Connector. for IBM Atlas Suite v6 IBM Atlas Policy Distribution Administrators Guide: IER Connector for IBM Atlas Suite v6 IBM Atlas Policy Distribution: IER Connector This edition applies to version 6.0 of IBM Atlas Suite (product numbers

More information

Real Application Security Administration

Real Application Security Administration Oracle Database Real Application Security Administration Console (RASADM) User s Guide 12c Release 2 (12.2) E85615-01 June 2017 Real Application Security Administration Oracle Database Real Application

More information

Microsoft SQL Installation and Setup

Microsoft SQL Installation and Setup This chapter provides information about installing and setting up Microsoft SQL. Encrypted Database Not Supported, page 1 Install and Setup Microsoft SQL Server, page 1 Database Migration Required for

More information

IBM i Version 7.2. Database Database overview IBM

IBM i Version 7.2. Database Database overview IBM IBM i Version 7.2 Database Database overview IBM IBM i Version 7.2 Database Database overview IBM Note Before using this information and the product it supports, read the information in Notices on page

More information

COPYRIGHTED MATERIAL. Contents. Chapter 1: Introducing Microsoft Expression Web 1. Chapter 2: Building a Web Page 21. Acknowledgments Introduction

COPYRIGHTED MATERIAL. Contents. Chapter 1: Introducing Microsoft Expression Web 1. Chapter 2: Building a Web Page 21. Acknowledgments Introduction Acknowledgments Introduction Chapter 1: Introducing Microsoft Expression Web 1 Familiarizing Yourself with the Interface 2 The Menu Bar 5 The Development Window 7 The Development Area 8 The Tabbed File

More information

ICL02: Security Analytics: Discover More in your Endpoint Protection Dashboard Hands-On Lab

ICL02: Security Analytics: Discover More in your Endpoint Protection Dashboard Hands-On Lab ICL02: Security Analytics: Discover More in your Endpoint Protection Dashboard Hands-On Lab Description In this lab you will learn how to install and create custom reports and dashboards using IT Analytics

More information

Data Protection Guide

Data Protection Guide SnapCenter Software 4.0 Data Protection Guide For Custom Plug-ins March 2018 215-12932_C0 doccomments@netapp.com Table of Contents 3 Contents Deciding on whether to read the SnapCenter Data Protection

More information

Using the OpenSpan Siebel Adapter

Using the OpenSpan Siebel Adapter OpenSpan Elective Training Using the OpenSpan Siebel Adapter CHAPTER 1: Using OpenSpan Studio with Siebel CHAPTER 2: Sample Project Data Transfer CHAPTER 3: Navigation Controls CHAPTER 4: Working with

More information

Mascot Insight Installation and setup guide

Mascot Insight Installation and setup guide Mascot Insight Installation and setup guide System requirements These are the system requirements for a Mascot Insight server. On the client side, Mascot Insight can be accessed from most web browsers.

More information

Logi Ad Hoc Reporting Management Console Usage Guide

Logi Ad Hoc Reporting Management Console Usage Guide Logi Ad Hoc Reporting Management Console Usage Guide Version 12.1 July 2016 Page 2 Contents Introduction... 5 Target Audience... 5 System Requirements... 6 Components... 6 Supported Reporting Databases...

More information

WIRELESS DATABASE VIEWER PLUS (ENTERPRISE EDITION) SERVER SIDE USER GUIDE

WIRELESS DATABASE VIEWER PLUS (ENTERPRISE EDITION) SERVER SIDE USER GUIDE WIRELESS DATABASE VIEWER PLUS (ENTERPRISE EDITION) SERVER SIDE USER GUIDE PRODUCT VERSION: 4.2 Wireless Database Viewer Plus(Enterprise Edition) Page 1 CONTENTS 1 INTRODUCTION...4 1.1 FEATURES...4 2 INSTALLATION...5

More information

Quick Start SAP Sybase IQ 16.0

Quick Start SAP Sybase IQ 16.0 Quick Start SAP Sybase IQ 16.0 Windows DOCUMENT ID: DC01686-01-1600-01 LAST REVISED: February 2012 Copyright 2013 by Sybase, Inc. All rights reserved. This publication pertains to Sybase software and to

More information

Creating BPMN Business Process Diagram. Assigning IDs to model elements

Creating BPMN Business Process Diagram. Assigning IDs to model elements Business Process Model and Notation (BPMN) is a graphical representation for designing and modeling business processes visually. It is a standard for business process modeling and provides a graphical

More information

Server Manager User and Permissions Setup

Server Manager User and Permissions Setup Login and Security Once you successfully create your company databases, the next step is to define the groups and users that can access the TRAVERSE data and the functionality they will have within the

More information

Pyramid 2018 Kerberos Guide Guidelines and best practices for how deploy Pyramid 2018 with Kerberos

Pyramid 2018 Kerberos Guide Guidelines and best practices for how deploy Pyramid 2018 with Kerberos Pyramid 2018 Kerberos Guide Guidelines and best practices for how deploy Pyramid 2018 with Kerberos Contents Overview... 3 Warning... 3 Prerequisites... 3 Operating System... 3 Pyramid 2018... 3 Delegation

More information

C-JDBC Tutorial A quick start

C-JDBC Tutorial A quick start C-JDBC Tutorial A quick start Authors: Nicolas Modrzyk (Nicolas.Modrzyk@inrialpes.fr) Emmanuel Cecchet (Emmanuel.Cecchet@inrialpes.fr) Version Date 0.4 04/11/05 Table of Contents Introduction...3 Getting

More information

Java Client Certification for OmegaPS 10g

Java Client Certification for OmegaPS 10g Java Client Certification for OmegaPS 10g OmegaPS 10g is NOT compatible with Java 8, Java 7 Update 21 or Java 6 Update 45 Applies to: OmegaPS R16 (10g Web Variant) to OmegaPS R18.2.02 OmegaPS 10g is certified

More information

Using IBM Rational Business Developer wizards to create a Web application

Using IBM Rational Business Developer wizards to create a Web application Using IBM Rational Business Developer wizards to create a Web application Skill Level: Intermediate Reginaldo Barosa (rbarosa@us.ibm.com) Executive IT Specialist IBM 03 Mar 2008 Updated 05 Aug 2008 This

More information

Live Data Connection to SAP Universes

Live Data Connection to SAP Universes Live Data Connection to SAP Universes You can create a Live Data Connection to SAP Universe using the SAP BusinessObjects Enterprise (BOE) Live Data Connector component deployed on your application server.

More information

Extracting and Storing PDF Form Data Into a Repository

Extracting and Storing PDF Form Data Into a Repository Extracting and Storing PDF Form Data Into a Repository This use case describes how to extract required information from a PDF form document to populate database tables. For example, you may have users

More information

Process Commander Installation Guide

Process Commander Installation Guide Process Commander Installation Guide Version: 6.3 SP1 Database: Oracle Application Server: WebSphere 6 Copyright 2013 Pegasystems Inc., Cambridge, MA All rights reserved. This document describes products

More information

Introduction to using Visual Studio 2010 to build data-aware applications

Introduction to using Visual Studio 2010 to build data-aware applications CT5805701 Software Engineering in Construction Information System Dept. of Construction Engineering, Taiwan Tech Introduction to using Visual Studio 2010 to build data-aware applications Yo Ming Hsieh

More information

Defining an ODBC data source

Defining an ODBC data source Defining an ODBC data source Cisco IPIVR and ICM Environment ALINEiT LLC alineit.com OVERVIEW This guideline document provides the steps needed to create an ODBC data source for the Cisco IPIVR application.

More information

NTP Software File Auditor for Hitachi

NTP Software File Auditor for Hitachi NTP Software File Auditor for Hitachi Installation Guide Version 3.3 This guide details the method for the installation and initial configuration of NTP Software File Auditor for NAS, Hitachi Edition,

More information

MarkLogic Server. Information Studio Developer s Guide. MarkLogic 8 February, Copyright 2015 MarkLogic Corporation. All rights reserved.

MarkLogic Server. Information Studio Developer s Guide. MarkLogic 8 February, Copyright 2015 MarkLogic Corporation. All rights reserved. Information Studio Developer s Guide 1 MarkLogic 8 February, 2015 Last Revised: 8.0-1, February, 2015 Copyright 2015 MarkLogic Corporation. All rights reserved. Table of Contents Table of Contents Information

More information

User Guide Zend Studio for Eclipse V6.1

User Guide Zend Studio for Eclipse V6.1 User Guide Zend Studio for Eclipse V6.1 By Zend Technologies, Inc. www.zend.com Disclaimer The information in this help is subject to change without notice and does not represent a commitment on the part

More information

Sales Quote Demo Setup

Sales Quote Demo Setup Last updated: May 17, 2010 12:05 Sales Quote Demo Setup Sales Quote Demo Setup... 1 1. Create Quote Schema... 1 2. Set up data source in WebLogic server... 1 3. Perform Demo Seeding of Users & Groups...

More information

Follow all of the steps indicated below for each process. Some steps may require IT assistance.

Follow all of the steps indicated below for each process. Some steps may require IT assistance. The instructions provided below are for upgrading EnergyCAP Enterprise from Release 6.0 to Release 6.1SP1. The version number of EnergyCAP 6.1 is 6.1.60.xx. (xx will correspond to the current build, and

More information

Oracle BPEL Process Manager Demonstration

Oracle BPEL Process Manager Demonstration January, 2007 1 Oracle BPEL Process Manager Demonstration How to create a time scheduler for a BPEL process using the Oracle Database Job scheduler by Dr. Constantine Steriadis (constantine.steriadis@oracle.com)

More information

USING SOUNDMINER V4PRO - V4.5

USING SOUNDMINER V4PRO - V4.5 F V T E C H D O C USING SOUNDMINER V4PRO V4.5 So you re looking for some sound effects for your movie... Here is an introduction to using Soundminer, which will help you navigate our sound effects library

More information

Tutorial: Mobile Workflow Package Development. Sybase Unwired Platform 1.5.2

Tutorial: Mobile Workflow Package Development. Sybase Unwired Platform 1.5.2 Tutorial: Mobile Workflow Package Development Sybase Unwired Platform 1.5.2 DOCUMENT ID: DC01212-01-0152-02 LAST REVISED: September 2010 Copyright 2010 by Sybase, Inc. All rights reserved. This publication

More information

Function ID Development II Oracle FLEXCUBE Universal Banking Release 12.0 [May] [2012] Oracle Part Number E

Function ID Development II Oracle FLEXCUBE Universal Banking Release 12.0 [May] [2012] Oracle Part Number E Function ID Development II Oracle FLEXCUBE Universal Banking Release 12.0 [May] [2012] Oracle Part Number E51465-01 Table of Contents Function ID Development II 1. PREFACE... 1-1 1.1 AUDIENCE... 1-1 1.2

More information

Getting Started Guide

Getting Started Guide Interstage Application Server V1 powered by Windows Azure Getting Started Guide Windows B1FW-5952-01ENZ0(01) January 2012 Preface Purpose of This Document This document explains the main features of Interstage

More information

Administering CrashPlan PROe with the Casper Suite. Technical Paper Casper Suite v9.0 or Later 19 August 2014

Administering CrashPlan PROe with the Casper Suite. Technical Paper Casper Suite v9.0 or Later 19 August 2014 Administering CrashPlan PROe with the Casper Suite Technical Paper Casper Suite v9.0 or Later 19 August 2014 JAMF Software, LLC 2014 JAMF Software, LLC. All rights reserved. JAMF Software has made all

More information

FrontBase An Omnis Studio Application

FrontBase An Omnis Studio Application FrontBase An Omnis Studio Application Because of last-minute changes to FrontBase, some of the information in this manual may be inaccurate. Please read the Release Notes on the FrontBase distribution

More information

DOCUMENT REVISION HISTORY

DOCUMENT REVISION HISTORY DOCUMENT REVISION HISTORY Rev. No. Changes Date 000 New Document 10 Jan. 2011 001 Document Revision: 06 Jun. 2011 - Addition of section on MYSQL backup and restore. 002 Document Revision: 22 Jul. 2011

More information

Exchange 2007 Out of Office Administrators Assistant

Exchange 2007 Out of Office Administrators Assistant Exchange 2007 Out of Office Administrators Assistant Installation Guide Version: 2.0 http://telnetport25.wordpress.com Jun. 27 Table of Contents System Requirements... 3 Definition of Configuration Options...

More information

Re-installing SQL Server 2012 Express

Re-installing SQL Server 2012 Express Re-installing SQL Server 2012 Express This document helps you in re-installing SQL Server 2012 Express edition without losing data on the current TM1000 database (Other databases on SQL will be removed).

More information

Brainware Intelligent Capture Visibility

Brainware Intelligent Capture Visibility Brainware Intelligent Capture Visibility Installation and Setup Guide Version: 3.2.x Written by: Product Knowledge, R&D Date: September 2018 Copyright 2009-2018 Hyland Software, Inc. and its affiliates.

More information

Installation and Configuration Guide

Installation and Configuration Guide Installation and Configuration Guide Copyright 2009 DataNet Quality Systems. All rights reserved. Printed in U.S.A. WinSPC and QualTrend are registered trademarks of DataNet Quality Systems. All other

More information

VISIOSVN. System Document

VISIOSVN. System Document VISIOSVN System Document Contents 1 System Design... 3 1.1 Use case diagram... 4 1.2 Use case descriptions... 5 1.3 GUI Design... 14 1.4 Architectural design... 18 2 1 System Design This chapter will first

More information

SAP NetWeaver Identity Management Identity Center Installing and configuring the Identity Management User Interface

SAP NetWeaver Identity Management Identity Center Installing and configuring the Identity Management User Interface SAP NetWeaver Identity Management Identity Center Installing and configuring the Identity Management User Interface Version 7.2 Rev 16 2014 SAP AG or an SAP affiliate company. All rights reserved. No part

More information