Custom BADI Using Function Module UJQ_RUN_AXIS_QUERY

Size: px
Start display at page:

Download "Custom BADI Using Function Module UJQ_RUN_AXIS_QUERY"

Transcription

1 Custom BADI Using Function Module UJQ_RUN_AXIS_QUERY Applies to: SAP Business Planning and Consolidation for NetWeaver 7.0. Summary This Guide covers how to use Custom BADI and the functionality of the Function module UJO_RUN_AXIS_QUERY. Author: Sakthi Jaganathan Company: Infosys Technologies Limited Created on: 22 April 2010 Author Bio Sakthi Jaganathan has been working for Infosys Technologies Limited for the past 2.3 years and has experience in SAP BI 7.0 and SAP BPC MS and NW Versions SAP AG 1

2 Table of Contents Introduction... 3 Scenario... 3 Step by Step Procedure... 4 Appset Creation and Data upload... 4 Custom BADI implementation... 4 Process Chain Creation... 6 Calling the BADI from BPC... 6 Creation of New Package in BPC... 7 Execution of BADI through Data Manager in BPC... 8 Validation of Data in Reports Appendix Sample BADI Code: Disclaimer and Liability Notice SAP AG 2

3 Introduction Custom BADI will be used to implement our own logic through the ABAP programming. For example reading data from one application and updating the same application with the modified data or reading data from one application and updating another application within the modified data etc. To read the cube (i.e. application), we can use different Function Modules like UJQ_RUN_RSDRI_QUERY, UJQ_RUN_AXIS_QUERYetc. To know the list of Function modules used for reading the cube data, go to SE37 tcode and by giving input as UJQ*, Press F4. This document will describe the functionality of the Function Module UJQ_RUN_AXIS_QUERY.This will be used to fetch the data from the cube for the Base members. This is very useful when to find the total value of a particular Parent member. Instead of adding each value of the base member, if we pass the required parent Member, this function module adds up all the base members of that Parent Member. Scenario To find the Savings for a particular month based on Personal Costs which is a parent member, then it will be easy to use this function module UJQ_RUN_AXIS_QUERY in the custom BADI, to get the corresponding BASE members data. From the above Screenshot, Total Personal costs i.e. CE = CE CE CE Total Personal Costs will get from the Planning Application by FM UJQ_RUN_AXIS_QUERY and then we will get the Budget Value for that Month from the user. Savings Amount will get from the calculations on total Personal costs and Budget value for the month which is entered by user SAP AG 3

4 Step by Step Procedure The procedure for creation of Custom BADI, Cube data access, data update in cube will be described in the below steps. Appset Creation and Data upload Create an Appset with the required Applications. To load the Planning Application i.e Cube, through the Data Manager, we will be using Standard Package Import Transaction data. Sample File to be uploaded:- After successful running of the Package, the data in the Cube:- Custom BADI implementation In SE19, Create an Implementation for the BADI UJ_CUSTOM_LOGIC SAP AG 4

5 Once done with the creation of Implementation Class, create a filter to call a Custom BADI from BPC.In the below screenshots, a filter keyword Value_1 is created. Once Filter is created, go the implementation class ->IF_UJ_CUSTOM_LOGIC~EXECUTE, to write our logic. A sample code is written to fetch the data for the Parent Member i.e. CE The output of the function module will be the aggregation of the base members (CE , CE , CE ) corresponding to the parent member, which is the Total Personal Costs. From the user entered Budget value, we will find the savings by subtracting the total personal costs from the budget value. If there is any Savings for that Month, it will create a new account Savings for that month. The code for the above logic is attached in the Appendix. Once done with the code, activate the BADI SAP AG 5

6 Process Chain Creation In RSPC, Create a Process chain ZBPC_BUDGET to run the Custom BADI through the Data manager in BPC. Calling the BADI from BPC After activation of BADI, call the BADI from BPC using the keyword created in the Filter section. To pass any parameters from the BPC to the BADI, we can use the *START_BADI command, otherwise, we can use the *CALL_CUSTOM_LOGIC Command. Create a new Logic file BUDGET.LGF to call the BADI in BPC Admin.We can call from DEFAULT.LGF also SAP AG 6

7 Creation of New Package in BPC In BPC EXCEL, Create a new Package BUDGETPACKAGE for the Process chain ZBPC_BUDGET which is created in Step3.3. Once the above Package is created, Modify the Package in the Advance Tab as below. Add the below code in the Advance Tab SAP AG 7

8 The above code will prompt the user for Member selection, Logic File selection and Budget value. In addition, it will pass the Runtime Parameters like Appset name, Application name etc. to the Process Chain. Save the Package at last. Execution of BADI through Data Manager in BPC Run the Package which is created in the above step. It will prompt for the Logic File name and Members selection SAP AG 8

9 By confirming the above, it will execute the Process Chain with the below message SAP AG 9

10 Check the status of the Package: Now the data in Cube: A new Record is added in the cube with the Account CE Savings. Total Personal costs = = Budget Value = p.m. (Which is hardcoded in the BADI, else we can pass this value through the Parameter to the BADI by prompting the user) Savings = = SAP AG 10

11 Validation of Data in Reports Before executing the BADI, the report:- After executing Custom BADI, the report looks like: 2010 SAP AG 11

12 Appendix Sample BADI Code: METHOD if_uj_custom_logic~execute. " Structure for Internal table for cube data TYPES: BEGIN OF cube_data, brand(20) TYPE c, category(20) TYPE c, entity(20) TYPE c, p_acct(20) TYPE c, time(20) TYPE c, signeddata TYPE /b28/oisdata, END OF cube_data. " internal table and workarea declarations DATA : it_cube_data TYPE STANDARD TABLE OF cube_data, wa_cube_data TYPE cube_data, wa_cube_data1 TYPE cube_data, it_axis TYPE ujq_t_query_dim, wa_axis TYPE ujq_s_query_dim, wa_member TYPE ujq_s_dim_member, wa_param TYPE ujk_s_script_logic_hashentry. *" declaration of the budget value variable. DATA : v_budget TYPE i. " for population internal table to pass the RUN_AXSIS query " Personal costs for the Jan month wa_axis-dimension = 'P_ACCT'. wa_member-dimension = 'P_ACCT'. wa_member-member_name = 'CE '. APPEND wa_member TO wa_axis-member_list. APPEND wa_axis TO it_axis. wa_axis-dimension = 'TIME'. wa_member-dimension = 'TIME'. wa_member-member_name = '2009.JAN'. APPEND wa_member TO wa_axis-member_list. APPEND wa_axis TO it_axis. wa_axis-dimension = 'ENTITY'. wa_member-dimension = 'ENTITY'. wa_member-member_name = 'E_H1'. APPEND wa_member TO wa_axis-member_list. APPEND wa_axis TO it_axis. wa_axis-dimension = 'BRAND'. wa_member-dimension = 'BRAND'. wa_member-member_name = 'BRAND_ALL'. APPEND wa_member TO wa_axis-member_list SAP AG 12

13 APPEND wa_axis TO it_axis. wa_axis-dimension = 'CATEGORY'. wa_member-dimension = 'CATEGORY'. wa_member-member_name = 'ACTUAL'. APPEND wa_member TO wa_axis-member_list. APPEND wa_axis TO it_axis. " To get the Overall Personal Costs parent member value CALL FUNCTION 'UJQ_RUN_AXIS_QUERY' EXPORTING i_appset_id = 'ZAPP_BADI' i_appl_id = 'PLANNING' it_axis = it_axis if_check_member_failed = space IMPORTING et_data = it_cube_data. " reading the Budget value entered by user. READ TABLE it_param WITH KEY hashkey = 'BUDGET' INTO wa_param. IF sy-subrc EQ 0. v_budget = wa_param-hashvalue. ENDIF. *"if the overall personal costs less than the budget value for Jan month, *" then add to the SAvings account. LOOP AT it_cube_data INTO wa_cube_data. IF wa_cube_data-signeddata LT v_budget. ENDIF. ENDLOOP. ENDMETHOD. wa_cube_data1-p_acct = 'CE071000'. wa_cube_data1-time = '2009.JAN'. wa_cube_data1-entity = 'E_H1'. wa_cube_data1-category = 'ACTUAL'. wa_cube_data1-brand = 'Brand'. wa_cube_data1-signeddata = v_budget - wa_cube_data-signeddata. APPEND wa_cube_data1 TO ct_data SAP AG 13

14 Related Contents: How to Pass Parameters to Custom Logic BADI Enterprise Performance Management homepage 2010 SAP AG 14

15 Disclaimer and Liability Notice This document may discuss sample coding or other information that does not include SAP official interfaces and therefore is not supported by SAP. Changes made based on this information are not supported and can be overwritten during an upgrade. SAP will not be held liable for any damages caused by using or misusing the information, code or methods suggested in this document, and anyone using these methods does so at his/her own risk. SAP offers no guarantees and assumes no responsibility or liability of any type with respect to the content of this technical article or code sample, including any liability resulting from incompatibility between the content within this document and the materials and services offered by SAP. You agree that you will not hold, or seek to hold, SAP responsible or liable with respect to the content of this document SAP AG 15

Customized Transaction to Trigger Process Chain from Failed Step

Customized Transaction to Trigger Process Chain from Failed Step Customized Transaction to Trigger Process Chain from Failed Step Applies to: SAP BW 3.x & SAP BI NetWeaver 2004s. For more information, visit the Business Intelligence homepage. Summary There are multiple

More information

Procedure to Trigger Events in Remote System Using an ABAP Program

Procedure to Trigger Events in Remote System Using an ABAP Program Procedure to Trigger Events in Remote System Using an ABAP Program Applies to: SAP BW 3.x, SAP BI 7.x, SAP ECC, APO Systems. Summary This document gives the procedure to trigger events in a Remote System

More information

Triggering the Process Chains at Particular Date using Events

Triggering the Process Chains at Particular Date using Events Triggering the Process Chains at Particular Date using Events Applies to: SAP BW 3.5, Will also work on SAP BI 7 For more information, visit the Business Intelligence homepage Summary This document discusses

More information

Easy Lookup in Process Integration 7.1

Easy Lookup in Process Integration 7.1 Easy Lookup in Process Integration 7.1 Applies to: SAP NetWeaver Process Integration 7.1 For more information, visit the SOA Management homepage. Summary Unlike previous version of PI (7.0) / XI (3.0,

More information

Role and Scope of ABAP in SAP BI

Role and Scope of ABAP in SAP BI Role and Scope of ABAP in SAP BI Applies to: SAP NetWeaver BW. For more information, visit the EDW homepage Summary The document provides a detailed description of the usage of APAP in SAP BI. Author:

More information

POWL: Infoset Generation with Web Dynpro ABAP

POWL: Infoset Generation with Web Dynpro ABAP POWL: Infoset Generation with Web Dynpro ABAP Applies to: WebDynpro ABAP Developer. For more information, visit the Web Dynpro ABAP homepage. Summary: This document explains how to create an Infoset, generate

More information

Step by Step Method for File Archival in BW

Step by Step Method for File Archival in BW Step by Step Method for File Archival in BW Applies to: SAP BW 3.x & SAP BI Net Weaver 2004s. For more information, visit the EDW homepage. Summary This document will give the reader step by step approach

More information

Creation of Sets in SAP-ABAP, How to Read them INI SAP-ABAP Reports

Creation of Sets in SAP-ABAP, How to Read them INI SAP-ABAP Reports Creation of Sets in SAP-ABAP, How to Read them INI SAP-ABAP Reports Applies to: This Article is intended for all those ABAPers who are interested in creating SAP-SETS and use them in ABAP. For more information,

More information

Reporting Duplicate Entries

Reporting Duplicate Entries Applies to: SAP BI 7.0 and above. For more information, visit the Business Intelligence Homepage. Summary It is a common reporting requirement to display duplicate entries based on a characteristic. This

More information

SDN Community Contribution

SDN Community Contribution SDN Community Contribution (This is not an official SAP document.) Disclaimer & Liability Notice This document may discuss sample coding or other information that does not include SAP official interfaces

More information

How to Reference External JAR Files in Web Dynpro DC in SAP NW Portal 7.3

How to Reference External JAR Files in Web Dynpro DC in SAP NW Portal 7.3 How to Reference External JAR Files in Web Dynpro DC in SAP NW Portal 7.3 Applies to: SAP NetWeaver Portal 7.3, NWDS 7.3. For more information, visit the Portal and Collaboration homepage. Summary This

More information

Data Extraction & DS Enhancement in SAP BI Step by Step

Data Extraction & DS Enhancement in SAP BI Step by Step Data Extraction & DS Enhancement in SAP BI Step by Step Applies to: SAP BI 7.0, SAP ABAP, For more information, visit the Business Intelligence homepage. Summary The objective of the article is to outline

More information

Table Row Popup in Web Dynpro Component

Table Row Popup in Web Dynpro Component Table Row Popup in Web Dynpro Component Applies to Web Dynpro for ABAP, NW 7.0. For more information, visit the Web Dynpro ABAP homepage. Summary This document helps to create Table Rowpopin in a Web Dynpro

More information

Routines in SAP BI 7.0 Transformations

Routines in SAP BI 7.0 Transformations Routines in SAP BI 7.0 Transformations Applies to: SAP BI 7.0. For more information, visit the Business Intelligence homepage. Summary This paper gives an overview about the different routines available

More information

Dynamically Enable / Disable Fields in Table Maintenance Generator

Dynamically Enable / Disable Fields in Table Maintenance Generator Dynamically Enable / Disable Fields in Table Maintenance Generator Applies to: SAP ABAP. For more information, visit the ABAP homepage. Summary This article demonstrates on how to Enable / Disable fields

More information

Standalone BW System Refresh

Standalone BW System Refresh Applies to: Software Component: SAP_BW. For more information, visit the EDW homepage Summary BW relevant steps/scenarios during refresh of an existing non-productive BW system from productive BW system

More information

Step By Step: the Process of Selective Deletion from a DSO

Step By Step: the Process of Selective Deletion from a DSO Step By Step: the Process of Selective Deletion from a DSO Applies to: SAP NetWeaver BW. For more information, visit the EDW homepage. Summary Selective deletion from DSO refers to deleting specific values

More information

Freely Programmed Help- Web Dynpro

Freely Programmed Help- Web Dynpro Freely Programmed Help- Web Dynpro Applies to: SAP ABAP Workbench that supports Web dynpro development. For more information, visit the Web Dynpro ABAP homepage. Summary In addition to the Dictionary Search

More information

Process Chain Log Deletion

Process Chain Log Deletion Applies to: SAP BW 3.x & SAP BI Net Weaver 2004s. For more information, visit the EDW homepage Summary Process chains are used in BW landscape to automate the loading sequence. There are multiple process

More information

SAP BW Copy Existing DTP for Data Targets

SAP BW Copy Existing DTP for Data Targets SAP BW Copy Existing DTP for Data Targets Applies to: SAP BI Consultants with ABAP Knowledge. For more information, visit the EDW HomePage. Summary Copy existing DTP to a new one in not possible in SAP

More information

Database Statistics During ODS Activation

Database Statistics During ODS Activation Database Statistics During ODS Activation Applies to: SAP BW (3.5) / SAP BI (7.0). For more information, visit the EDW homepage Summary ODS Activation step periodically recalculates the statistics. This

More information

Recreating BIA Indexes to Address the Growth of Fact Index Table

Recreating BIA Indexes to Address the Growth of Fact Index Table Recreating BIA Indexes to Address the Growth of Fact Index Table Applies to: Software Component: SAP_BW.Release: 700 BIA version: 53 Summary In this article we would learn the application of recreating

More information

Step by Step Guide to Creating a Process Type to Close an Open Request in a Cube in BI 7.0

Step by Step Guide to Creating a Process Type to Close an Open Request in a Cube in BI 7.0 Step by Step Guide to Creating a Process Type to Close an Open Request in a Cube in BI 7.0 Applies to: SAP BI 7.0. For more information, visit the Business Intelligence homepage. Summary You want to create

More information

MDM Syndicator: Custom Items Tab

MDM Syndicator: Custom Items Tab MDM Syndicator: Custom Items Tab Applies to: SAP NetWeaver Master Data Management (MDM) SP04, SP05 and SP06. For more information, visit the Master Data Management homepage. Summary This article provides

More information

How to Default Variant Created for Report Developed In Report Painter/Writer

How to Default Variant Created for Report Developed In Report Painter/Writer How to Default Variant Created for Report Developed In Report Painter/Writer Applies to: Any business organization having reports developed using Report Painter/Report Writer. This is applicable from R/3

More information

Extracting Missing Fields of Data Source Which Are Present In Their Extract Structure

Extracting Missing Fields of Data Source Which Are Present In Their Extract Structure Extracting Missing Fields of Data Source Which Are Present In Their Extract Structure Applies to: ECC 6.0 and BI 3.x and 7.0 For more information, visit the Business Intelligence homepage. Summary Many

More information

Step by Step Procedure for DSO Creation

Step by Step Procedure for DSO Creation Step by Step Procedure for DSO Creation Applies to: SAP BI 7.0. For more information, visit the EDW homepage. Summary This article discusses about the step by step procedure for creating a DSO. Author:

More information

Using Query Extract to Export Data from Business warehouse, With Pros and Cons Analyzed

Using Query Extract to Export Data from Business warehouse, With Pros and Cons Analyzed Using Query Extract to Export Data from Business warehouse, With Pros and Cons Analyzed Applies to: SAP BW 3.X & BI 7.0. For more information, visit the Business Intelligence homepage. Summary This article

More information

Custom Process types Remote Trigger and End Time

Custom Process types Remote Trigger and End Time SDN Contribution Custom Process types Remote Trigger and End Time Applies to: SAP BW 3.1C and Above. Summary Development 1: We sometimes have loads in our process chains whose status and runtime don t

More information

Using Radio Buttons in Web Template

Using Radio Buttons in Web Template Using Radio Buttons in Web Template Applies to: SAP BW 3.5. For more information, visit the Business Intelligence homepage. Summary One of the ideal requirements in the BW Web Reporting is the user wants

More information

Graphical Mapping Technique in SAP NetWeaver Process Integration

Graphical Mapping Technique in SAP NetWeaver Process Integration Graphical Mapping Technique in SAP NetWeaver Process Integration Applies to: SAP NetWeaver XI/PI mappings. For more information, visit the Repository-based Modeling and Design homepage. Summary This guide

More information

Reading Enhanced DataSource fields for the Remote Cube

Reading Enhanced DataSource fields for the Remote Cube Reading Enhanced DataSource fields for the Remote Cube Applies to: SAP BI 7.0. For more information, visit the EDW homepage. Summary SAP Remote Cube does not display the enhanced fields in the data source.

More information

Linking Documents with Web Templates

Linking Documents with Web Templates Linking Documents with Web Templates Summary This article explains certain ways to link documents with our Web-Templates which is a useful way of attaching information with a query. When the enduser runs

More information

How to Write Inverse Routine with Expert Routine

How to Write Inverse Routine with Expert Routine How to Write Inverse Routine with Expert Routine Applies to: Development and support based on SAP BI 7.0 For more information, visit the Business Intelligence homepage. Summary The article shows the example

More information

ABAP Code - Recipients (Specific Format) SAP BW Process Chain

ABAP Code -  Recipients (Specific Format) SAP BW Process Chain ABAP Code - Email Recipients (Specific Format) SAP BW Process Chain Applies to: This article is applicable to all the SAP BI consultants who are accustomed with SAP ABAP skills. For more information, visit

More information

How to Create Top of List and End of List of the ALV Output in Web Dynpro for ABAP

How to Create Top of List and End of List of the ALV Output in Web Dynpro for ABAP How to Create Top of List and End of List of the ALV Output in Web Dynpro for ABAP Applies to: SAP Netweaver 2004S: Web Dynpro for ABAP. For more information, visit the User Interface Technology homepage.

More information

Material Master Extension for New Plant

Material Master Extension for New Plant Material Master Extension for New Plant Applies to: SAP ECC 6.0. For more information, visit the ABAP homepage. Summary There is a need of extending the material of an existing plant in a company code

More information

Integration of Web Dynpro for ABAP Application in Microsoft Share Point Portal

Integration of Web Dynpro for ABAP Application in Microsoft Share Point Portal Integration of Web Dynpro for ABAP Application in Microsoft Share Point Portal Applies to: Web Dynpro ABAP. Summary This tutorial explains how to display Web Dynpro ABAP Application in Microsoft Share

More information

SMT (Service Mapping Tool)

SMT (Service Mapping Tool) Applies to: This document applies to SAP versions ECC 6.0. For more information, visit the ABAP homepage. Summary This article contains the guidelines for using the SMT (Service mapping Tool) Mapping.

More information

Validity Table in SAP BW/BI

Validity Table in SAP BW/BI Applies to: Applicable for SAP BI 3.x and above Summary To maintain the cubes non cumulative Key figures. Author: Om Ambulker Company: Cognizant, Pune Created on: 15 July 2011 Author Bio Om Ambulker is

More information

How to use Boolean Operations in the Formula as Subsidiary for IF Condition

How to use Boolean Operations in the Formula as Subsidiary for IF Condition How to use Boolean Operations in the Formula as Subsidiary for IF Condition Applies to: SAP BW 3.5 & BI 7.0. For more information, visit the EDW homepage. Summary This paper will explain you how to use

More information

DB Connect with Delta Mechanism

DB Connect with Delta Mechanism Applies to: SAP BI/BW. For more information, visit the EDW homepage Summary This Article demonstrates the steps for handling Delta mechanism with Relational Database Management System (RDBMS) like SQL,

More information

Step-By-Step guide to Virtual InfoCube Implementation

Step-By-Step guide to Virtual InfoCube Implementation Step-By-Step guide to Virtual InfoCube Implementation Applies to: SAP NetWeaver BW. For more information, visit the EDW homepage Summary This article provides a detailed insight into Virtual Infocube data

More information

Analysis Process Designer (APD) Step by Step Business Intelligence

Analysis Process Designer (APD) Step by Step Business Intelligence Analysis Process Designer (APD) Step by Step Business Intelligence Applies to: This article applies to SAP_BW 350 and SAP_BW 700 with highest support package SAPKW70017. For more information, visit the

More information

Customizing Characteristic Relationships in BW-BPS with Function Modules

Customizing Characteristic Relationships in BW-BPS with Function Modules Customizing Characteristic Relationships in BW-BPS with Function Modules Applies to: BW-BPS (Ver. 3.5 and BI 7.0) SEM-BPS (Ver 3.2 onwards) Summary This paper discusses the definition of a exit type characteristic

More information

Real Time Data Acquisition (RDA) Overview and Step-by-Step Guide (SAPI and Web Services)

Real Time Data Acquisition (RDA) Overview and Step-by-Step Guide (SAPI and Web Services) Real Time Data Acquisition (RDA) Overview and Step-by-Step Guide (SAPI and Web Services) Applies to: SAP BI 7.0. For more information, visit the Business Intelligence homepage. Summary Sometimes business

More information

How to Create View on Different Tables and Load Data through Generic Datasource based on that View

How to Create View on Different Tables and Load Data through Generic Datasource based on that View How to Create View on Different Tables and Load Data through Generic Datasource based on that View Applies to: SAP Business Intelligence (BI 7.0). For more information, visit the EDW homepage Summary This

More information

Material Listing and Exclusion

Material Listing and Exclusion Material Listing and Exclusion Applies to: Applies to ECC 6.0. For more information, visit the Enterprise Resource Planning homepage Summary This document briefly explains how to restrict customers from

More information

Performance Optimization of Long Running Queries Using OLAP Cache

Performance Optimization of Long Running Queries Using OLAP Cache Performance Optimization of Long Running Queries Using OLAP Cache Applies to: SAP BW 7.0. For more information, visit the Business Intelligence homepage. Summary This article explains how to improve performance

More information

Implementing Customer Exit Reporting Variables as Methods

Implementing Customer Exit Reporting Variables as Methods Implementing Customer Exit Reporting Variables as Methods Applies to: SAP BI 7.0 For more information, visit the Business Intelligence homepage. Summary This article describes how we can implement customer

More information

Maintaining Roles and Authorizations in BI7.0 - RSECADMIN

Maintaining Roles and Authorizations in BI7.0 - RSECADMIN Maintaining Roles and Authorizations in BI7.0 - RSECADMIN Applies to: SAP Business Intelligence 7.0. For more information, visit the Business Intelligence homepage. Summary This paper will take you through

More information

Loading the Data for Time Dependent Hierarchy in SAP BI

Loading the Data for Time Dependent Hierarchy in SAP BI Loading the Data for Time Dependent Hierarchy in SAP BI Applies to: Time dependent hierarchies are often used by organizations to help them organize their master data which changes like employee hierarchies,

More information

Generate Export Data Source

Generate Export Data Source Applies to: SAP BI 7.0 developers and support Users. For more information, visit the EDW homepage Summary This paper describes the data mart interface which makes it possible to update data from one data

More information

Currency Translation in SAP BI Step by step Guide

Currency Translation in SAP BI Step by step Guide Currency Translation in SAP BI Step by step Guide Applies to: SAP BIW 3.5, SAP NetWeaver 7.0. For more information, visit the Business Intelligence homepage. Summary Currency translation allows you to

More information

Replacement Path: Explained with an Illustrated Example

Replacement Path: Explained with an Illustrated Example Replacement Path: Explained with an Illustrated Example Applies to: SAP NetWeaver BW. For more information, visit the EDW homepage Summary The document explains the purpose and implementation method of

More information

Applies To:...1. Summary...1. Table of Contents...1. Procedure..2. Code... Error! Bookmark not defined.0

Applies To:...1. Summary...1. Table of Contents...1. Procedure..2. Code... Error! Bookmark not defined.0 Applies To: Usage of Table Control in ABAP Summary Normally we use wizard if we are working with table control. This document helps us how to create a table control without using a wizard and how to manipulate

More information

Steps to Activate ALE Delta for Custom Master Datasource Created on ZTable

Steps to Activate ALE Delta for Custom Master Datasource Created on ZTable Steps to Activate ALE Delta for Custom Master Datasource Created on ZTable Applies to: This article applies to SAP BI 7.0 and SAP BW 3.X. For more information visit EDW Homepage. Summary This article explains

More information

Hierarchy in Business Objects with Expanded Hierarchy Logic

Hierarchy in Business Objects with Expanded Hierarchy Logic Hierarchy in Business Objects with Expanded Hierarchy Logic Applies to: SAP BW BO Integration Summary The current article talks about ways and means of achieving an expanded hierarchy view in the BO reports

More information

List of Values in BusinessObjects Web Intelligence Prompts

List of Values in BusinessObjects Web Intelligence Prompts List of Values in BusinessObjects Web Intelligence Prompts Applies to: This solution is implemented for a combination of SAP NW BI 7.0 and SAP BO XI 3.1. For more information visit Business Objects Home

More information

How to Broadcast BEx Workbooks using BW Pre-calculation Server and through Process Chains

How to Broadcast BEx Workbooks using BW Pre-calculation Server and through Process Chains How to Broadcast BEx Workbooks using BW Pre-calculation Server and through Process Chains Applies to: SAP BI/BW 3.5 and above. For more information, visit the EDW homepage Summary The document will demonstrate

More information

Step by Step Guide How to Use BI Queries in Visual Composer

Step by Step Guide How to Use BI Queries in Visual Composer Step by Step Guide How to Use BI Queries in Visual Composer Applies to: SAP BW 7.x. For more information, visit the EBW homepage. Summary The objective of this Article is to explain step by step guide

More information

Template Designer: Create Automatic PDF Documents for Attachment or Print Purpose

Template Designer: Create Automatic PDF Documents for Attachment or Print Purpose Template Designer: Create Automatic PDF Documents for Attachment or Print Purpose Applies to: SAP Customer Relationship Management (SAP CRM) Release 7.0 SP 01, November 2008. SAP NetWeaver 7.0 including

More information

Common Queries/Errors while working with Adobe Print PDF Forms

Common Queries/Errors while working with Adobe Print PDF Forms Common Queries/Errors while working with Adobe Print PDF Forms Applies to: SAP Adobe Forms (Print-based forms) Summary This document lists common queries and errors while working on Adobe Print Forms.

More information

Open Text DocuLink Configuration - To Access Documents which are Archived using SAP

Open Text DocuLink Configuration - To Access Documents which are Archived using SAP Open Text DocuLink Configuration - To Access Documents which are Archived using SAP Applies to: Open Text DocuLink for SAP Solutions 9.6.2. For more information, visit http://www.opentext.com Summary Open

More information

A Step-by-Step Guide on IDoc-ALE between Two SAP Servers

A Step-by-Step Guide on IDoc-ALE between Two SAP Servers A Step-by-Step Guide on IDoc-ALE between Two SAP Servers Applies to: All modules of SAP where data need to transfer from one SAP System to another SAP System using ALE IDoc Methodology. For more information,

More information

Creating Custom SU01 Transaction Code with Display and Password Reset Buttons

Creating Custom SU01 Transaction Code with Display and Password Reset Buttons Creating Custom SU01 Transaction Code with Display and Password Reset Buttons Applies to: All versions of SAP. Summary This article will explain you the process of creating custom SU01 transaction code

More information

Restricting F4 (Input Help) Values While Running a SAP BW Query

Restricting F4 (Input Help) Values While Running a SAP BW Query Restricting F4 (Input Help) Values While Running a SAP BW Query Applies to: SAP BI 7.01 Summary This article briefs out the way to restrict F4 values (Input help values) while running a SAP BW query with

More information

Explore to the Update Tab of Data Transfer Process in SAP BI 7.0

Explore to the Update Tab of Data Transfer Process in SAP BI 7.0 Explore to the Update Tab of Data Transfer Process in SAP BI 7.0 Applies to: SAP BI 2004s or SAP BI 7.x. For more information visit the Enterprise Data Warehousing. Summary This article will explain about

More information

SDN Community Contribution

SDN Community Contribution SDN Community Contribution (This is not an official SAP document.) Disclaimer & Liability Notice This document may discuss sample coding or other information that does not include SAP official interfaces

More information

Developing Crystal Reports on SAP BW

Developing Crystal Reports on SAP BW Developing Crystal Reports on SAP BW Applies to: SAP BusinessObjects Crystal Reports. Summary This white paper explores various methods of accessing SAP BW data through Crystal Reports. Author: Arka Roy

More information

SAP BI Global Report Variable user exit modularization

SAP BI Global Report Variable user exit modularization SAP BI Global Report Variable user exit modularization Applies to: SAP BI 7 Summary When designing a report, some requirements have certain complexity that lead to the creation of custom exit code global

More information

How to Distribute and Collect Offline Data in SAP BPC 7.0 MS and NW

How to Distribute and Collect Offline Data in SAP BPC 7.0 MS and NW How to Distribute and Collect Offline Data in SAP BPC 7.0 MS and NW Applies to: SAP BusinessObjects Planning and Consolidation 7.0 Microsoft and SAP BusinessObjects Planning and Consolidation 7.0 NetWeaver.

More information

BAPI Execution in offline Adobe Form

BAPI Execution in offline Adobe Form BAPI Execution in offline Adobe Form Applies to: Adobe form, Web dynpro JAVA, SAP ECC. For more information, visit the Web Dynpro Java homepage. Summary This article contains step by step description for

More information

MDM Import Manager - Taxonomy Data (Attribute Text Values) Part 3

MDM Import Manager - Taxonomy Data (Attribute Text Values) Part 3 MDM Import Manager - Taxonomy Data (Attribute Text Values) Part 3 Applies to: SAP NetWeaver Master Data Management (MDM) SP3, SP4, SP5. Summary This article provides a step-by-step procedure for manually

More information

Easy Application Integration: How to use the Records Management Call Handler Framework

Easy Application Integration: How to use the Records Management Call Handler Framework Easy Application Integration: How to use the Records Management Call Handler Framework Applies to: SAP NetWeaver > 7.0 For more information, visit the Data Management and Integration homepage. Summary

More information

Information Broadcasting Part 3 Scheduling the First Report

Information Broadcasting Part 3 Scheduling the First Report Information Broadcasting Part 3 Scheduling the First Report Applies to: SAP BW 3.5 Summary This is part-3 article in the Information broadcasting (IB) series. Some things have already been discussed like

More information

Cut Over Activities Specific for LIS* Data Sources

Cut Over Activities Specific for LIS* Data Sources Cut Over Activities Specific for LIS* Data Sources Applies to: SAP BW 3.5/SAP BI 7.0. For more information visit the Enterprise Data Warehousing Homepage Summary The basic purpose of this document is to

More information

Planning Functions and Characteristic Relationship in Integrated Planning

Planning Functions and Characteristic Relationship in Integrated Planning Planning Functions and Characteristic Relationship in Integrated Planning Applies to: SAP BI 7.0 developers and Reporting Users. For more information, visit the EDW homepage Summary This document explains

More information

Financial Statement Version into PDF Reader

Financial Statement Version into PDF Reader Financial Statement Version into PDF Reader Applies to: SAP release 4.7EE, ECC 5.0 and ECC 6.0. For more information, visit the Enterprise Resource Planning homepage Summary: The objective of this article

More information

Creating, Configuring and Testing a Web Service Based on a Function Module

Creating, Configuring and Testing a Web Service Based on a Function Module Creating, Configuring and Testing a Web Service Based on a Function Module Applies to: SAP EC6 6.0/7.0. For more information, visit the Web Services homepage. Summary The article describes how to create

More information

Download SAP Query Output to Local/ Network Folders in Background

Download SAP Query Output to Local/ Network Folders in Background Download SAP Query Output to Local/ Network Folders in Background Applies to: SAP release where SQUE0001 enhancement (SMOD) available For more information, visit the ABAP homepage. Summary This article

More information

Extractor for Multi Value Class Characteristic Values using Function Module

Extractor for Multi Value Class Characteristic Values using Function Module Extractor for Multi Value Class Characteristic Values using Function Module Applies to: SAP BI 7.0, BW 3.5. For more information, visit the EDW homepage. Summary This article explains how to develop generic

More information

How to Integrate BPC NW to BI7x Technically using ABAP?

How to Integrate BPC NW to BI7x Technically using ABAP? How to Integrate BPC NW to BI7x Technically using ABAP? Applies to: Document is applicable to all SAP BPC 7.0 NW versions. For more information, visit the Enterprise Performance Management homepage. Summary

More information

SAP BPC 7.0: How to configure the work status feature in BPC MS?

SAP BPC 7.0: How to configure the work status feature in BPC MS? SAP BPC 7.0: How to configure the work status feature in BPC MS? Applies to: This applies to SAP BPC 5.1 and above Summary This paper aims at providing a guideline to set up the work status feature in

More information

How to Perform Intercompany Elimination and Data Validation with SAP BPC 7.0 MS

How to Perform Intercompany Elimination and Data Validation with SAP BPC 7.0 MS How to Perform Intercompany Elimination and Data Validation with SAP BPC 7.0 MS Applies to: SAP BusinessObjects Planning and Consolidation 7.0 Microsoft For more information, visit the Enterprise Performance

More information

Limitation in BAPI Scheduling Agreement (SA) Create or Change

Limitation in BAPI Scheduling Agreement (SA) Create or Change Limitation in BAPI Scheduling Agreement (SA) Create or Change Applies to: SAP ECC 6.0.For more information, visit the ABAP homepage. Summary The article describes the limitations in standard SAP BAPIs

More information

Xcelsius Tricks Part 5 Create a Loading Bar in SAP Crystal Dashboard and Presentation Design (Xcelsius 2008)

Xcelsius Tricks Part 5 Create a Loading Bar in SAP Crystal Dashboard and Presentation Design (Xcelsius 2008) Xcelsius Tricks Part 5 Create a Loading Bar in SAP Crystal Dashboard and Presentation Design (Xcelsius 2008) Applies to: SAP Crystal Dashboard and Presentation Design (Xcelsius 2008). For more information,

More information

Universal Worklist - Delta Pull Configuration

Universal Worklist - Delta Pull Configuration Universal Worklist - Delta Pull Configuration Applies to: This article applied to SAP Netweaver 7.01 SP06 Portal, SAP ECC 6.0 EHP4. For more information, visit the Portal and Collaboration homepage Summary

More information

SAP BW vs. SAP BusinessObjects Web Intelligence Functionalities

SAP BW vs. SAP BusinessObjects Web Intelligence Functionalities SAP BW vs. SAP BusinessObjects Web Intelligence Functionalities Applies to: SAP BW, SAP BusinessObjects. For more information, visit the Business Objects homepage. Summary This document discusses BW Bex/WAD

More information

Errors while Sending Packages from OLTP to BI (One of Error at the Time of Data Loads through Process Chains)

Errors while Sending Packages from OLTP to BI (One of Error at the Time of Data Loads through Process Chains) Errors while Sending Packages from OLTP to BI (One of Error at the Time of Data Loads through Process Chains) Applies to: SAP NetWeaver Business Warehouse (Formerly BI), Will also work on SAP BI 3.5. For

More information

Deploying BusinessObjects Explorer on Top of a SAP BI Query

Deploying BusinessObjects Explorer on Top of a SAP BI Query Deploying BusinessObjects Explorer on Top of a SAP BI Query Applies to: SAP BI NetWeaver 2004s, BusinessObjects Explorer 3.1. For more information, visit the Business Intelligence homepage. Summary The

More information

ABAP Code - Read SAP BW Infoprovider (Infocube, DSO, Multiprovider) Data using ABAP Code

ABAP Code - Read SAP BW Infoprovider (Infocube, DSO, Multiprovider) Data using ABAP Code ABAP Code - Read SAP BW Infoprovider (Infocube, DSO, Multiprovider) Data using ABAP Code Applies to: This article is applicable to all the SAP BI 7.0 consultants who are accustomed with SAP ABAP skills.

More information

Fetching User Details from the Portal and Displaying it in Web Dynpro with Authentication in the Portal

Fetching User Details from the Portal and Displaying it in Web Dynpro with Authentication in the Portal Fetching User Details from the Portal and Displaying it in Web Dynpro with Authentication in the Portal Applies to: SAP NetWeaver Web Dynpro. For more information, visit the Portal and Collaboration homepage.

More information

Displaying SAP Transaction as Internet Application in Portal

Displaying SAP Transaction as Internet Application in Portal Displaying SAP Transaction as Internet Application in Portal Summary This article explains how we can display SAP transaction as Internet Application Components (IAC) in portal to make it simpler for the

More information

Performance Management in Data Loading: an Overview

Performance Management in Data Loading: an Overview Performance Management in Data Loading: an Overview Applies to: SAP BI 7.0 / SAP Net weaver 2004s (Support package 14-17). For more information, visit the EDW homepage. Summary This documents talks about

More information

How to Create your Own Rule in Workflow?

How to Create your Own Rule in Workflow? How to Create your Own Rule in Workflow? Applies to: SAP NetWeaver / ABAP, Workflow. Summary The article emphasis the rule creation in workflow, the rule is used to pick the right agent at the runtime.

More information

Implying Security on Business Object XI 3.1 Universe having SAP BW as Source

Implying Security on Business Object XI 3.1 Universe having SAP BW as Source Implying Security on Business Object XI 3.1 Universe having SAP BW as Source Applies to: SAP Business Object XI 3.1. For more information, visit the Business Objects homepage. Summary This article describes

More information

Solution to the Challenges in Pivoting

Solution to the Challenges in Pivoting Solution to the Challenges in Pivoting Applies to: SAP NetWeaver 2004s/ MDM 5.5 SP 06. For more information, visit the Master Data Management homepage. Summary This article strives to describe the different

More information

How to Display Result Row in One Line While Reporting On Multiproviderer

How to Display Result Row in One Line While Reporting On Multiproviderer How to Display Result Row in One Line While Reporting On Multiproviderer Applies to: SAP BW 3.x, BI 7.0 developers and Reporting Users. For more information, visit the Business Intelligence home page Summary

More information

Open Hub Destination - Make use of Navigational Attributes

Open Hub Destination - Make use of Navigational Attributes Open Hub Destination - Make use of Navigational Attributes Applies to: SAP BI 7.0. For more information visit the Enterprise Data Warehousing Summary This paper tells about usage of Open Hub Destination

More information