How To... Master Data Governance for Material: Create Custom Print forms. Applicable Releases: MDG 7
|
|
|
- Damian Goodwin
- 9 years ago
- Views:
Transcription
1 Applicable Releases: MDG 7 Version 1 January 2014
2 Document History Document Version Description 1.00 First official release of this guide
3 TABLE OF CONTENTS 1. BUSINESS SCENARIO BACKGROUND INFORMATION STEP BY STEP EXPLANATION PREREQUISITE COMPONENTS CREATE NEW PRINT FORM CREATE NEW INTERFACE CHANGE LOGO ADD CUSTOM FIELD DELETE FIELD MULTIPLE USAGE OF A FIELD PLACEHOLDER IN HEADER LINE FIELD TEMPLATES CUSTOMIZING: ASSIGN NEW FORM TO UI CONFIGURATION ERROR ANALYSIS
4 1. BUSINESS SCENARIO SAP Master Data Governance for Material (MDG-M) provides business processes to find, create, change, and mark material master data for deletion. It supports the governance of material master data on a central hub and the distribution of material master data to connected operational and business intelligence systems. The processes are workflow-driven and can include several approval and revision phases, including collaboration between all users participating in master data maintenance. With MDG 7 SAP delivers a new print form, MDG_BS_MAT_PDF_04, in package MDG_BS_MAT_PDF. This guide shows you how to create a custom print form to support different layouts and custom fields. 4
5 2. BACKGROUND INFORMATION MDG-M uses Adobe LiveCycle Designer to create forms used to print material master data. There is a lot of information on the SAP Community Network ( and at SAP also provides a course with further information on print forms, BC480 (PDF-based Print Forms). 5
6 3. STEP BY STEP EXPLANATION The following explanation shows how to create a custom print form to support different layouts and custom fields Prerequisite To be able to edit the forms delivered by SAP you have to install Adobe LiveCycle Designer on your computer. SAP Note describes how to get and install the tool. Also you may want view the SAP help portal ( and search with keywords Adobe LiveCycle Designer Installation to get the relevant information on how to install and work with Adobe LiveCycle Designer. After installation you ll find a folder (named similar to C:\Program Files (x86)\adobe\designer 9.0\Documentation) on your hard disk with offline documentation in different languages (for example, subfolder EN for English). The file Designer.chm is opened when pressing the key F1 within the form layout editor Components Four components are involved in printing: - A UI with a print button that creates an event when clicked - A print program/method (CL_MDG_BS_MAT_PDF=>PRINT_MATERIAL) that is called by the event handler (CL_MDG_BS_MAT_APPCC->/PLMU/IF_EX_FRW_APPCC_OVP~PROCESS_EVENT) to read the data to be printed - A form interface (MDG_BS_MAT_PDF) that defines the data that can be added to the layout of the form - A print form (MDG_BS_MAT_PDF_04) that defines the layout of the form 3.3. Create new Print Form SAP recommends not to change the delivered form but to make a copy and to change the copy. The copied form can easily be assigned within the customizing to be used by the application (see chapter 3.11). Execute the following IMG activity: You may also want to start transaction SFP directly. 6
7 Copy the SAP-delivered print form MDG_BS_MAT_PDF_04 to a new one: 3.4. Create new Interface If you intend to pass additional or different data to the form you have to copy the interface as well: Afterwards you have to assign the copied interface to the copied form: Data is passed to the print form using parameter IS_DATA. It is of type MDG_BS_MAT_S_MAT_PDF that can be enhanced deeply, so it is generally not necessary to exchange the interface. Only if you want to pass additional parameters or custom entities you need to do so. But be aware that you then also have to modify the print method 7
8 CL_MDG_BS_MAT_PDF=>PRINT and maybe also CL_MDG_BS_MAT_PDF=>PRINT_MATERIAL because these methods are currently not designed for customer extensions Change Logo The logo at the right upper corner of the form has been defined on the master page within sub form Header. It can be replaced by an own logo by specifying the URL of the logo. If the logo should be embedded into the form, option Embed Image Data needs to be checked Add Custom Field After extension of a database table (for example, MARA) the corresponding structure (for example, MDG_BS_MAT_S_MARA) already contains the new fields and the only thing to do is a refresh of the corresponding context element within the form context. Afterwards the new fields are available within the data view of the layout. 8
9 The text of a field value (for example, text Kilogram for value KG) is stored in a separate sub structure for each table structure. It is called USMD_DESCRIPTION and has to be enhanced by a customer include with a field of type USMD_TXTLG. The field name has to be the same as the data field (for example, GEWEI for weight unit) within the corresponding table structure. The text of the field value should be determined automatically because of the text table reference definition within the data dictionary. In special cases it might be necessary to adapt this text field value determination. It is located in method CL_MDG_BS_MAT_TEXT->GET_TEXT_FIELD_VALUE Delete Field A field that should not be displayed can be deleted easily by selecting the field within the design view or the hierarchy view and pressing the delete key Multiple Usage of a Field It is not possible to display a field value at multiple places by defining the data binding to the same context field. The data binding of the corresponding fields can be defined as Use global data. All fields with this name will then have the same value. This may be risky if a field name has been used within different structures and the field values are not the same at runtime. Another problem is that the usage of such fields is not visible within the data view. Use global data has been used with field Change Request ID (CR_ID) that is in sub form Footer of the master page and on page ChangeRequest in sub form GeneralData. Another possibility is using scripting. Example: Field GEWEI is used twice on page Material, sub form BasicData, sub form Dimension. The second usage has no data binding as it is defined at the first field ($.MARA_TAB.DATA[*].GEWEI), but a script at event form:ready: $.rawvalue = $.parent.gewei.rawvalue 9
10 The value of the second field GEWEI references to the value of field GEWEI that is within the current sub form (specified by parent). If a reference to a field on a different page or sub form is required.parent has to be used for each upper level within the object hierarchy up to a common node. Navigation down the object hierarchy to the required field has to be done by specifying the names of the pages and/or sub forms Placeholder in Header Line Scripting has to be used to replace placeholders (for example, &LGNUM& within header line Warehouse &LGNUM&: Data) in text values. A special hidden page, Scripts_Deactivated_NotVisible, has been created to replace such placeholders at a central place. Example: Material.WarehouseLGNUMData.Heading = Replace(Material.WarehouseLGNUMData.Heading.rawValue, "&LGNUM&", $.CURRENT_LGNUM.rawValue) At event, form:ready of page Scripts_Deactivated_NotVisible replaces &LGNUM& within above specified example header line, that is on page Material within sub form WarehouseLGNUMData and there in text field Heading. The replaced value is stored in field CURRENT_LGNUM that is on the current page and has a data binding to context structure HEADER, field CURRENT_LGNUM Field templates When dropping a field from the data view to the layout the field gets a default layout. If the layout does not meet the requirements, it must be changed for each field separately. When a field layout has been finally changed it can be stored as template. Then it can be used for further fields with the same layout. The layout should be stored without binding. It may lead to confusion if it is not changed properly after using the template. Also other layout elements like header lines or groups of objects can be stored as template. 10
11 3.11. Customizing: Assign new Form to UI Configuration To assign your print form to your UI configurations use the following IMG activity: If no form for the current UI configuration can be found message MDG_BS_MAT_PDF 015 is displayed. 11
12 3.12. Error analysis There are several causes why a field value may be not visible on a form. The following list provides some hints on what to check: 1. Be sure that the changed form has been activated and that the MDG-M session has been restarted. Otherwise the old but active form and its function module (see 7.) are used. 2. Data to be printed is read in method CL_MDG_BS_MAT_PDF=>PRINT_MATERIAL. Check there whether the corresponding entity data has been read. 3. Entity data is mapped to its corresponding table fields of structure MDG_BS_MAT_S_MAT_DATA in the methods called for each entity by CL_MDG_BS_MAT_PDF=>PRINT_MATERIAL. Method CL_MDG_BS_MAT_SERVICES=>MAP_MODEL_2_API does the data transfer from entity or model structure to API structure. The transfer to the form structure MDG_BS_MAT_S_MAT_PDF is done by method CL_ABAP_TOOL=>MOVE_COMPLEX whenever necessary. 4. As already mentioned within chapter 3.6 the text value of a field value should be determined automatically within method CL_MDG_BS_MAT_PDF=>SET_DESCRIPTION. A prerequisite is that the text field has been defined within the sub structure USMD_DESCRIPTION with the same name as the data field and that a corresponding data field exists. 5. If the same field has been used multiple times, be sure to have taken into account the hints from chapter Check whether the data binding of the field to the context field within the form layout is correct. You may also want to check whether a field has a data binding by checking the usage icon on the right side of a field within the data view of the form layout. 7. Each activated form has a corresponding generated function module. The name of the function module is displayed when testing the form. You also can set a breakpoint within function module FP_FUNCTION_MODULE_NAME to get the corresponding function module name of the form. 12
13 SAP AG. All rights reserved. SAP, R/3, SAP NetWeaver, Duet, PartnerEdge, ByDesign, SAP BusinessObjects Explorer, StreamWork, SAP HANA, and other SAP products and services mentioned herein as well as their respective logos are trademarks or registered trademarks of SAP AG in Germany and other countries. Business Objects and the Business Objects logo, BusinessObjects, Crystal Reports, Crystal Decisions, Web Intelligence, Xcelsius, and other Business Objects products and services mentioned herein as well as their respective logos are trademarks or registered trademarks of Business Objects Software Ltd. Business Objects is an SAP company. Sybase and Adaptive Server, ianywhere, Sybase 365, SQL Anywhere, and other Sybase products and services mentioned herein as well as their respective logos are trademarks or registered trademarks of Sybase Inc. Sybase is an SAP company. Crossgate, EDDY, B2B 360, and B2B 360 Services are registered trademarks of Crossgate AG in Germany and other countries. Crossgate is an SAP company. All other product and service names mentioned are the trademarks of their respective companies. Data contained in this document serves informational purposes only. National product specifications may vary. These materials are subject to change without notice. These materials are provided by SAP AG and its affiliated companies ("SAP Group") for informational purposes only, without representation or warranty of any kind, and SAP Group shall not be liable for errors or omissions with respect to the materials. The only warranties for SAP Group products and services are those that are set forth in the express warranty statements accompanying such products and services, if any. Nothing herein should be construed as constituting an additional warranty.
Open Items Analytics Dashboard System Configuration
Author: Vijayakumar Udayakumar [email protected] Target Audience Developers Consultants For validation Document version 0.95 03/05/2013 Open Items Analytics Dashboard Scenario Overview Contents
SAP BW on HANA & HANA Smart Data Access Setup
SAP BW on HANA & HANA Smart Data Access Setup SAP BW ON HANA & SMART DATA ACCESS - SETUP TABLE OF CONTENTS WHAT ARE THE PREREQUISITES FOR SAP HANA SMART DATA ACCESS?... 3 Software Versions... 3 ODBC Drivers...
How-to guide: Monitoring of standalone Hosts. This guide explains how you can enable monitoring for standalone hosts in SAP Solution Manager
How-to guide: Monitoring of standalone Hosts This guide explains how you can enable monitoring for standalone hosts in SAP Solution Manager TABLE OF CONTENT 1 CREATE TECHNICAL SYSTEM FOR HOST... 3 2 MANAGED
How To... Master Data Governance for Material: Maintenance for multiple Materials in one Change Request. Applicable Releases: all
How To... Master Data Governance for Material: Maintenance for multiple Materials in one Change Request Applicable Releases: all Version 1.2 December 2014 Document History Document Version Description
SAP Landscape Transformation (SLT) Replication Server User Guide
SAP Landscape Transformation (SLT) Replication Server User Guide February 2014 P a g e 1 NOTE : Pease refer the following guide for SLT installation. http://help.sap.com/hana/sap_hana_installation_guide_trigger_based
SAP PartnerEdge Program: Opportunities for SAP-Authorized Resellers
For SAP-Authorized Resellers SAP PartnerEdge Program: Opportunities for SAP-Authorized Resellers SAP now offers companies the opportunity to resell SAP solutions to their customers. SAP-authorized resellers
Creating a Fiori Starter Application for sales order tracking
SAP Web IDE How-To Guide Provided by Customer Experience Group Creating a Fiori Starter Application for sales order tracking Applicable Releases: SAP Web IDE 1.4 Version 2.0 - October 2014 Creating a Fiori
SAP BusinessObjects Business Intelligence 4 Innovation and Implementation
SAP BusinessObjects Business Intelligence 4 Innovation and Implementation TABLE OF CONTENTS 1- INTRODUCTION... 4 2- LOGON DETAILS... 5 3- STARTING AND STOPPING THE APPLIANCE... 6 4.1 Remote Desktop Connection
Create and run apps on HANA Cloud in SAP Web IDE
SAP Web IDE How-To Guide Provided by Customer Experience Group Create and run apps on HANA Cloud in SAP Web IDE Applicable Releases: SAP Web IDE 1.4 Version 2.0 - October 2014 Document History Document
Compare & Adjust How to Guide for Compare & Adjust in SAP Solution Manager Application Lifecycle Management
Compare & Adjust How to Guide for Compare & Adjust in SAP Solution Manager Application Lifecycle Management www.sap.com TABLE OF CONTENTS COPYRIGHT... 3 1.0 Motivation... 4 2.0 Method and Prerequisites...
Extend the SAP FIORI app HCM Timesheet Approval
SAP Web Integrated Development Environment How-To Guide Provided by Customer Experience Group Extend the SAP FIORI app HCM Timesheet Approval Applicable Releases: SAP Web Integrated Development Environment
Agentry and SMP Metadata Performance Testing Guidelines for executing performance testing with Agentry and SAP Mobile Platform Metadata based
Agentry and SMP Metadata Performance Testing Guidelines for executing performance testing with Agentry and SAP Mobile Platform Metadata based applications AGENTRY PERFORMANCE TESTING V 1.0 TABLE OF CONTENTS
Set Up Hortonworks Hadoop with SQL Anywhere
Set Up Hortonworks Hadoop with SQL Anywhere TABLE OF CONTENTS 1 INTRODUCTION... 3 2 INSTALL HADOOP ENVIRONMENT... 3 3 SET UP WINDOWS ENVIRONMENT... 5 3.1 Install Hortonworks ODBC Driver... 5 3.2 ODBC Driver
LVS Troubleshooting Common issues and solutions
LVS Troubleshooting Common issues and solutions www.sap.com TABLE OF CONTENT INSTALLATION... 3 No SQL Instance found... 3 Server reboots after LVS installs... 3 LVS Service does not start after update...
How to... Master Data Governance for Material: Use the Data Import Framework for Material. Applicable Releases: EhP6, MDG 6.1, MDG 7.
Applicable Releases: EhP6, MDG 6.1, MDG 7.0 Version 5 December 2014 www.sap.com Document History Document Version Description 1.00 First official release of this guide 2.00 Additional SAP notes 3.00 Background
How to Extend a Fiori Application: Purchase Order Approval
SAP Web IDE How-To Guide Provided by Customer Experience Group How to Extend a Fiori Application: Purchase Order Approval Applicable Releases: SAP Web IDE 1.4 Version 2.0 - October 2014 Document History
SAP Solution Manager - Content Transfer This document provides information on architectural and design questions, such as which SAP Solution Manager
SAP Solution Manager - Content Transfer This document provides information on architectural and design questions, such as which SAP Solution Manager content is transferable and how. TABLE OF CONTENTS PREFACE...
Memory Management simplifications in ABAP Kernel 7.4*
Memory Management simplifications in ABAP Kernel 7.4* TABLE OF CONTENTS OVERVIEW. 3 NEW PARAMETER FORMULAS 3 TROUBLESHOOTING.. 4 512 GB LIMIT. 5 CONCLUSION 5 2 OVERVIEW This paper describes Memory Management
Sybase ASE Linux Installation Guide Installation and getting started guide for SAP Sybase ASE on Linux
Sybase ASE Linux Installation Guide Installation and getting started guide for SAP Sybase ASE on Linux www.sap.com TABLE OF CONTENTS INSTALLING ADAPTIVE SERVER... 3 Installing Adaptive Server with the
How to Implement a SAP HANA Database Procedure and consume it from an ABAP Program Step-by-Step Tutorial
How to Implement a SAP HANA Database Procedure and consume it from an ABAP Program Step-by-Step Tutorial Table of Contents Prerequisites... 3 Benefits of using SAP HANA Procedures... 3 Objectives... 3
Using SAP Crystal Reports with SAP Sybase SQL Anywhere
Using SAP Crystal Reports with SAP Sybase SQL Anywhere TABLE OF CONTENTS INTRODUCTION... 3 REQUIREMENTS... 3 CONNECTING TO SQL ANYWHERE WITH CRYSTAL REPORTS... 4 CREATING A SIMPLE REPORT... 7 Adding Data
SAP Sybase Adaptive Server Enterprise Shrinking a Database for Storage Optimization 2013
SAP Sybase Adaptive Server Enterprise Shrinking a Database for Storage Optimization 2013 TABLE OF CONTENTS Introduction... 3 SAP Sybase ASE s techniques to shrink unused space... 3 Shrinking the Transaction
Consumption of OData Services of Open Items Analytics Dashboard using SAP Predictive Analysis
Consumption of OData Services of Open Items Analytics Dashboard using SAP Predictive Analysis (Version 1.17) For validation Document version 0.1 7/7/2014 Contents What is SAP Predictive Analytics?... 3
Using Database Performance Warehouse to Monitor Microsoft SQL Server Report Content
Using Database Performance Warehouse to Monitor Microsoft SQL Server Report Content Applies to: Enhancement Package 1 for SAP Solution Manager 7.0 (SP18) and Microsoft SQL Server databases. SAP Solution
Installing and Configuring the HANA Cloud Connector for On-premise OData Access
SAP Cloud Connector How-To Guide Provided by SAP s Technology RIG Installing and Configuring the HANA Cloud Connector for On-premise OData Access Applicable Releases: HANA Cloud Connector 2.x Version 1.0
SAP CRM Service Manager 3.1 Mobile App Extended Feature List An extended list of all the features included in the default delivery of the SAP CRM
SAP CRM Service Manager 3.1 Mobile App Extended Feature List An extended list of all the features included in the default delivery of the SAP CRM Service Manager Mobile App TABLE OF CONTENTS SECTION 1:
LHI Leasing Simplifying and Automating the IT Landscape with SAP Software. SAP Customer Success Story Financial Services Provider LHI Leasing
LHI Leasing Simplifying and Automating the IT Landscape with SAP Software SAP Customer Success Story Financial Services Provider LHI Leasing Company LHI Leasing GmbH Headquarters Pullach, Germany Industry,
Information Design Tool User Guide SAP BusinessObjects Business Intelligence platform 4.0 Feature Pack 3
Information Design Tool User Guide SAP BusinessObjects Business Intelligence platform 4.0 Feature Pack 3 Copyright 2012 SAP AG. All rights reserved.sap, R/3, SAP NetWeaver, Duet, PartnerEdge, ByDesign,
Configuring Java IDoc Adapter (IDoc_AAE) in Process Integration. : SAP Labs India Pvt.Ltd
Configuring Java IDoc Adapter (IDoc_AAE) in Process Integration Author Company : Syed Umar : SAP Labs India Pvt.Ltd TABLE OF CONTENTS INTRODUCTION... 3 Preparation... 3 CONFIGURATION REQUIRED FOR SENDER
SAP Security Recommendations December 2011. Secure Software Development at SAP Embedding Security in the Product Innovation Lifecycle Version 1.
SAP Security Recommendations December 2011 Secure Software Development at SAP Embedding Security in the Product Innovation Lifecycle Version 1.0 Secure Software Development at SAP Table of Contents 4
What's New in SAP BusinessObjects XI 3.1 Service Pack 5
What's New in SAP BusinessObjects XI 3.1 Service Pack 5 SAP BusinessObjects XI 3.1 Service Pack 5 Copyright 2011 SAP AG. All rights reserved.sap, R/3, SAP NetWeaver, Duet, PartnerEdge, ByDesign, SAP BusinessObjects
BW Source System: Troubleshooting Guide
P. Mani Vannan SAP Labs India TABLE OF CONTENTS TROUBLESHOOTING:... 3 CHECK WHETHER SOURCE SYSTEM CONNECTION IS OK... 3 RELEVANT AUTHORIZATIONS FOR BACKGROUND USER... 8 ERROR RELATED TO IDOC MISMATCH BETWEEN
SAP BusinessObjects Dashboarding Strategy and Statement of Direction
SAP BusinessObjects Dashboarding Strategy and Statement of Direction www.sap.com TABLE OF CONTENTS DISCLAIMER... 3 INTRODUCTION... 3 Engage with SAP... 3 Background... 3 CUSTOMER EXPECTATIONS AND BUSINESS
Additional Guide to Implementing the SAP CRM Service Management rapiddeployment
EHP3 for SAP CRM 7.0 April 2014 English Document Version 1.0 Additional Guide to Implementing the SAP CRM Service Management rapiddeployment solution / SAP Best Practices for Service Management in CRM
Nine Reasons Why SAP Rapid Deployment Solutions Can Make Your Life Easier Get Where You Want to Be, One Step at a Time
SAP Rapid Deployment Solutions Nine Reasons Why SAP Rapid Deployment Solutions Can Make Your Life Easier Get Where You Want to Be, One Step at a Time Nine Reasons Why SAP Rapid Deployment Solutions Can
Setting up Single Sign-On (SSO) with SAP HANA and SAP BusinessObjects XI 4.0
Setting up Single Sign-On (SSO) with SAP HANA and SAP BusinessObjects XI 4.0 June 14, 2013 Version 2.0 Vishal Dhir Customer Solution Adoption (CSA) www.sap.com TABLE OF CONTENTS INTRODUCTION... 3 What
Integrating Easy Document Management System in SAP DMS
Integrating Easy Document Management System in SAP DMS Applies to: SAP Easy Document Management System Version 6.0 SP12. For more information, visit the Product Lifecycle Management homepage. Summary This
HANA Input Parameters with Multi-Values to Filter Calculation Views
HANA Input Parameters with Multi-Values to Filter Calculation Views Applies to: SAP BusinessObjects BI platform 4.0. Summary This document provides information and guidelines about HANA calculation views
Fiori Frequently Asked Technical Questions
Fiori Frequently Asked Technical Questions Table of Contents SAP Fiori General Overview... 1 SAP Fiori Technical Overview... 1 SAP Fiori Applications... 3 SRM Applications... 3 Approval Applications...
Cloud Single Sign-On and On-Premise Identity Federation with SAP NetWeaver Cloud White Paper
Cloud Single Sign-On and On-Premise Identity Federation with SAP NetWeaver Cloud White Paper TABLE OF CONTENTS INTRODUCTION... 3 Where we came from... 3 The User s Dilemma with the Cloud... 4 The Administrator
SAP BusinessObjects Enterprise Software Inventory Tool User's Guide
SAP BusinessObjects Enterprise Software Inventory Tool User's Guide SAP BusinessObjects Enterprise XI 3.1 Service Pack 3 windows Copyright 2010 SAP AG. All rights reserved.sap, R/3, SAP NetWeaver, Duet,
Design Thinking for. Requirements Analysis
Design Thinking for Requirements Analysis IN THIS ARTICLE Design Thinking for Requirements Analysis Are you in the requirements gathering and analysis phase of a project? Do you need to get a clear understanding
Certification Guide Network Connectivity for SAP on Premise and Cloud Solutions Integration
Network Connectivity for SAP on Premise and Cloud Solutions Integration TABLE OF CONTENTS INTRODUCTION... 3 NETWORK PRODUCTS IN SCOPE... 4 CERTIFICATION OVERVIEW... 5 Scenarios... 5 Test Cases... 5 THE
Crystal Reports Server Embedded 2008 with Service Pack 7 for Windows Supported Platforms
Crystal Reports Server Embedded 2008 with Service Pack 7 for Windows Supported Platforms Applies to: Crystal Reports Server Embedded 2008 with Service Pack 7. Summary This document contains information
TM111. ERP Integration for Order Management (Shipper Specific) COURSE OUTLINE. Course Version: 15 Course Duration: 2 Day(s)
TM111 ERP Integration for Order Management (Shipper Specific). COURSE OUTLINE Course Version: 15 Course Duration: 2 Day(s) SAP Copyrights and Trademarks 2014 SAP SE. All rights reserved. No part of this
Training.sap.com User Guide
Training.sap.com User Guide Table of Contents WELCOME TO SAP EDUCATION ONLINE!... 3 HOW TO REGISTER IN SAP EDUCATION ONLINE AND START YOUR COURSES... 3 BASIC NAVIGATION... 6 BROWSE OUR CATALOGUE HOME...
Active Quality Management
Active Quality Management Recognizing Organizations that make the extraordinary look ordinary The underlying principles THE 10 PRINCIPLES OF QUALITY 1. Understand the business objectives as well as the
SAP BUSINESS PLANNING AND CONSOLIDATION 10.0, VERSION FOR SAP NETWEAVER, POWERED BY SAP HANA STARTER KIT FOR USGAAP
SAP BUSINESS PLANNING AND CONSOLIDATION 10.0, VERSION FOR SAP NETWEAVER, POWERED BY SAP HANA STARTER KIT FOR USGAAP Configuration overview - Appendix TABLE OF CONTENTS LIST OF ACCOUNTS... 4 Assets...
How To Install The Sap Business Explorer 7.X 2.X (Sap) On A Windows 7.30 Computer (Windows 7)
SAP Business Explorer 7.X Copyright Copyright 2012 SAP AG. All rights reserved. No part of this publication may be reproduced or transmitted in any form or for any purpose without the express permission
Setting up the Environment for Creating or Extending SAP Fiori Apps
Setting up the Environment for Creating or Extending SAP Fiori Apps February 2014 Copyright Copyright 2014 SAP AG. All rights reserved SAP Library document classification: PUBLIC No part of this publication
Setting up Single Sign-On (SSO) with SAP HANA and SAP BusinessObjects XI 4.0
Setting up Single Sign-On (SSO) with SAP HANA and SAP BusinessObjects XI 4.0 February 8, 2013 Version 1.0 Vishal Dhir Customer Solution Adoption (CSA) www.sap.com TABLE OF CONTENTS INTRODUCTION... 3 What
SAP Work Manager 6.0 Mobile App Extended Feature List
SAP Work Manager 6.0 Mobile App Extended Feature List An extended list of all the features included in the default delivery of the SAP Work Manager 6.0 Mobile Application Provided by SAP Mobile - Rapid
SAP White Paper Enterprise Information Management
SAP White Paper Enterprise Information Management Including Business Content in a Comprehensive Information Management Program Enhance Efficiency and Compliance Through Process-Centric Information Management
Implementing an Enterprise Information Management Strategy An Approach That Mitigates Risk and Drives Down Costs
SAP Thought Leadership Paper Enterprise Information Management Implementing an Enterprise Information Management Strategy An Approach That Mitigates Risk and Drives Down Costs Table of Contents 5 Content
Streamlined Planning and Consolidation for Finance Teams in Any Organization
SAP Solution in Detail SAP Solutions for Enterprise Performance Management, Version for the Microsoft Platform Streamlined Planning and Consolidation for Finance Teams in Any Organization Table of Contents
UI Framework Logo exchange without skin copy. SAP Enhancement Package 1 for SAP CRM 7.0
UI Framework Logo exchange without skin copy SAP Enhancement Package 1 for SAP CRM 7.0 1 Objectives At the end of this unit, you will be able to: Change the logo within CRM 7.0 WebClient UI Add a logo
SAP BusinessObjects Design Studio Document Version: 1.2-2013-11-12. What's New Guide: SAP BusinessObjects Design Studio
SAP BusinessObjects Design Studio Document Version: 1.2-2013-11-12 What's New Guide: SAP BusinessObjects Design Studio Table of Contents 1 About This Guide....3 2 About the Documentation Set....4 3 New
Five Strategies Small and Medium Enterprises Can Use to Successfully Implement High Value Business Mobility
Five Strategies Small and Medium Enterprises Can Use to Successfully Implement High Value Business Mobility Smartphone and tablet-based business mobility has become commonplace in enterprises of all sizes.
SAP Master Data Governance- Hiding fields in the change request User Interface
SAP Master Data Governance- Hiding fields in the change request User Interface Applies to: ERP 6 Ehp 5 SAP Master Data Governance. For more information, visit the Master Data Management homepage. Summary
SAP Business One OnDemand. SAP Business One OnDemand Solution Overview
SAP Business One OnDemand SAP Business One OnDemand Solution Overview SAP Business One OnDemand Table of Contents 4 Executive Summary Introduction SAP Business One Today 8 A Technical Overview: SAP Business
SEPA in SAP CRM. Application Innovation, CRM & Service Industries. Customer
SEPA in SAP CRM Application Innovation, CRM & Service Industries Customer Agenda Overview SEPA in SAP CRM Additional Information 2013 SAP AG. All rights reserved. Customer 2 Agenda Overview SEPA in SAP
SAP BusinessObjects Query as a Web Service Designer SAP BusinessObjects Business Intelligence platform 4.0
SAP BusinessObjects Query as a Web Service Designer SAP BusinessObjects Business Intelligence platform 4.0 Copyright 2011 SAP AG. All rights reserved.sap, R/3, SAP NetWeaver, Duet, PartnerEdge, ByDesign,
SAP Thought Leadership Paper Engineering, Construction, and Operations. Beyond Enterprise Resource Planning Construction in the ipad Age
SAP Thought Leadership Paper Engineering, Construction, and Operations Beyond Enterprise Resource Planning Construction in the ipad Age Table of Contents 4 Bringing Constant Connectivity to the Construction
Backup Strategy for Oracle
Backup Strategy for Oracle White Paper: Oracle Database Administration February 01 TABLE OF CONTENTS INTRODUCTION... 3 EXAMPLE 1... 4 EXAMPLE... 6 EXAMPLE 3... 7 SUMMARY... 8 ADDITIONAL INFORMATION...
AC200. Basics of Customizing for Financial Accounting: General Ledger, Accounts Receivable, Accounts Payable COURSE OUTLINE
AC200 Basics of Customizing for Financial Accounting: General Ledger, Accounts Receivable, Accounts Payable. COURSE OUTLINE Course Version: 15 Course Duration: 5 Day(s) SAP Copyrights and Trademarks 2015
Guide to the SAP Extended Business Program
Guide to the SAP Extended Business Program Table of Contents 5 Program Overview: Building Stronger Relationships Program Purpose Your Role 6 SAP Solutions for the SME Market SAP Business One SAP Business
Data Integration using Integration Gateway. SAP Mobile Platform 3.0 SP02
Data Integration using Integration Gateway SAP Mobile Platform 3.0 SP02 DOCUMENT ID: DC02000-01-0302-01 LAST REVISED: February 2014 Copyright 2014 by SAP AG or an SAP affiliate company. All rights reserved.
Single Sign-On between SAP Portal and SuccessFactors
Single Sign-On between SAP Portal and SuccessFactors Dimitar Mihaylov 7/1/2012 Contents 1. Overview... 3 2. Trust between SAP Portal 7.3 and SuccessFactors... 5 2.1. Initial configuration in SAP Portal
Third Party Digital Asset Management Integration
Third Party Digital Asset Management Integration Objectives At the end of this unit, you will be able to: Assign Digital Assets to CRM Objects Work with the Where-Used List Describe the necessary customizing
H2G Install SAP Web IDE locally for trial (Mac version)
SAP Web IDE How-To Guide Provided by Customer Experience Group H2G Install SAP Web IDE locally for trial (Mac version) Applicable Releases: SAP Web IDE 1.4 Version 1.0 - October 2014 Document History Document
SAP BusinessObjects Edge BI, Standard Package Preferred Business Intelligence Choice for Growing Companies
SAP Solutions for Small Businesses and Midsize Companies SAP BusinessObjects Edge BI, Standard Package Preferred Business Intelligence Choice for Growing Companies SAP BusinessObjects Edge BI, Standard
Getting Started with the License Administration Workbench 2.0 (LAW 2.0)
Getting Started SAP Global License Auditing Document Version: 1.2 2015-03-13 Getting Started with the License Administration Workbench 2.0 (LAW 2.0) Table of Contents 1 Getting Started with the License
Reducing Operational Risk with SAP Management of Change
SAP Solution in Detail SAP Solutions for Sustainability SAP Management of Change Reducing Operational Risk with SAP Management of Change Table of Contents 3 Quick Facts 4 Improve Safety with Flexible and
Data Governance. Data Governance, Data Architecture, and Metadata Essentials Enabling Data Reuse Across the Enterprise
Data Governance Data Governance, Data Architecture, and Metadata Essentials Enabling Data Reuse Across the Enterprise 2 Table of Contents 4 Why Business Success Requires Data Governance Data Repurposing
CRM WebClient UI & Netweaver Enterprise Portal Integration
CRM WebClient UI & Netweaver Enterprise Portal Integration Contents INTRODUCTION... 4 External Integration... 4 Architecture... 4 Tight/Classic Integration... 5 Architecture... 5 Integration via OBN...
UI Framework Task Based User Interface. SAP Enhancement Package 1 for SAP CRM 7.0
UI Framework Task Based User Interface SAP Enhancement Package 1 for SAP CRM 7.0 1 Agenda 1. Overview 2. Task Based User Interface 3. Further Information SAP 2009 / Page 2 2 Objectives of the Presentation
How-To Guide SAP Cloud for Customer Document Version: 1.0-2014-03-20. How to Configure SAP HCI basic authentication for SAP Cloud for Customer
How-To Guide SAP Cloud for Customer Document Version: 1.0-2014-03-20 How to Configure SAP HCI basic authentication for SAP Cloud for Customer Document History Document Version Description 1.0 First official
HR400 SAP ERP HCM Payroll Configuration
HR400 SAP ERP HCM Payroll Configuration. COURSE OUTLINE Course Version: 15 Course Duration: 5 Day(s) SAP Copyrights and Trademarks 2014 SAP AG. All rights reserved. No part of this publication may be reproduced
SAP BusinessObjects Mobile User Guide SAP BusinessObjects Mobile 4.0.3
SAP BusinessObjects Mobile User Guide SAP BusinessObjects Mobile 4.0.3 Copyright 2011 SAP AG. All rights reserved.sap, R/3, SAP NetWeaver, Duet, PartnerEdge, ByDesign, SAP BusinessObjects Explorer, StreamWork,
SAPFIN. Overview of SAP ERP Financials COURSE OUTLINE. Course Version: 15 Course Duration: 2 Day(s)
SAPFIN Overview of SAP ERP Financials. COURSE OUTLINE Course Version: 15 Course Duration: 2 Day(s) SAP Copyrights and Trademarks 2014 SAP AG. All rights reserved. No part of this publication may be reproduced
SAP PartnerEdge Program Guide for Language Services Partners
SAP PartnerEdge Program Guide for Language Services Partners Table of Contents 5 The SAP PartnerEdge Program: Providing Superior Value Supporting Your Opportunities 13 Ongoing Program Requirements Requirements
Process Archiving using NetWeaver Business Process Management
Process Archiving using NetWeaver Business Process Management Applies to: NetWeaver Composition Environment 7.2, 7.3. For more information, visit the Business Process Modeling homepage. Summary This document
Maintaining Different Addresses and Email Ids for a Business Partner via CRM Web UI
Maintaining Different Addresses and Email Ids for a Business Partner via CRM Web UI Applies to: CRM 7.0 SP09. For more information, visit the Customer Relationship Management homepage. Summary This article
How-To Guide SAP Cloud for Customer Document Version: 1.0-2015-04-29. How to replicate marketing attributes from SAP CRM to SAP Cloud for Customer
How-To Guide SAP Cloud for Customer Document Version: 1.0-2015-04-29 How to replicate marketing attributes from SAP CRM to SAP Cloud for Customer Document History Document Version Description 1.0 First
Log Analysis Tool for SAP NetWeaver AS Java
Log Analysis Tool for SAP NetWeaver AS Java Applies to: SAP NetWeaver 6.40, 7.0x, 7.1x, 7.20 and higher Summary Log Analysis is an SAP tool for analyzing list formatted logs and traces in Application Server
Mobile app for ios Version 1.10.x, August 2014
Mobile app for ios Version 1.10.x, August 2014 Introduction This app allows you to access SAP Business One, SAP s enterprise resource planning application for small businesses, anywhere and anytime. Managers,
Quick Guide to the SAP Customer Relationship Management Rapid- Deployment Solution (based on EhP1) Demo/Evaluation Appliance
SAP CRM 7.01 November 2012 English Quick Guide to the SAP Customer Relationship Management Rapid- Deployment Solution (based on EhP1) Demo/Evaluation Appliance SAP AG Dietmar-Hopp-Allee 16 69190 Walldorf
How to Extend SAP Cloud for Customer - SAP On- Premise Pre-Packaged Integration Content (PI/HCI)
How-To Guide SAP Cloud for Customer Document Version: 3.0-2015-09-03 How to Extend SAP Cloud for Customer - SAP On- Premise Pre-Packaged Integration Content (PI/HCI) Document History Document Version Description
Demand Planning. SAP Business ByDesign
SAP Business ByDesign Table of Content 1 About this Document... 3 1.1 Purpose... 3 1.2 Reference System and Model Company... 3 2 Master and Organizational Data... 4 3 Business Process Tasks... 5 3.1 Demand
Sample Universe on Microsoft OLAP Cube
Sample Universe on Microsoft OLAP Cube Applies to: SAP BusinessObjects XI4, the information design tool and Microsoft Analysis Services 2005 & 2008. For more information, visit the Business Objects homepage.
How to Add an Attribute to a Case, Record and a Document in NW Folder Management (ex-records Management)
How to Add an Attribute to a Case, Record and a Document in NW Folder Management (ex-records Management) Applies to: SAP Folder Management 2.4 & 3.0. For more information, visit the Enterprise Performance
SAP HANA. SAP HANA Performance Efficient Speed and Scale-Out for Real-Time Business Intelligence
SAP HANA SAP HANA Performance Efficient Speed and Scale-Out for Real-Time Business Intelligence SAP HANA Performance Table of Contents 3 Introduction 4 The Test Environment Database Schema Test Data System
Alert Notification in SAP Supply Network Collaboration. SNC Extension Guide
Alert Notification in SAP Supply Network Collaboration SNC Extension Guide Version: 1.2 Date 08.02.2010 1 The SNC Extension Guide is a collection of tips and tricks on how to extend SAP Supply Network
Customization of SAP Sales Manager 2.5
SAP How-to Guide SAP Mobility Customization of SAP Sales Manager 2.5 A Branded Service provided by SAP Rapid Innovation Group Applicable Releases: SAP Sales Manager 2.5 Target Audience: CRM consultants
Supplier Master Data Governance
SAP Solution Brief SAP Business Suite SAP Master Data Governance Supplier Master Data Governance for SAP Business Suite Control Data Creation, Quality, and Consistency The SAP Master Data Governance application
R49 Using SAP Payment Engine for payment transactions. Process Diagram
R49 Using SAP Payment Engine for payment transactions Process Diagram Purpose, Benefits, and Key Process Steps Purpose The purpose of this scenario is to show you how to check the result of payment orders
Xcelsius Dashboards on SAP NetWaver BW Implementation Best Practices
Xcelsius Dashboards on SAP NetWaver BW Implementation Best Practices Patrice Le Bihan, SAP Intelligence Platform & NetWeaver RIG, Americas Dr. Gerd Schöffl, SAP Intelligence Platform & NetWeaver RIG, EMEA
Mobile app for ios Version 1.11.x, December 2015
Mobile app for ios Version 1.11.x, December 2015 Introduction This app allows you to access SAP Business One, SAP s enterprise resource planning application for small businesses, anywhere and anytime.
