SQLScript Small Guide

Size: px
Start display at page:

Download "SQLScript Small Guide"

Transcription

1 Applies to: HANA Summary SQLScript is a superset of the SQL language used to manage databases. This small guide aims to show SQLScript constructs by using two simple tables to help get a quick understanding of this new language. Author: Alvaro Tejada Galindo Company: SAP Labs Created on: 12 December 2011 Author Bio Alvaro joined SAP Labs after almost eleven years of doing ABAP development in both Peru and Canada. Besides ABAP, his main area of expertise is Scripting Languages, which he uses to develop integrations with SAP. He s an SAP Mentor Alumni, Top Contributor and SCN Moderator SAP AG 1

2 Table of Contents Creating the tables... 3 Employees... 3 Roles... 3 Adding some information... 4 SQLScripting... 4 Select... 4 Select some fields... 5 Select with parameters... 5 Join... 6 Inner Join... 6 Left Outer Join... 7 Right Outer Join... 7 Projection... 8 Aggregation... 9 Union Vertical Union Copyright SAP AG 2

3 Creating the tables In order to get a better understanding of how SQLScript works, we re going to build two simple tables that are going to be used for all the examples. Employees Roles Employees The Employees table will only contain, the Id, first and last name and the role number assigned to it. CREATE COLUMN TABLE EMPLOYEE ( ID INTEGER PRIMARY KEY, NAME VARCHAR(30), LAST_NAME VARCHAR(30), ROLE_ID INTEGER Roles The Roles table will have only two fields, one for the Id and one for the role description. CREATE COLUMN TABLE ROLE ( ROLE_ID INTEGER PRIMARY KEY, ROLE VARCHAR(30) 2011 SAP AG 3

4 Adding some information Now that we have our tables ready, it s time to add some data. Just replace P with your own schema. insert into "P075400"."EMPLOYEE" values(001,'alvaro','tejada',001 insert into "P075400"."EMPLOYEE" values(002,'lennon','shimokawa',006 insert into "P075400"."EMPLOYEE" values(003,'raul','mosquera',002 insert into "P075400"."EMPLOYEE" values(004,'kiara','tejada',003 insert into "P075400"."EMPLOYEE" values(005,'pablo','cornejo',004 insert into "P075400"."EMPLOYEE" values(006,'welden','aguilar',007 insert into "P075400"."ROLE" values(001,'development Expert' insert into "P075400"."ROLE" values(002,'senior ABAP Developer' insert into "P075400"."ROLE" values(003,'python Developer' insert into "P075400"."ROLE" values(004,'r Developer' insert into "P075400"."ROLE" values(005,'ruby Developer' insert into "P075400"."ROLE" values(006,'java Developer' SQLScripting For the examples, we re going to create store procedures that are going to populate a buffer table called ProcView. This will allow us to fetch the information without having to fill up another tables or views. Select First statement that we must know, is the Select statement. This will selct everything from the table we want to fetch in. CREATE PROCEDURE ProcWithResultView(OUT EMPLOYEE_TAB EMPLOYEE) LANGUAGE SQLSCRIPT READS SQL DATA WITH RESULT ProcView AS EMPLOYEE_TAB = CE_COLUMN_TABLE( EMPLOYEE SELECT * FROM ProcView; 2011 SAP AG 4

5 Select some fields If we want to select only a couple of fields, we need to create a Table Type: CREATE TYPE EMPLOYEE_VIEW AS TABLE ( NAME VARCHAR(30), LAST_NAME VARCHAR(30) Now, we can create the procedure again (If you have create the procedure, then comment out the first two lines): CREATE PROCEDURE ProcWithResultView(OUT EMPLOYEE_TAB EMPLOYEE_VIEW) EMPLOYEE_TAB = CE_COLUMN_TABLE( EMPLOYEE,[ NAME, LAST_NAME ] SELECT * FROM ProcView; Select with parameters It s easy to use parameters when selecting data. CREATE PROCEDURE ProcWithResultView(IN last_name VARCHAR(30), OUT EMPLOYEE_TAB EMPLOYEE_VIEW) EMPLOYEE_TAB = SELECT NAME, LAST_NAME FROM EMPLOYEE WHERE LAST_NAME = :last_name; ( placeholder =( $$last_name$$, Tejada 2011 SAP AG 5

6 Join A very common statement, is the JOIN which allows us to fetch data from two or more tables. We have three types of joins, INNER JOIN, LEFT OUTER JOIN and RIGHT OUTER JOIN. For this set of examples, we need to create a Table Type first. CREATE TYPE EMPLOYEE_ROLE AS TABLE ( NAME VARCHAR(30), LAST_NAME VARCHAR(30), ROLE_ID INTEGER, ROLE VARCHAR(30), You may have realized that we are including the ROLE_ID, which the common field between the two tables. We re doing this because it s a requisite when doing JOIN on SQLScript. Inner Join This is the dafult join, which fetches data from two or more tables by using a set of common fields. CREATE PROCEDURE ProcWithResultView(IN lt_employee EMPLOYEE,IN lt_role ROLE, OUT EMPLOYEE_ROLE EMPLOYEE_ROLE) EMPLOYEE_ROLE = CE_JOIN(:lt_employee,:lt_role,[ ROLE_ID ],[ NAME, LAST_NAME, ROLE_ID, ROLE ] ( placeholder =( $$lt_employee$$, EMPLOYEE ), placeholder =( $$lt_role$$, ROLE ) As you may have noticed, we re passing the JOIN tables as parameters, as in SQLScript we can t call the tables directly SAP AG 6

7 Left Outer Join The LEFT OUTER JOIN will take data from the left table, even when it doesn t exist on the right table. CREATE PROCEDURE ProcWithResultView(IN lt_employee EMPLOYEE,IN lt_role ROLE, OUT EMPLOYEE_ROLE EMPLOYEE_ROLE) EMPLOYEE_ROLE = CE_LEFT_OUTER_JOIN(:lt_employee,:lt_role,[ ROLE_ID ],[ NAME, LAST_NAME, ROLE_ID, ROLE ] ( placeholder =( $$lt_employee$$, EMPLOYEE ), placeholder =( $$lt_role$$, ROLE ) Right Outer Join The RIGHT OUTER JOIN will take data from the right table, even when it doesn t exist on the left table. CREATE PROCEDURE ProcWithResultView(IN lt_employee EMPLOYEE,IN lt_role ROLE, OUT EMPLOYEE_ROLE EMPLOYEE_ROLE) EMPLOYEE_ROLE = CE_RIGHT_OUTER_JOIN(:lt_employee,:lt_role,[ ROLE_ID ],[ NAME, LAST_NAME, ROLE_ID, ROLE ] ( placeholder =( $$lt_employee$$, EMPLOYEE ), placeholder =( $$lt_role$$, ROLE ) 2011 SAP AG 7

8 Projection A projection is like a Select, but allows us to use parameters and also change the name of the field we re fetching. CREATE PROCEDURE ProcWithResultView(IN lt_employee EMPLOYEE, OUT EMPLOYEE_ROLE EMPLOYEE) EMPLOYEE_ROLE = CE_PROJECTION(:lt_employee,[ ID, NAME, LAST_NAME, ROLE_ID ], ID > 3 ( placeholder =( $$lt_employee$$, EMPLOYEE ) Let s create a new Table Type, to change the name of the fields we re fetching. --DROP TYPE EMPLOYEE_VIEW CREATE TYPE EMPLOYEE_VIEW AS TABLE ( FIRST_NAME VARCHAR(30), LAST_NAME VARCHAR(30) 2011 SAP AG 8

9 Then, we can create our procedure: CREATE PROCEDURE ProcWithResultView(IN lt_employee EMPLOYEE,IN lt_role ROLE, OUT EMPLOYEE_ROLE EMPLOYEE_ROLE) EMPLOYEE_ROLE = CE_PROJECTION(:lt_employee,[ NAME AS FIRST_NAME, LAST_NAME ] ( placeholder =( $$lt_employee$$, EMPLOYEE ) Aggregation Allows us to perform aggregations like COUNT, SUM or MAX. --DROP TYPE EMPLOYEE_VIEW CREATE TYPE EMPLOYEE_VIEW AS TABLE ( NUM_EMPLOYEES INTEGER, After we created the Table Type, we can create the procedure. CREATE PROCEDURE ProcWithResultView(IN lt_employee EMPLOYEE, OUT EMPLOYEE_ROLE EMPLOYEE_ROLE) EMPLOYEE_ROLE = CE_AGGREGATION(:lt_employee,[COUNT( NAME ) AS NUM_EMPLOYEES ] ( placeholder =( $$lt_employee$$, EMPLOYEE ) 2011 SAP AG 9

10 Union Allows us to mix two tables that share the same structure. For this, let s create a new table: CREATE COLUMN TABLE NEW_EMPLOYEE ( ID INTEGER PRIMARY KEY, NAME VARCHAR(30), LAST_NAME VARCHAR(30), ROLE_ID INTEGER And fill it with the following data: insert into "P075400"."EMPLOYEE" values(001,'milly','castro',001 insert into "P075400"."EMPLOYEE" values(002,'marcelo','ramos',002 insert into "P075400"."EMPLOYEE" values(003,'cheko','trepo',006 With that, we can proceed and create the procedure: CREATE PROCEDURE ProcWithResultView(IN lt_employee EMPLOYEE, IN lt_new_employee NEW_EMPLOYEE, OUT EMPLOYEE_VIEW EMPLOYEE) EMPLOYEE_VIEW = CE_UNION_ALL(:lt_employee,:lt_new_employee ( placeholder =( $$lt_employee$$, EMPLOYEE ), ( placeholder =( $$lt_new_employee$$, NEW_EMPLOYEE ) 2011 SAP AG 10

11 Vertical Union The Verticular Union allows us to mix two tables, choosing the fields from each table. CREATE PROCEDURE ProcWithResultView(IN lt_employee EMPLOYEE, IN lt_new_employee NEW_EMPLOYEE, OUT EMPLOYEE_VIEW EMPLOYEE) EMPLOYEE_VIEW = CE_VERTICAL_UNION(:lt_employee,[ ID, NAME ],:lt_new_employee,[ LAST_NAME, ROLE_ID ] ( placeholder =( $$lt_employee$$, EMPLOYEE ), ( placeholder =( $$lt_new_employee$$, NEW_EMPLOYEE ) 2011 SAP AG 11

12 Copyright Copyright 2012 SAP AG. All rights reserved. No part of this publication may be reproduced or transmitted in any form or for any purpose without the express permission of SAP AG. The information contained herein may be changed without prior notice. Some software products marketed by SAP AG and its distributors contain proprietary software components of other software vendors. Microsoft, Windows, Excel, Outlook, and PowerPoint are registered trademarks of Microsoft Corporation. IBM, DB2, DB2 Universal Database, System i, System i5, System p, System p5, System x, System z, System z10, System z9, z10, z9, iseries, pseries, xseries, zseries, eserver, z/vm, z/os, i5/os, S/390, OS/390, OS/400, AS/400, S/390 Parallel Enterprise Server, PowerVM, Power Architecture, POWER6+, POWER6, POWER5+, POWER5, POWER, OpenPower, PowerPC, BatchPipes, BladeCenter, System Storage, GPFS, HACMP, RETAIN, DB2 Connect, RACF, Redbooks, OS/2, Parallel Sysplex, MVS/ESA, AIX, Intelligent Miner, WebSphere, Netfinity, Tivoli and Informix are trademarks or registered trademarks of IBM Corporation. Linux is the registered trademark of Linus Torvalds in the U.S. and other countries. Adobe, the Adobe logo, Acrobat, PostScript, and Reader are either trademarks or registered trademarks of Adobe Systems Incorporated in the United States and/or other countries. Oracle is a registered trademark of Oracle Corporation. UNIX, X/Open, OSF/1, and Motif are registered trademarks of the Open Group. Citrix, ICA, Program Neighborhood, MetaFrame, WinFrame, VideoFrame, and MultiWin are trademarks or registered trademarks of Citrix Systems, Inc. HTML, XML, XHTML and W3C are trademarks or registered trademarks of W3C, World Wide Web Consortium, Massachusetts Institute of Technology. Java is a registered trademark of Oracle Corporation. JavaScript is a registered trademark of Oracle Corporation, used under license for technology invented and implemented by Netscape. SAP, R/3, SAP NetWeaver, Duet, PartnerEdge, ByDesign, SAP Business ByDesign, 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 S.A. in the United States and in other countries. Business Objects is an SAP company. All other product and service names mentioned are the trademarks of their respective companies. Data contained in this document serves informational purposes only. National product specifications may vary. These materials are subject to change without notice. These materials are provided by SAP AG and its affiliated companies ("SAP Group") for informational purposes only, without representation or warranty of any kind, and SAP Group shall not be liable for errors or omissions with respect to the materials. The only warranties for SAP Group products and services are those that are set forth in the express warranty statements accompanying such products and services, if any. Nothing herein should be construed as constituting an additional warranty SAP AG 12

Duet Enterprise: Tracing Reports in SAP, SCL, and SharePoint

Duet Enterprise: Tracing Reports in SAP, SCL, and SharePoint Duet Enterprise: Tracing Reports in SAP, SCL, and SharePoint Applies to: Duet Enterprise 1.0. For more information, visit the. Duet Enterprise Home Site Summary Duet Enterprise consists of a SharePoint

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

SAP AddOn Quantity Distribution. by Oliver Köhler, SAP Germany

SAP AddOn Quantity Distribution. by Oliver Köhler, SAP Germany SAP AddOn Quantity Distribution by Oliver Köhler, SAP Germany Agenda 1. Overview / Introduction 2. Prerequisites 3. How to use / Example 4. Integration with Change Log Monitor 5. Authorization SAP 2009

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

How to Find Suitable Enhancements in SAP Standard Applications

How to Find Suitable Enhancements in SAP Standard Applications How to Find Suitable Enhancements in SAP Standard Applications Applies to: User Exits, Customer Exits, Business Add-Ins. For more information, visit the ABAP homepage. Summary ABAP developers will often

More information

SAP NetWeaver Identity Management Identity Center Minimum System Requirements

SAP NetWeaver Identity Management Identity Center Minimum System Requirements SAP NetWeaver Identity Management Identity Center Minimum System Requirements Version 7.2 Rev 1 No part of this publication may be reproduced or transmitted in any form or for any purpose without the express

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

How to Enable Single Sign-On for Mobile Devices?

How to Enable Single Sign-On for Mobile Devices? How to Enable Single Sign-On for Mobile Devices? Applies to: SAP Netweaver Mobile Client 7.11 and onwards. For more information, visit the Mobile homepage. Summary This guide explains how to enable Single

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

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

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

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

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

How to Handle the System Message in SAP NetWeaver Mobile 7.1

How to Handle the System Message in SAP NetWeaver Mobile 7.1 How to Handle the System Message in SAP NetWeaver Mobile 7.1 Applies to: SAP NetWeaver Mobile 7.10 - SP03 and above. For more information, visit the Mobile homepage. Summary This document briefly explains

More information

Visual Composer Modeling: Data Validation in the UI

Visual Composer Modeling: Data Validation in the UI Visual Composer Modeling: Data Validation in the UI Applies to: Visual Composer for SAP NetWeaver Composition Environment (CE) 7.1. Summary In Visual Composer, validation rules are an often overlooked

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

Quick View Insider Microblog: Why Is There No Inbox?

Quick View Insider Microblog: Why Is There No Inbox? Quick View Insider Microblog: Why Is There No Inbox? Applies to: SAP SNC (Supply Network Collaboration) release 7.0 enhancement pack 1 For more information, visit the Supply Chain Management homepage.

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

Enterprise Search Extension for SAP Master Data Governance

Enterprise Search Extension for SAP Master Data Governance Enterprise Search Extension for SAP Master Data Governance Applies to: ERP 6 EhP 5. For more information, visit the Master Data Management homepage. Summary This article explains the extensibility concept

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

Duplicate Check and Fuzzy Search for Accounts and Contacts. Configuration with SAP NetWeaver Search and Classification (TREX) in SAP CRM WebClient UI

Duplicate Check and Fuzzy Search for Accounts and Contacts. Configuration with SAP NetWeaver Search and Classification (TREX) in SAP CRM WebClient UI Duplicate Check and Fuzzy Search for Accounts and Contacts Configuration with SAP NetWeaver Search and Classification (TREX) in SAP CRM WebClient UI April 2012 Copyright Copyright 2012 SAP AG. All rights

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

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

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

Visual Composer for SAP NetWeaver Composition Environment - Connectors

Visual Composer for SAP NetWeaver Composition Environment - Connectors Visual Composer for SAP NetWeaver Composition Environment - Connectors Applies to: Visual Composer for SAP enhancement package 1 for SAP NetWeaver Composition Environment 7.1 For more information, visit

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 reuse BRFplus Functions Similar to R/3 Function Modules using BRF+ Expression Type Function Call

How to reuse BRFplus Functions Similar to R/3 Function Modules using BRF+ Expression Type Function Call How to reuse BRFplus Functions Similar to R/3 Function Modules using BRF+ Expression Type Function Call Applies to: Tax and Revenue Management. Summary During the building process of BRF+ Rules you might

More information

Crystal Reports 2008 FixPack 2.4 Known Issues and Limitations

Crystal Reports 2008 FixPack 2.4 Known Issues and Limitations Crystal Reports 2008 FixPack 2.4 Known Issues and Limitations 1/5 Copyright Copyright 2010 SAP AG. All rights reserved. No part of this publication may be reproduced or transmitted in any form or for any

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

Visual Composer Modeling: Migrating Models from 7.1.X to 7.2.0

Visual Composer Modeling: Migrating Models from 7.1.X to 7.2.0 Visual Composer Modeling: Migrating Models from 7.1.X to 7.2.0 Applies to: Visual Composer for SAP Netweaver Composition Environment (CE) 7.2.0, 7.1.X. Summary This document discusses known issues, following

More information

Installing SAP NetWeaver Mobile Client (eswt) on a Storage Card

Installing SAP NetWeaver Mobile Client (eswt) on a Storage Card Installing SAP NetWeaver Mobile Client (eswt) on a Storage Card Applies to: SAP NetWeaver Mobile 7.1 client (type eswt) For more information, visit the Mobile homepage. Summary This document explains the

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

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

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

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

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

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

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

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

Using Default Values in Backend Adapter

Using Default Values in Backend Adapter Using Default Values in Backend Adapter Applies to: SAP NetWeaver Mobile 7.1 applicable for all service packs Summary Background, concept and usage of default values in BAPI Wrapper based backend adapter

More information

Testing Your New Generated SAP NetWeaver Gateway Service

Testing Your New Generated SAP NetWeaver Gateway Service Testing Your New Generated SAP NetWeaver Gateway Service Applies to: SAP NetWeaver Gateway 2.0 SP02 Summary In this Article we will focus on how to test the NetWeaver Gateway Service you created using

More information

How to Set Up Data Sources for Crystal Reports Layouts in SAP Business One, Version for SAP HANA

How to Set Up Data Sources for Crystal Reports Layouts in SAP Business One, Version for SAP HANA How-To Guide SAP Business One 8.82, Version for SAP HANA Document Version: 1.0 2012-09-05 How to Set Up Data Sources for Crystal Reports Layouts in SAP Business One, Version for SAP HANA All Countries

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

Quick View Insider: Understanding Quick View Configuration

Quick View Insider: Understanding Quick View Configuration Quick View Insider: Understanding Quick View Configuration Applies to: SAP SNC (Supply Network Collaboration) release 7.0 enhancement pack 1 SNC 7.0: Most concepts described here apply to SAP SNC 7.0.

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

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

Manual Activities of SAP Note Globalization Services, 2012/06/05

Manual Activities of SAP Note Globalization Services, 2012/06/05 Manual Activities of SAP Note.1604131 Globalization Services, 2012/06/05 1) 3) Caution: The screen captures are taken in SAP ERP 6.0 system without EhP with SAPKH60017. 1.) In the SAP_APPL system, go to

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

Using JournalEntries and JournalVouchers Objects in SAP Business One 6.5

Using JournalEntries and JournalVouchers Objects in SAP Business One 6.5 Using JournalEntries and JournalVouchers Objects in SAP Business One 6.5 Applies to: Business One. For more information, visit the Business One homepage. Summary This article explains how to use the JournalEntries

More information

How to Download Software and Address Directories in SAP Service Marketplace

How to Download Software and Address Directories in SAP Service Marketplace How to Download Software and Address Directories in SAP Service Marketplace Summary This document explains how to download software and address directories from the SAP Service Marketplace. It assumes

More information

How to Guide to create Sample Application in IOS using SUP ODP 2.2

How to Guide to create Sample Application in IOS using SUP ODP 2.2 How to Guide to create Sample Application in IOS using SUP ODP 2.2 Applies to: SUP ODP 2.2. Summary This document provides a step-by-step description on how to use the IOS sample application using SUP

More information

Message Alerting for SAP NetWeaver PI Advanced Adapter Engine Extended

Message Alerting for SAP NetWeaver PI Advanced Adapter Engine Extended Message Alerting for SAP NetWeaver PI Advanced Adapter Engine Extended Applies to SAP NetWeaver PI Advanced Adapter Engine Extended 7.30. Summary This article explains how to set up Message Alerting for

More information

BW Text Variables of Type Replacement Path

BW Text Variables of Type Replacement Path BW Text Variables of Type Replacement Path Applies to: This article is applicable to SAP BI 7.0. For more information, visit the EDW homepage. Summary This document shows how to use and also helps in the

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

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

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

How to Check or Derive an Attribute Value in MDG using BRFPlus

How to Check or Derive an Attribute Value in MDG using BRFPlus How to Check or Derive an Attribute Value in MDG using BRFPlus Applies to: SAP Master Data Governance, as of SAP Master Data Governance 6.1 (or lower). Summary With SAP Master Data Governance you can use

More information

Quick View Insider: How Can I Change the Colors? (SNC 7.0)

Quick View Insider: How Can I Change the Colors? (SNC 7.0) Quick View Insider: How Can I Change the Colors? (SNC 7.0) Applies to: SAP SNC (Supply Network Collaboration) release 7.0 For more information, visit the Supply Chain Management homepage. Summary This

More information

Upgrade MS SQL 2005 to MS SQL 2008 (R2) for Non-High-Availability NW Mobile ABAP System

Upgrade MS SQL 2005 to MS SQL 2008 (R2) for Non-High-Availability NW Mobile ABAP System Upgrade MS SQL 2005 to MS SQL 2008 (R2) for Non-High-Availability NW Mobile ABAP System Applies to: SAP Netweaver Mobile 710/711 systems. For more information, visit the Mobile homepage. Summary This document

More information

Remote Monitoring User for IBM DB2 for LUW

Remote Monitoring User for IBM DB2 for LUW Remote Monitoring User for IBM DB2 for LUW Applies to: Enhancement Package 1 for SAP Solution Manager 7.0 (SP18) and IBM DB2 for Linux, UNIX, and Windows databases V8.2, V9.1 or V9.5. Summary The SAP default

More information

SAP Afaria Post- Installation Part 1

SAP Afaria Post- Installation Part 1 SAP Afaria 6.6FP1 March 2011 English Version 1.1 {03/29/2011:Changed the header to: Afaria Post- Installation Shival Tailor} SAP Afaria Post- Installation Part 1 Document for Afaria Post - Installation

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

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

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

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

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

LO Extraction - Part 6 Implementation Methodology

LO Extraction - Part 6 Implementation Methodology LO Extraction - Part 6 Implementation Methodology Applies to: SAP BI, Business Intelligence, NW2004s. For more information, visit the EDW homepage. Summary This part of the article gives you about the

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

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

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

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

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

Working with Data Sources in the SAP Business One UI API

Working with Data Sources in the SAP Business One UI API Working with Data Sources in the SAP Business One UI API Applies to: Business One For more information, visit the Business One homepage. Summary Data sources provide a means of managing values that are

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

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

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

Quick View Insider: How Do I Set Quick View as SNC s Entry Screen?

Quick View Insider: How Do I Set Quick View as SNC s Entry Screen? Quick View Insider: How Do I Set Quick View as SNC s Entry Screen? Applies to: SAP SNC (Supply Network Collaboration) release 7.0 enhancement pack 1. SAP SNC release 7.0 For more information, visit the

More information

How to Work with Analytical Portal

How to Work with Analytical Portal How-To Guide SAP Business One, version for SAP HANA Document Version: 1.1 2019-02-22 SAP Business One 9.3 PL00 and later, version for SAP HANA Typographic Conventions Type Style Example Example EXAMPLE

More information

How to Integrate Microsoft Bing Maps into SAP EHS Management

How to Integrate Microsoft Bing Maps into SAP EHS Management How to Integrate Microsoft Bing Maps into SAP EHS Management Applies to: Component Extension 1.0 for SAP Environment, Health, and Safety Management. For more information, visit the Sustainability homepage.

More information

Overview of Caffeine ABAP to Go

Overview of Caffeine ABAP to Go Applies to: SAP Technology Summary An overview into Caffeine is provided through this article. Caffeine is a toolset that allows execution of the ABAP language on alternative runtimes outside of the ABAP

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

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

Web Dynpro: Column Coloring in ALV

Web Dynpro: Column Coloring in ALV Web Dynpro: Column Coloring in ALV Applies to: SAP ECC 6.0 Summary The article aims to help the professionals who have only ABAP knowledge and passion to develop their Web Dynpro knowledge in ABAP. This

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

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

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

OData Service in the SAP Backend System for CRUDQ Operations in Purchase Order Scenario

OData Service in the SAP Backend System for CRUDQ Operations in Purchase Order Scenario OData Service in the SAP Backend System for CRUDQ Operations in Purchase Order Scenario Applies to: Duet Enterprise 2.0 SP01 Summary This guide describes in detail how to create and test OData service

More information

Extending DME Transfer Files According to Spanish Banking Control Council to Support Non- Euro Payments

Extending DME Transfer Files According to Spanish Banking Control Council to Support Non- Euro Payments Extending DME Transfer Files According to Spanish Banking Control Council to Support Non- Euro Payments Applies to: SAP ECC 6.0, SAP_APPL 604, FI-AP-AP-PT Payment Transactions, Financial Accounting Spain.

More information

How to Integrate Google Maps into a Web Dynpro ABAP Application Using the Page Builder

How to Integrate Google Maps into a Web Dynpro ABAP Application Using the Page Builder How to Integrate Google Maps into a Web Dynpro ABAP Application Using the Page Builder Applies to: Web Dynpro ABAP in enhancement package 2 for SAP NetWeaver 7.0. For more information, visit the Web Dynpro

More information

SAP ME Build Tool 6.1

SAP ME Build Tool 6.1 Installation Guide: Central Build Instance SAP ME Build Tool 6.1 Target Audience Project Managers Build Engineers Document Version 1.0 October 26, 2012 Typographic Conventions Icons Type Style Example

More information

What are Specifics Concerning the Creation of New Master Data?

What are Specifics Concerning the Creation of New Master Data? What are Specifics Concerning the Creation of New Master Data? Applies to SAP NetWeaver Business Warehouse 7.30 (BW7.30) SP05 with SAP NetWeaver Business Warehouse Accelerator 7.20 (BWA7.20) or HANA 1.0

More information

TBW60. BW: Operations and Performance COURSE OUTLINE. Course Version: 10 Course Duration: 5 Day(s)

TBW60. BW: Operations and Performance COURSE OUTLINE. Course Version: 10 Course Duration: 5 Day(s) TBW60 BW: Operations and Performance. 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

Personalizing SAP BusinessObjects Explorer Information Spaces

Personalizing SAP BusinessObjects Explorer Information Spaces Personalizing SAP BusinessObjects Explorer Information Spaces Applies to: SAP BusinessObjects Explorer and personalizing the display of data using Universes and Excel data sources. Summary This document

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

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

Automatic Deletion of Similar/Identical Requests from InfoCube after Update

Automatic Deletion of Similar/Identical Requests from InfoCube after Update Automatic Deletion of Similar/Identical Requests from InfoCube after Update Applies to: SAP BW 3.5/Business Intelligence 7.0 Summary This document explains the concept of automatic deletion of the overlapping

More information

Architecture of the SAP NetWeaver Application Server

Architecture of the SAP NetWeaver Application Server Architecture of the NetWeaver Application Release 7.1 Online Help 03.09.2008 Copyright Copyright 2008 AG. All rights reserved. No part of this publication may be reproduced or transmitted in any form or

More information

How can a Reference Query Be used?

How can a Reference Query Be used? How can a Reference Query Applies to SAP NetWeaver Business Warehouse 7.30 (BW7.30) SP05 with SAP NetWeaver Business Warehouse Accelerator 7.20 (BWA7.20) or HANA 1.0 running as a database for SAP NetWeaver

More information

How to do a Manual Kernel Upgrade of an SAP Server

How to do a Manual Kernel Upgrade of an SAP Server How to do a Manual Kernel Upgrade of an SAP Server Applies to: SAP WEB Application server (release 2004 and previous releases). For more information, visit the Java homepage. Summary This article shows

More information

What s New / Release Notes SAP Strategy Management 10.1

What s New / Release Notes SAP Strategy Management 10.1 What s New / Release Notes SAP Strategy Management 10.1 PUBLIC Document Version: 1.1 [November 6, 2013] Copyright Copyright 2013 SAP AG. All rights reserved. No part of this publication may be reproduced

More information