How to Add a New Personnel Development Profile to PPPM

Size: px
Start display at page:

Download "How to Add a New Personnel Development Profile to PPPM"

Transcription

1 How to Add a New Personnel Development Profile to PPPM Applies to: SAP ECC 6.0 and above. For more information, visit the Enterprise Resource Planning homepage. Summary There are some personnel development profiles (Qualifications, Requirements, Development Plans, etc.) provided by SAP. However, there may arise situations where new ones has to be created. This article gives you a step-by-step guideline for developing and configuring a brand new personnel development profile and insert into PPPM t-code. Author: Dilek ADAK Company: MilSOFT ICT Created on: 19 March 2011 Author Bio Dilek has been graduated from Bilkent University (Ankara, Turkey) Computer Engineering department in She started working while she was still an undergraduate student. Her first workplace was Aselsan (Ankara, Turkey) where she has worked for 5 years. There she has dealt with HR (Personnel Administration, Organizational Management, Payroll, Training and Event Management, HR-ABAP) and BI modules as well as ABAP development. In May, 2008 she switched to Milsoft ICT (Ankara, Turkey) as an SAP consultant where her main interest area is again HCM modules including Personnel Administration, Personnel Development, Organizational Management, Objective Setting and Appraisals, Training and Event Management and Payroll. She is also dealing with BI and Portal configuration. She is still working in MilSOFT ICT SAP AG 1

2 Table of Contents Steps for Creating PD Profiles from Scratch... 3 Initial Configuration Steps... 5 ABAP development Final Configuration Steps Related Content Disclaimer and Liability Notice SAP AG 2

3 Steps for Creating PD Profiles from Scratch In one of my clients, there arose a need to hold a qualification development plan. In this plan, business people needed to assign qualifications with proficiency levels to employees with a time period and status (initially as Planned ). At the end of the time period, if the employee could gain the qualification, status is updated as Completed Successfully. In the opposite case, status would be Completed Unsuccessfully. Thus, the requirement was to have a personnel development subprofile (tab) in PPPM transaction which is a combination of Qualification and Individual Development profiles. In summary; I copied the screen of qualifications subprofile but referred to the screen of individual development profile on how to add status to the screen. The steps I carried out included both ABAP development and configuration. These steps are explained as follows: PPPM Qualifications Subprofile Qualification Proficiency Start/End Dates 2011 SAP AG 3

4 PPPM Individual Development Subprofile State 2011 SAP AG 4

5 Initial Configuration Steps In order to hold the relationship between the person and qualification named Qualification Development Plan, create a new relationship as follows : 2011 SAP AG 5

6 2011 SAP AG 6

7 Then go to table T77S0 via SM30 and insert the following line : PPREL ZOWNS A099 Qualification dev plan 2011 SAP AG 7

8 Then go and check the function group and screen number for qualification subprofile which is to be copied and updated SAP AG 8

9 Note down the report name and screen number for Qualifications subprofile SAP AG 9

10 Note down the report name and screen number for Individual Development subprofile SAP AG 10

11 ABAP development In order to add the status column as it resides in Individual Development subprofile, check the function group screen names which are noted above : That is : Function Group RHPQ_SHOW Screen number 3300: 2011 SAP AG 11

12 Go to transaction SE80 and copy function group RHPP - which is noted in the previous steps - as ZRHPP. Note: Function group name refers to the characters XXXX following SAPLXXXX in report name SAP AG 12

13 Go to the screen 2101 Layout, and add State field with the name DYNP_RHPQ_TAB-STATE_ID as it resides in Function Group RHPQ_SHOW Screen number SAP AG 13

14 For screen 2101, MODULE NNNN_READ_PARAMETERS. - PERFORM read_t77s0_parameters_for_pe. Insert the following line (which refers to the T77S0 entry for newly created relationship A099) : $zowns LIKE plog-subty, "A SAP AG 14

15 MODULE NNNN_READ_PARAMETERS. - PERFORM read_t77s0_parameters_for_pe. Insert the following lines: PERFORM re77s0(mstt77s0) USING 'PPREL' 'ZOWNS' $zowns subrc. (Reads the relationship value for PPREL ZOWNS entry in T77S0. -> A099) PERFORM $transform_relat(sapfh5an) USING $zowns $ownsb. "A099 qual dev (Finds the opposite relationship and saves into $ownsb - If $zowns is in format AXXX, then B099 -) 2011 SAP AG 15

16 MODULE NNNN_READ_PARAMETERS. - PERFORM read_t77s0_parameters_for_pe. Change all SAPLRHPP as SAPLZRHPP SAP AG 16

17 MODULE 2100_input_ctrl OUTPUT. Insert the following lines: IF sy-dynnr = '2101'. DYNP_RHPQ_TAB-state_id = qual_act-data-state_id. * DYNP_RHPQ_TAB-state_id = hrpe_profq-state_id. ENDIF. (In the original screen&function group (SAPLRHPP-2101) there was no State field. That s why this line of code is added to hold state value in dynpro variable.) 2011 SAP AG 17

18 MODULE 2100_MOVE_CTRL_BACK. Insert the following lines: IF sy-dynnr = '2101'. qual_act-data-state_id = dynp_rhpq_tab-state_id. hrpe_profq-state_id = dynp_rhpq_tab-state_id. hrpe_profqb-state_id = dynp_rhpq_tab-state_id. ENDIF. (This is to hold state field s value.) 2011 SAP AG 18

19 PERFORM check_validity_time_interval(saplrhpp) USING qual_act-data-plvar qual_act-data-tbjid qual_act-data-ttext qual_act-data-vbegd 'X' "with message qual_act-data-vendd g_validity. (SAPLRHPP is inserted in brackets since relevant form is used from this function group) 2011 SAP AG 19

20 MODULE 2100_user_command INPUT. Insert the following lines: DATA : lit_1001 TYPE hrp1001 OCCURS 0 WITH HEADER LINE, lit_qual_act LIKE qual_act OCCURS 0 WITH HEADER LINE SAP AG 20

21 MODULE 2100_user_command INPUT Change all $ownsa to $zowns SAP AG 21

22 MODULE 2100_user_command INPUT Insert the following lines: REFRESH lit_qual_act. lit_qual_act[] = qual_act[] SAP AG 22

23 MODULE 2100_user_command INPUT : (HRPAD77 is the table that holds values for states of development plans. States for qualification development plans are to be hold in the same table also.) Insert the following lines: CALL FUNCTION 'RH_UPDATE_DATABASE' EXPORTING vtask = 'D' * BUFFER_UPD = ' ' * ORDER_FLG = 'X' commit_flg = 'X' * CLEAR_BUFFER = 'X' EXCEPTIONS corr_exit = 0 OTHERS = 0. ********************************************************************** LOOP AT lit_qual_act. IF lit_qual_act-action = c_dis OR lit_qual_act-action = c_spe. CONTINUE. ENDIF. SELECT * FROM hrp1001 WHERE otype EQ qual_act-data-otype AND objid EQ lit_qual_act-data-sobid AND sobid EQ lit_qual_act-data-tbjid AND sclas EQ lit_qual_act-data-ttype AND begda EQ lit_qual_act-data-vbegd AND endda EQ lit_qual_act-data-vendd. hrpad77-adatanr = hrp1001-adatanr. hrpad77-state_id = lit_qual_act-data-state_id. IF lit_qual_act-action = c_del. DELETE FROM hrpad77 WHERE adatanr = hrp1001-adatanr. ELSEIF lit_qual_act-action = c_mod OR lit_qual_act-action = c_new. MODIFY hrpad77. ENDIF. * ENDLOOP. ENDSELECT. ENDLOOP. ********************************************************************** (To gather all the state information from the screen and write to the relevant database table.) 2011 SAP AG 23

24 2011 SAP AG 24

25 MODULE 2100_user_command INPUT : Change $ownsa to $zowns SAP AG 25

26 Final Configuration Steps All the development is done for the new subprofile. Now it is time to define it as a tab in PPPM SAP AG 26

27 Insert the following line referring to ZRHPP function module and 2101 screen number. You can use an icon if you want SAP AG 27

28 Assign it as a subprofile to P - Person object type 2011 SAP AG 28

29 And finally you have your brand new tab in PPPM. Enjoy it! 2011 SAP AG 29

30 Related Content For more information, visit the Enterprise Resource Planning homepage 2011 SAP AG 30

31 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 31

Transporting the Appraisal Templates in Performance Management

Transporting the Appraisal Templates in Performance Management Transporting the Appraisal Templates in Performance Management Applies to: SAP ECC 6.0 EHP4. For more information, visit the Enterprise Resource Planning homepage. Summary The Appraisal system in Performance

More information

Customer Field for SRM SC Web Dynpro Application

Customer Field for SRM SC Web Dynpro Application Customer Field for SRM SC Web Dynpro Application Applies to: SAP SRM 7.0. For more information, visit the Supplier Relationship Management homepage. Summary This document details the configurations required

More information

Creation of BI Master Data in Integrated Planning (IP) through Web Layouts

Creation of BI Master Data in Integrated Planning (IP) through Web Layouts Creation of BI Master Data in Integrated Planning (IP) through Web Layouts Applies to: BI-IP 7.0. For more information, visit the Business Intelligence homepage. Summary Prior to BI-IP in BPS the user

More information

Step By Step Configuration Document of Employee Self Service (ESS)

Step By Step Configuration Document of Employee Self Service (ESS) Step By Step Configuration Document of Employee Self Service (ESS) Applies to: SAP Enterprise Portal. For more information, visit the Portal and Collaboration homepage. Summary We often wonder how difficult

More information

Complete Guide to Learn Organizational Plan & Role Resolution in Workflow

Complete Guide to Learn Organizational Plan & Role Resolution in Workflow Complete Guide to Learn Organizational Plan & Role Resolution in Workflow Applies to: SAP ECC 6.0 and onwards. Summary Through this document the reader will be able to get a basic idea about the Organizational

More information

Travel Management: Posting of Expenses to Different GL Accounts based on the Kind of Travel (Domestic or International)

Travel Management: Posting of Expenses to Different GL Accounts based on the Kind of Travel (Domestic or International) Travel Management: Posting of Expenses to Different GL Accounts based on the Kind of Travel (Domestic or International) Applies to: SAP 4.7C, ECC 5.0 and ECC 6.0. For more information, visit the Enterprise

More information

SAP Business Workflow: Identify Transport Request for Workflow

SAP Business Workflow: Identify Transport Request for Workflow SAP Business Workflow: Identify Transport Request for Workflow Applies to: SAP 4.7, ECC 6.0 For more information, visit the Business Process Modeling homepage. Summary SAP Business Workflow Identify Transport

More information

SAP CRM/BW - Business Partner Enhancement and BW Extraction

SAP CRM/BW - Business Partner Enhancement and BW Extraction SAP CRM/BW - Business Partner Enhancement and BW Extraction Applies to: Applies to Consultants accustomed with SAP CRM 5.0 / BW (3.5 / 7.0) skills. For more information, visit the EDW Homepage. Summary

More information

Using Customer Exit Variables in BW/BI Reports: Part - 9

Using Customer Exit Variables in BW/BI Reports: Part - 9 Using Customer Exit Variables in BW/BI Reports: Part - 9 Applies to: SAP NetWeaver Business Warehouse (Formerly BI), Will also work on SAP BI 3.5. EDW homepage. Summary This article gives clear picture

More information

How to Perform Benefits Checks using Participation Monitor

How to Perform Benefits Checks using Participation Monitor How to Perform Benefits Checks using Participation Monitor Applies to: SAP ECC 6.0 and above. Summary Participation monitor is use to manage the employees benefits in the HR scenario. It is used to ensure

More information

Approved Manufacturer Part List (AMPL)

Approved Manufacturer Part List (AMPL) Approved Manufacturer Part List (AMPL) Applies to: SAP ECC 5.0, ECC 6.0. For more information, visit the Enterprise Resource Planning homepage. Summary This document details the configurations required

More information

Integration of Multiple Campaigns Functionality of SAP CRM 2007 to ECC 5.0 or lower

Integration of Multiple Campaigns Functionality of SAP CRM 2007 to ECC 5.0 or lower Integration of Multiple Campaigns Functionality of SAP CRM 2007 to ECC 5.0 or lower Applies to: SAP CRM 2007 and SAP CRM 7.0. For more information, visit the Customer Relationship Management homepage.

More information

Setting up Organizational Plan

Setting up Organizational Plan Summary Any company or firm becomes an Organization when it has its assets and resources properly structured. This article deals with setting up an Organization Plan in SAP HR and the relationships that

More information

Using Customer Exit Variables in BW/BI Reports: Part - 5

Using Customer Exit Variables in BW/BI Reports: Part - 5 Using Customer Exit Variables in BW/BI Reports: Part - 5 Applies to: SAP NetWeaver Business Warehouse (Formerly BI), Will also work on SAP BI 3.5. EDW homepage. Summary This article gives clear picture

More information

UWL Configuration for Opening Web Dynpro ABAP Application for Appraisal Document in EHP4

UWL Configuration for Opening Web Dynpro ABAP Application for Appraisal Document in EHP4 UWL Configuration for Opening Web Dynpro ABAP Application for Appraisal Document in EHP4 Applies to: SAP EP 7.01 SP8, SAP-ESS 603 SP7, ECC 6, SAP HR 604 SP 26. Summary This document describes the portal

More information

Solution Manager Service Desk Support Team Creation

Solution Manager Service Desk Support Team Creation Solution Manager Service Desk Support Team Creation Applies to: Applies to Solution Manager 7.0, Enhancement Pack 1. For more information, visit the Application Management homepage. Summary Using the Solution

More information

Dynamic Daily Work Schedule Based on Clock Times

Dynamic Daily Work Schedule Based on Clock Times Dynamic Daily Work Schedule Based on Clock Times Applies to: SAP HCM \ SAP HR Time Management. For more information, visit the Enterprise Resource Planning homepage. Summary This article explains the process

More information

Creating Marketing Project Report through Report Painter

Creating Marketing Project Report through Report Painter Creating Marketing Project Report through Report Painter Applies to: SAP ECC 6.0. For more information, visit the ABAP homepage. Summary This document provides a detailed description of how to create a

More information

Reporting Data in Alternate Unit of Measure in BI 7.0

Reporting Data in Alternate Unit of Measure in BI 7.0 Reporting Data in Alternate Unit of Measure in BI 7.0 Applies to: SAP Business Intelligence 7.0. For more information, visit the Business Intelligence homepage. Summary In SAP NetWeaver 2004s or SAP BW

More information

Guidelines for Creating a QM Certificate for Delivery in Product Lifecycle Management

Guidelines for Creating a QM Certificate for Delivery in Product Lifecycle Management Guidelines for Creating a QM Certificate for Delivery in Product Lifecycle Management Applies to: This applies to all QM functional consultants looking for Creation of Certificates for Delivery to Customer.

More information

FI Enhancement Technique How-To-Guide on the Usage of Business Transaction Events (BTE)

FI Enhancement Technique How-To-Guide on the Usage of Business Transaction Events (BTE) SDN Contribution FI Enhancement Technique How-To-Guide on the Usage of Business Transaction Events (BTE) Applies to: SAP 4.6C and Above Summary: This article provides a step-by-step guide on the usage

More information

Procedure for Transferring Documents from Financial Accounting to Controlling

Procedure for Transferring Documents from Financial Accounting to Controlling Procedure for Transferring Documents from Financial Accounting to Controlling Applies to: SAP R/3 4.6, ECC5.0 and ECC 6.0 For more information, visit the Enterprise Resource Planning homepage. Summary

More information

How to Restart a Failed Process Chain if Repeat Option is not Applicable

How to Restart a Failed Process Chain if Repeat Option is not Applicable How to Restart a Failed Process Chain if Repeat Option is not Applicable Applies to: SAP NetWeaver Business Warehouse (formerly BI). This will also work on SAP BI 3.5. For more information, visit the Business

More information

Purchase Order Settings in SAP SRM

Purchase Order Settings in SAP SRM Purchase Order Settings in SAP SRM Applies to: SAP SRM. For more information, visit the Supplier Relationship Management homepage Summary This document will provide details about defining purchase order

More information

Analysis Process Designer (APD): Part - 1

Analysis Process Designer (APD): Part - 1 Analysis Process Designer (APD): Part - 1 Applies to: SAP NetWeaver Business Warehouse (Formerly BI). Will also work on SAP BI 3.5. Business Intelligence homepage. Summary This article gives clear picture

More information

Calculating the Ageing of the Materials

Calculating the Ageing of the Materials Calculating the Ageing of the Materials Applies to: SAP BW 3.5, Will also work on SAP BI 7 For more information, visit the Business Intelligence homepage. Summary This article explains how to calculate

More information

Batch Management with Multiple Units of Measurement

Batch Management with Multiple Units of Measurement Batch Management with Multiple Units of Measurement Applies to: SAP ECC 6.0 Version For more information, visit the Enterprise Resource Planning homepage. Summary Paper on batch management for MS Plates,

More information

Integrating MDM with BI - Part 1

Integrating MDM with BI - Part 1 Applies to: SAP MDM and SAP BI. For more information visit the Master Data Management Homepage Summary The article gives the step by step process to configure a connection between SAP MDM and SAP BI System.

More information

SAP Business Process Management Base Configurations

SAP Business Process Management Base Configurations SAP Business Process Management Base Configurations Applies to: SAP Business Process Management 7.02. For more information, visit the Business Process Expert homepage. Summary This article shows step-by-step

More information

Transportation Chain-Shipping Cost Calculation for Multi leg with Different Vendors in SAP

Transportation Chain-Shipping Cost Calculation for Multi leg with Different Vendors in SAP Transportation Chain-Shipping Cost Calculation for Multi leg with Different Vendors in SAP Applies to: Transportation Chain Shipping Cost Calculation for Multi leg with different vendors. SAP Transportation

More information

Automatic Rework Order using Reason of Variance Key

Automatic Rework Order using Reason of Variance Key Automatic Rework Order using Reason of Variance Key Applies to: SAP Shop Floor Control (Production Orders) R/3 and ECC 6.0. For more information, visit the Manufacturing homepage. Summary This is an article

More information

SRM Org Structure Part 2 Tools, Tables and Reports

SRM Org Structure Part 2 Tools, Tables and Reports SRM Org Structure Part 2 Tools, Tables and Reports Applies to: SAP SRM 7.0, SRM 5.0, For more information, visit the Supplier Relationship Management homepage Summary Organization structure has been one

More information

SAP BW - Dynamic Call Customer Exit Variables Using Same Exit

SAP BW - Dynamic Call Customer Exit Variables Using Same Exit SAP BW - Dynamic Call Customer Exit Variables Using Same Exit Applies to: This article is applicable to all the SAP BI 7.0 consultants who are accustomed with SAP ABAP skills. For more information, visit

More information

Establishing RFC Connection between Data Stage SAP BW

Establishing RFC Connection between Data Stage SAP BW Establishing RFC Connection between Data Stage SAP BW Applies to: SAP BW 3.5 and Higher. Summary This Article gives you a brief idea on how to create RFC Connection between Data stage and SAP BI. For more

More information

Purchasing Discount in Kind

Purchasing Discount in Kind Applies to: SAP ECC 6.0. For more information, visit the Enterprise Resource Planning homepage. Summary: This document helps the P2P consultants to understand the free goods / bonus goods scenario in SAP

More information

Invoicing Plan Enhancement in Purchase Order

Invoicing Plan Enhancement in Purchase Order Invoicing Plan Enhancement in Purchase Order Applies to: SAP ECC 6.0. For more information, visit the Enterprise Resource Planning homepage Summary This document helps the P2P consultants to understand

More information

The author is working as a Technical Analyst in Infosys Technologies Limited.

The author is working as a Technical Analyst in Infosys Technologies Limited. Applies to: SAP-HCM. For more information, visit the Enterprise Resource Planning homepage. Summary This document would be helpful in viewing attendance/absence data in SAP for a particular year. Authors:

More information

Using the Switch Document for Change of Supplier Process (Utility Industry)

Using the Switch Document for Change of Supplier Process (Utility Industry) Using the Switch Document for Change of Supplier Process (Utility Industry) Applies to: When there is a Change of Supplier process in Utility Industry. For more information, visit the Utilities homepage.

More information

Decommissioning of NLS Implementation for SAP BI

Decommissioning of NLS Implementation for SAP BI Decommissioning of NLS Implementation for SAP BI Applies to NLS (SAND), SAP BIW 3.5, SAP NetWeaver 7.0. For more information, visit the Business Intelligence homepage. Summary This document talks about

More information

Migration of DIR (Document Info Record) with Attachments - DMS

Migration of DIR (Document Info Record) with Attachments - DMS Migration of DIR (Document Info Record) with Attachments - DMS Applies to: This document applies to Document Info Records in Document Management System module. For more information, visit the ABAP homepage.

More information

Like Modeling and Life Cycle Planning A Case Study

Like Modeling and Life Cycle Planning A Case Study Like Modeling and Life Cycle Planning A Case Study Applies to: APO Demand Planning. For more information, visit the Product Lifecycle Management homepage Summary This article is intended for all the Planners

More information

Automatic Packaging in SNC A Case Study

Automatic Packaging in SNC A Case Study Automatic Packaging in SNC A Case Study Applies to: APO Supply Network Collaboration (SNC). For more information, visit the Supply Chain Management homepage. Summary The article is intended for consultants

More information

GOA Contracts Price Validation Functionality

GOA Contracts Price Validation Functionality GOA Contracts Price Validation Functionality Applies to: SAP SRM 5.5. For more information, please visit SCN SRM Home Page. Summary The purpose of this document is to share the solution of maintaining

More information

Four Methods for Planning Data Validation in BPC70NW

Four Methods for Planning Data Validation in BPC70NW Four Methods for Planning Data Validation in BPC70NW Applies to: SAP BPC 7.0 NW. For more information, visit the Enterprise Performance Management homepage. Summary This whitepaper reviews four optional

More information

Management of Global Employees

Management of Global Employees Applies to: 4.7 and Ecc 6. For more information, visit the Enterprise Resource Planning homepage. Summary SAP R/3 Enterprise introduces a comprehensive solution for the management of global employees.

More information

How to Update the Currencies and Unit of Measurements from ECC Source System to BI System by Automatically and Manually

How to Update the Currencies and Unit of Measurements from ECC Source System to BI System by Automatically and Manually How to Update the Currencies and Unit of Measurements from ECC Source System to BI System by Automatically and Manually Applies to: SAP BI 7.0. For more information, visit the EDW homepage Summary This

More information

APO: Characteristics Based Forecasting

APO: Characteristics Based Forecasting APO: Characteristics Based Forecasting Applies to: SCM 5.0 APO Demand Planning. For more information, visit the Supply Chain Management homepage. Summary Characteristics-Based Forecasting (CBF) is a powerful

More information

Integrating SAP BW with Microsoft BI Using Open Hub Technology

Integrating SAP BW with Microsoft BI Using Open Hub Technology Integrating SAP BW with Microsoft BI Using Open Hub Technology Applies to: SAP Business Intelligence 7.0.For more information, visit the EDW homepage. Summary This paper will take you through the process

More information

HR Payroll Posting into FICO Expense Account

HR Payroll Posting into FICO Expense Account HR Payroll Posting into FICO Expense Account Applies to: Enterprise Resource Planning. For more information, visit the Enterprise Resource Planning homepage Summary This document will provide an overview

More information

SAP BW - Virtual Characteristic Exit (RSR00002)

SAP BW - Virtual Characteristic Exit (RSR00002) SAP BW - Virtual Characteristic Exit (RSR00002) Applies to: Applies to SAP BI 7.0 Consultants who are accustomed with SAP ABAP Skills. For more information, visit the EDW Homepage. Summary Document explains

More information

Efficient Monitoring Techniques Do You Want Something Better than RSPCM?

Efficient Monitoring Techniques Do You Want Something Better than RSPCM? Efficient Monitoring Techniques Do You Want Something Better than RSPCM? Applies to: SAP BW 3.x & SAP BI Net Weaver 2004s. For more information, visit the Business Intelligence homepage. Summary The objective

More information

SAP Upgrade Delta Document SD Module

SAP Upgrade Delta Document SD Module SAP Upgrade Delta Document SD Module Applies to: SAP Upgrade 4.7E to ECC6.0, Sales and Distribution Module For more information, visit the Enterprise Resource Planning homepage. Summary: The differences

More information

White Paper: Master Data Syndication from SAP NW MDM to Backend SAP & Non-SAP Application via SAP NW PI

White Paper: Master Data Syndication from SAP NW MDM to Backend SAP & Non-SAP Application via SAP NW PI White Paper: Master Data Syndication from SAP NW MDM to Backend SAP & Non-SAP Application via SAP NW PI Applies to: SAP NetWeaver Master Data Management 5.5 Server, SAP Process Integration 7.0 Server &

More information

SAP BusinessObjects Rapid Marts Overview - 1

SAP BusinessObjects Rapid Marts Overview - 1 SAP BusinessObjects Rapid Marts Overview - 1 Applies to: SAP BusinessObjects XI 3.0, SAP BusinessObjects XI 3.1 all support packs, SAP R/3 4.6 and above, SAP ERP ECC 5.0 and above. For more information,

More information

SAP Technical Upgrade Project

SAP Technical Upgrade Project Applies to: All SAP Technical and functional people For more information, visit the Enterprise Resource Planning homepage. Summary About the UPGARED PROJECT and what are the phases involved in it and what

More information

How to Repair Master/Transaction Data Load Error Due to trfc Stuck

How to Repair Master/Transaction Data Load Error Due to trfc Stuck How to Repair Master/Transaction Data Load Error Due to trfc Stuck Applies to: Load monitoring using Sap BI 7.x. Source systems being SAP R/3 or ECC. For more information, visit the EDW homepage. Summary

More information

Pricing in SAP CRM E-Commerce Product Catalog

Pricing in SAP CRM E-Commerce Product Catalog Pricing in SAP CRM E-Commerce Product Catalog Applies to: SAP CRM Release: SAP CRM 2007, SAP CRM 7.0 Support Package: SP004 Summary SAP CRM e-commerce offers a tool called Product Catalog that enables

More information

Independent Multiple Samples in Supply Chain Management

Independent Multiple Samples in Supply Chain Management Independent Multiple Samples in Supply Chain Management Applies to: SAP PLM /QM Consultants, SAP ECC 6.0. For more information, visit the Supply Chain Management homepage. Summry The user wants to create

More information

SAP Note HR Forms Option for display retroactive results

SAP Note HR Forms Option for display retroactive results SAP Note 2022750 HR Forms Option for display retroactive results TABLE OF CONTENTS 1 MANUAL CORRECTION INSTRUCTIONS... 3 1.1 Change MetaNet SAP_DEFAULT... 3 1.2 Change holiday certificate SAP_PAYSLIP_BEV1...

More information

Stock Transfer between Storage Locations of the Same Plant

Stock Transfer between Storage Locations of the Same Plant Stock Transfer between Storage Locations of the Same Plant Applies to: SAP ECC 6.0. For more information, visit the Supply Chain Management homepage. Summary In some business cases, a Plant may have 2

More information

Related to Process Type in BI 7.0: Decision between Multiple Alternatives

Related to Process Type in BI 7.0: Decision between Multiple Alternatives Related to Process Type in BI 7.0: Decision between Multiple Alternatives Applies to: SAP Business Intelligence 7.0. For more information, visit the EDW homepage. Summary The objective of this document

More information

Setup Matrix Generation in a Complex Manufacturing Environment

Setup Matrix Generation in a Complex Manufacturing Environment Setup Matrix Generation in a Complex Manufacturing Environment Applies to: Production planning and detailed scheduling Planning and schedule optimization - SCM5.0 or higher Summary Imagine a manufacturing

More information

Batch Specific UOM Inventory Management: Stock Keeping with Dynamic Conversion Factor

Batch Specific UOM Inventory Management: Stock Keeping with Dynamic Conversion Factor Batch Specific UOM Inventory Management: Stock Keeping with Dynamic Conversion Factor Applies to: SAP ECC6.0 Version For more information, visit the Enterprise Resource Planning homepage. Summary This

More information

Promote Standardized Solution in SAP Environment

Promote Standardized Solution in SAP Environment Promote Standardized Solution in SAP Environment Applies to: SAP Implementation Projects, SAP Support & Maintenance For more information, visit the Enterprise Resource Planning homepage. Summary The article

More information

Object based Navigation based on Business Objects and POWL

Object based Navigation based on Business Objects and POWL Object based Navigation based on Business Objects and POWL Applies to: SAP NetWeaver Portal 6.0 and 7.0 SP 16, SAP ERP 6.0 EhP3 and EhP4 ; ECC 7.1. For more information, visit the Business Objects homepage.

More information

Installation Guide: Open Text Archiving and Document Access for SAP Solutions (DocuLink Component)

Installation Guide: Open Text Archiving and Document Access for SAP Solutions (DocuLink Component) Installation Guide: Open Text Archiving and Document Access for SAP Solutions 9.6.2 (DocuLink Component) Applies to: Open Text Archiving and Document Access for SAP Solutions 9.6.2. For more information

More information

Subcontracting of Project Stock

Subcontracting of Project Stock Applies to: SAP ECC 6.0 For more information, visit the Enterprise Resource Planning homepage Summary This document shall help P2P consultants in the area of Subcontracting of Project Stock (special stock)

More information

SAP Release Change and Unicode Migration. A Customer Experience Report

SAP Release Change and Unicode Migration. A Customer Experience Report SAP Release Change and Unicode Migration. A Customer Experience Report Applies to: Upgrade from SAP R/3 4.6C to ERP ECC 6.0 including unicode migration. Summary This article describes the experiences during

More information

SAP for Insurance Part 1

SAP for Insurance Part 1 Applies to: SAP FS-CD ECC6.0. For more information, visit the Enterprise Resource Planning homepage. Summary This article is first part of series of several articles we will be writing on SAP FS-CD solution.

More information

Impact Analysis of Technical Upgrade from SAP for Insurance Collections/Disbursements (FS-CD) 4.7 to ECC 6.0

Impact Analysis of Technical Upgrade from SAP for Insurance Collections/Disbursements (FS-CD) 4.7 to ECC 6.0 Impact Analysis of Technical Upgrade from SAP for Insurance Collections/Disbursements (FS-CD) 4.7 to ECC 6.0 Applies to: ECC6 (migration from 4.7). For more information, visit the Enterprise Resource Planning

More information

Demand Release and Forecast Consumption Consumption in APO SNP

Demand Release and Forecast Consumption Consumption in APO SNP Demand Release and Forecast Consumption Consumption in APO SNP Applies to: SAP APO Demand Planning & Supply Network Planning. For more information, visit the Supplier Relationship Management homepage.

More information

Introduction to Process Chains in SAP BI 7.0

Introduction to Process Chains in SAP BI 7.0 Introduction to Process Chains in SAP BI 7.0 Applies to: SAP BI 7.0. For more information, visit the Business Intelligence Homepage. Summary Process chains are a robust graphical scheduling & monitoring

More information

SNP: CTM Concepts, Demand Prioritization and Supply Categorization

SNP: CTM Concepts, Demand Prioritization and Supply Categorization SNP: CTM Concepts, Demand Prioritization and Supply Categorization Applies to: SCM 5.0 Supply Network Planning and/or Production Planning and Detailed Scheduling. For more information, visit the Supply

More information

Guidelines: Activating Source Inspection for Externally Procured Parts

Guidelines: Activating Source Inspection for Externally Procured Parts Guidelines: Activating Source Inspection for Externally Procured Parts Applies to: SAP R/3 SAP Material Management and Quality Management : Activating Model inspection for a goods receipt for a purchase

More information

Release Notes for SAP Collaboration Projects

Release Notes for SAP Collaboration Projects Release Notes for SAP Collaboration Projects R e l e a s e 4. 5 Copyright Copyright(c) 2013 SAP AG. All rights reserved. Neither this document nor any part of it may be copied or reproduced in any form

More information

Collaboration of Production Process with Contract Manufacturers in Hi-Tech Industries

Collaboration of Production Process with Contract Manufacturers in Hi-Tech Industries Collaboration of Production Process with Contract Manufacturers in Hi-Tech Industries Applies to: Business Process Experts Community, High-Tech Industry Vertical Work order process, SAP R/3, ECC 5.0 &

More information

Quality Based Invoice

Quality Based Invoice Applies to: SAP 4.6 C and later releases. For more information, visit the Manufacturing homepage. Summary This article discusses the business process of paying the vendor based on the quality of the goods

More information

Active Ingredient Management and Batch Balancing

Active Ingredient Management and Batch Balancing Active Ingredient Management and Batch Balancing Applies to: SAP SCN Consultants, SAP ECC 6.0.For more information, visit the Supply Chain Management homepage. Summary Materials may contain one or more

More information

DRAFT How to Use SAP Activate Content in SAP Solution Manager 7.2

DRAFT How to Use SAP Activate Content in SAP Solution Manager 7.2 DRAFT How to Use SAP Activate Content in SAP Solution Manager 7.2 1. INVESTIGATE SAP S/4HANA BEST PRACTICE CONTENT IN SAP SOLUTION MANAGER 7.2 2 1.1. Set up a solution in SAP Solution Manager 7.2 2 1.2.

More information

SAP Sustainability Performance Management v1.0 (Part 3)

SAP Sustainability Performance Management v1.0 (Part 3) SAP Sustainability Performance Management v1.0 (Part 3) Applies to: This article applies to SAP BusinessObjects Sustainability Performance Management (SuPM) version 1.0. For more information, visit the

More information

Overview on ROI (Return on Investment) From SAP

Overview on ROI (Return on Investment) From SAP Overview on ROI (Return on Investment) From SAP Applies to: SAP Consulting Professionals Summary There is no standard method of measuring the ROI however It is possible to measure ROI from SAP Implementation

More information

Guideline to Map Calibration Process in SAP PM and QM Module

Guideline to Map Calibration Process in SAP PM and QM Module Guideline to Map Calibration Process in SAP PM and QM Module Applies to: It applies all functional consultants working for PM and QM looking for Calibration process. For more information, visit the Enterprise

More information

HCM 1: Model Organizational Structure

HCM 1: Model Organizational Structure HCM 1: Model Organizational Structure Exercise Model GBI s organizational structure. Task Sketch an organizational structure including four hierarchy levels for the organizational units described in the

More information

Working with the New GL Migration Cockpit

Working with the New GL Migration Cockpit Working with the New GL Migration Cockpit Applies to: Migration of Classical GL to New GL with Document Splitting. For more information, visit the Enterprise Resource Planning homepage. Summary The note

More information

Exception Handling in Service-Oriented Architecture

Exception Handling in Service-Oriented Architecture Exception Handling in Service-Oriented Architecture Applies to: Business Experts Summary Centrally managing exceptions has been a difficult task for many enterprises. This article describes the importance

More information

SAP Education. Your Road to Success

SAP Education. Your Road to Success SAP Education Your Road to Success SAP - ERP Market Leader System Application and Product (SAP) is a set of powerful tools that integrates multiple business process and functions into one comprehensive

More information

How to Load Data into Planning Book from Flat File

How to Load Data into Planning Book from Flat File How to Load Data into Planning Book from Flat File Applies to: SAP APO /SCM 7, SAP BI / BW 7.x, Summary This Article will provide information and detailed steps of how to load data into planning book from

More information

PCM Implementation for BW

PCM Implementation for BW Applies to: SAP BW 3.5, SAP BI 7.0 etc. For more information, visit the EDW homepage. Summary Cost and Profitability analysis is one of the most important KPIs for the CFO s office and most CFO s feel

More information

User guide. SAP umantis EM Interface. Campus Solution 728. SAP umantis EM Interface (V2.7.0)

User guide. SAP umantis EM Interface. Campus Solution 728. SAP umantis EM Interface (V2.7.0) Campus Solution 728 SAP umantis EM Interface (V2.7.0) User guide SAP umantis EM Interface Solution SAP umantis EM Interface Date Monday, March 20, 2017 1:47:22 PM Version 2.7.0 SAP Release from ECC 6.0

More information

Maintain Organizational Structure

Maintain Organizational Structure Maintain Organizational Structure Contents Introduction... 2 1.1 Preliminary Setting... 2 1.1.1 Create User Settings for Organization Management... 2 1.1 Relations Organizational Units, Positions, Jobs...

More information

Data Loading Strategy for Global Data Warehousing Implementation

Data Loading Strategy for Global Data Warehousing Implementation Data Loading Strategy for Global Data Warehousing Implementation Applies to: EDW, SAP BIW 3.5, SAP NetWeaver 7.0. For more information, visit the EDW homepage. Summary This document may help you in deciding

More information

Deliver A Renewed HR Experience

Deliver A Renewed HR Experience Deliver A Renewed HR Experience Presentation by Sherryanne H Meyer Manager, IT HR Applications and Americas SAP User Group Board of Directors SAPPHIRE NOW 2013, ORLANDO, FL Tuesday, May 14, 2013 1 Air

More information

SAP Best Practices for SuccessFactors Employee Central: Software and Delivery Requirements

SAP Best Practices for SuccessFactors Employee Central: Software and Delivery Requirements for SuccessFactors Employee Central February 2015 English SAP Best Practices for SuccessFactors Employee Central: Software and Delivery Requirements SAP AG Dietmar-Hopp-Allee 16 69190 Walldorf Germany

More information

Product Allocation Strategy Based on Marketing Strategy

Product Allocation Strategy Based on Marketing Strategy Product Allocation Strategy Based on Marketing Strategy Applies to: SAP R/3, ECC 6.0. For more information, visit the Business Process Expert homepage. Summary Product Allocation 1 is an efficient tool

More information

The Enterprise SOA Implementation Lifecycle Explained

The Enterprise SOA Implementation Lifecycle Explained The Enterprise SOA Implementation Lifecycle Explained Applies to: Enterprise Architects, Business Process Experts Summary Enterprise SOA implementation has been mysterious to many. It can be demystified

More information

Software Requirements

Software Requirements SAP NetWeaver 7.40 February 2014 English SAP E-Recruiting rapid-deployment solution V1.740 SAP AG Dietmar-Hopp-Allee 16 69190 Walldorf Germany Copyright 2014 SAP AG or an SAP affiliate company. All rights

More information

Human Capital Management (HCM) Case Study

Human Capital Management (HCM) Case Study FALLSTUDIE Human Capital Management (HCM) Case Study This case study explains a Human Capital Management process using organizational management and personnel administration. Produkt SAP ERP G.B.I. Release

More information

SAP ABAP / 4 MODULES

SAP ABAP / 4 MODULES SAP ABAP / 4 MODULES ERP OVERVIEW Understanding ERP What is ERP? Why ERP? Limitation of ERP? Benefits of ERP SAP OVERVIEW About SAP Why SAP? Advantages and scope of SAP System Landscape What is R/3 & Purpose

More information

Leveraging SAP for Outsourcing and Collaboration Scenarios in High-Tech Industry

Leveraging SAP for Outsourcing and Collaboration Scenarios in High-Tech Industry Leveraging SAP for Outsourcing and Collaboration Scenarios in High-Tech Industry Applies to: Business Process Transition from in-house manufacturing to contract manufacturing in High-Tech Industries. SAP

More information