SDN Community Contribution
|
|
|
- Hortense Bates
- 9 years ago
- Views:
Transcription
1 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 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 The SAP Developer Network: 1
2 Applies To: The document applies to SAP Exchange Infrastructure 3.0. Summary In a typical implementation of SAP XI, a large chunk of all the scenarios handled are the ones where the sender adapter is a File adapter. The file coming into the SAP XI system needs to be validated on multiple counts like completeness of file, existence of mandatory records, and proper sequence of records to name a few. These validations can be categorized into different classes based on the severity of error identified and the incoming file needs to be handled differently for failure on different classes of validations. Also, the proper authorities need to be alerted of these errors through the proper channels. This document deals with a sample methodology adopted for incorporating the above mentioned functionality in an XI interface. The document will describe the following main features of the functionality developed: Reading the entire file via a file adapter and performing validations on the payload Recording the errors occurring and inserting them in the payload Segregating the valid records from erroneous records in the payload Splitting the message into two valid and invalid and process them accordingly By: Aniket Tare Company: Wipro Technologies Date: 24 August SAP AG The SAP Developer Network: 2
3 Table of Content Applies To:...2 Summary...2 Table of Content...3 About This Tutorial...4 What is the Scenario? Source File Details IDoc Structure...4 Define the Problem...5 The Solution Explained File Content Conversion C1 Validations Implementation The Java Mapping Program (Flat Source to Valid and Invalid Record Sets) The Direct Mapping Program The Integration Process (Sending the Two Messages to Respective Receivers)...14 Disclaimer & Liability Notice...15 Author Bio SAP AG The SAP Developer Network: 3
4 About This Tutorial What is the Scenario? A rather simple scenario is selected to demo this solution. Following are the main actions: A file needs to be polled via the file adapter into SAP XI and validations need to be carried out on the records Valid and invalid records need to be segregated Valid records are posted into the IS-Utilities system as IDocs Invalid ones are reported via to the administrator. 1.1 Source File Details Below is content of a sample source file. A typical file consists of one A00 record, one Z99 record, and multiple M03 records. "A00",399,"MBR", ,002326,2700 "M03"," ",001","F", ," ", ,,"N",1,"CYLM","N"," 8345",4,"",,"",,,"","","U","U","U","N",,,,,,"I", ,,1.0,0,0, ," ","N",0,140,"KITCHEN U/SINK",,"U6","","CR" "Z99",2 A00 is the key value for the header record. M03 is the key value for the transaction record. Z99 is the key value for the trailer record. Each valid M03 record corresponds to an IDoc to be posted into the SAP IS-Utilities system. The IDoc structure is as given below. 1.2 IDoc Structure IDOC A00 M03 Thus, for each M03 record, the A00 record needs to be repeated and an IDoc containing both the records with the hierarchy as shown above needs to be posted SAP AG The SAP Developer Network: 4
5 Define the Problem The data in the incoming file needs to be validated. The validations that need to be carried out on the file have been classified into three types. Details as follows: Validation Class Validation Details Action if Validations Fails Class 1 (C1) Checks that a file contains a header and trailer record. Checks that the header record contains the correct number of data items. Checks that mandatory data items within the header record are populated. Checks that all populated data items in the header (mandatory or optional) are of the correct size, type, and format. Checks for duplicate files being received. The entire file will be rejected. Class 2 (C2) Checks that the file contains a body. Checks that the body of the file is made up from valid groups applicable to the flow type. Checks that the groups appear in the correct sequence. Checks that mandatory groups are present. Checks that correct number of data items are present regardless of optimality or format. The record failing the validation will be rejected. Class 3 (C3) Checks that mandatory data items within the groups are populated. Checks that all populated data items (mandatory or optional) in each group are of the correct size, type and format. The record failing the validation will be rejected SAP AG The SAP Developer Network: 5
6 The Solution Explained The solution consists of all the basic components of a File-to-IDoc scenario plus a few extra. In this document only the extra components will be explained, however before we get to the details of those components, let us understand the process flow. The components to be discussed are: File content conversion to pick up the entire record as a field. Module processor for implementing C1 validations. Java mapping program, direct mapping program and integration process for C2 and C3 validations implementation SAP AG The SAP Developer Network: 6
7 3.1 File Content Conversion In the file content conversion we pick up each record of the file as one field. We do not mention the key field values for each record. The key field value mentioned here will be * (see picture below). The reason we pick up the entire record as a field is that we need to ensure that the file content conversion does not fail due to an incorrect number of fields in a record. In fact this is a validation that we need to perform and hence cannot afford not picking up the file on this account! 2005 SAP AG The SAP Developer Network: 7
8 3.2 C1 Validations Implementation The C1 validations will be performed inside an EJB developed as a file adapter module. This module will be called before the standard CallSapAdapter module. The input to this module will be the output of file the content conversion, i.e. the flat XML file containing rowwise data. The module will be responsible for identifying the header and trailer records and performing the said C1 validations on them. (Note: Details of how these validations are performed is not in scope of this document.) If all the C1 validations are successful, the module will produce exactly the same output as the input XML document. If C1 validations fail, the module will modify the payload and insert the following in the XML payload: A tag consisting of an error flag. A tag consisting of the erroneous file name. Multiple tags each consisting of an error message SAP AG The SAP Developer Network: 8
9 The output xml in case of C1 validations failure looks as below. In case C1 validations fail, the error flag set by the module is read in a condition in the receiver determination step and the message is sent to a receiver that will handle the error message. This receiver consisting of a communication channel using mail adapter then sends this message via to the administrator. The mail content consists of the erroneous payload, erroneous file name and the error records. The processing is stopped here. This way, through the use of module adapter and condition in receiver determination, we ensure that a file failing in C1 validations is rejected then and there and is not sent for further processing. 3.3 C2 and C3 Validations Implementation C2 and C3 validations are record and field level validations respectively. Unlike in case of C1 validations where we reject the entire file if the validations fail, in case of failure of C2 and C3 validations we only reject that particular record. Consequently, the output of C2 and C3 validations are two sets of records valid and invalid. Hence the C2 and C3 validations implementation needs to take care of: Performing C2 and C3 validations on the flat source XML document. Segregating the valid and invalid records in two record sets in an output message (master output). Creating two output messages (valid and invalid) from the master output message. The components that have been implemented in order to achieve the above requirements are described below SAP AG The SAP Developer Network: 9
10 3.3.1 The Java Mapping Program (Flat Source to Valid and Invalid Record Sets) Instinctively (I believe), the best place to perform record level validations is a mapping program. Hence the C2 and C3 validations are performed in a Java mapping program. The mapping program takes as input the flat XML payload that is the output of C1 validations module. The mapping program is responsible for performing the C2 and C3 validations on each of the transaction records and segregates the valid records from the invalid records. (Note: Details of validations is not in the scope of this document.) The output of the mapping program is two separate record sets, one containing correct messages and the other containing incorrect messages. Source message: Java mapping program: Target message: 2005 SAP AG The SAP Developer Network: 10
11 The structure of message for valid records is exactly identical to the IDoc structure. IDOC A00 M03 The structure of message for invalid records is as below SAP AG The SAP Developer Network: 11
12 3.3.2 The Direct Mapping Program (Message Containing Valid and Invalid Record Sets to Individual Valid and Invalid Messages) After obtaining valid and invalid sets of records in a single message, a direct mapping program with two target messages (structures identical to valid and invalid record structures) creates two separate messages. Source message: The source message in the test environment of the mapping program is shown below: 2005 SAP AG The SAP Developer Network: 12
13 Direct mapping program: Target message: The output of the mapping program in the test environment is shown below. Note: MT_REC_GEN in the above figure denotes the incorrect records. These are mapped to the Content node of the standard XSD of the mail adapter and a mail is sent to the administrator. (Note: Details of that mapping are not mentioned as part of the document.) 2005 SAP AG The SAP Developer Network: 13
14 3.3.3 The Integration Process (Sending the Two Messages to Respective Receivers) The integration process receives the master output message. It then splits the message into two and sends each of the valid and invalid messages to the respective receivers. Receive step: Transformation step 1: In this step the master output is split into two messages Message_Correct and Message_Incorrect (direct mapping program). Fork: Duplicates the messages into two. Transformation step 2: refers to the mapping program that maps the records in Message_Incorrect to Content node as the standard XSD used for mail adapters. Thus the records appear as content of mail to the administrator. Send step 1: Sends the incorrect records as content of a mail to the administrator. Send step 2: Sends the correct records as idocs to the SAP ISU system. The valid records (records passing C2 and C3 validations) are posted into the SAP IS-U system as IDocs and the invalid records are sent across via mail to the administrator SAP AG The SAP Developer Network: 14
15 Disclaimer & Liability Notice This document may discuss sample coding, which does not include official interfaces and therefore is not supported. 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 of the code and methods suggested here, and anyone using these methods, is doing it under his/her own responsibility. SAP offers no guarantees and assumes no responsibility or liability of any type with respect to the content of the technical article, including any liability resulting from incompatibility between the content of the technical article and the materials and services offered by SAP. You agree that you will not hold SAP responsible or liable with respect to the content of the Technical Article or seek to do so. Author Bio Aniket Tare is an SAP NetWeaver Consultant at Wipro Technologies. He is a certified SAP ABAP/4 consultant, and of the five years of experience as an SAP technical consultant he has been working on the SAP NetWeaver platform for close to two years. He has been part of end-to-end SAP Enterprise Portals and SAP XI implementation projects SAP AG The SAP Developer Network: 15
Sending an Image File Through XI in a File-to-Mail Scenario
SDN Contribution Sending an Image File Through XI in a File-to-Mail Scenario Summary This article depicts the usage of the Additional files parameter in a File adapter to send a binary file(image) through
Step by Step Guide for Language Translation Tool
Step by Step Guide for Language Translation Tool Applies to: SAP ECC 6.0 Summary This document helps people to understand the steps involved in translation of standard SAP screen and also helps to change
How to Modify, Create and Delete Table Entries from SE16
How to Modify, Create and Delete Table Entries from SE16 Applies to This article applies to all SAP ABAP based products; however the examples and screen shots are derived from ECC 6.0 system. For more
Guidelines for Effective Data Migration
Guidelines for Effective Data Migration Applies to: SAP R/3. All releases. For more information, visit the ABAP homepage. Summary Data Migration is an important step in any SAP implementation projects.
Working with SAP BI 7.0 Data Transfer Process (DTP)
Working with SAP BI 7.0 Data Transfer Process (DTP) Applies to: SAP BI 7.0. For more information, visit the EDW homepage Summary The objective of this document is to know the various available DTP options
SAP CRM 2007 - Campaign Automation
SAP CRM 2007 - Campaign Automation Applies to: SAP CRM 7.0 For more information, visit the Customer Relationship Management homepage Summary Campaign Automation is designed to help you in the increasingly
Creating Transaction and Screen Variants
Creating Transaction and Screen Variants Applies to: Tested on SAP version ECC 6. Summary This article explain a way to create Transaction and Screen Variants to change screen layouts. And how to assign
A Step-by-Step guide on SMTP Configuration and File to Mail Scenario Using Process Integration Scenario in PI 7.1
A Step-by-Step guide on SMTP Configuration and File to Mail Scenario Using Process Integration Scenario in PI 7.1 Applies to: SAP NetWeaver Process Integration 7.1 For more information, visit the SOA Management
Salesforce.com Integration Using SAP PI: A Case Study
Salesforce.com Integration Using SAP PI: A Case Study Applies to: SAP NetWeaver Process Integration 7.1. For more information, visit the Service Bus-based Integration homepage. Summary This article explains
Using PI to Exchange PGP Encrypted Files in a B2B Scenario
Using PI to Exchange PGP Encrypted Files in a B2B Scenario Applies to: SAP Net Weaver Process Integration 7.1 (SAP PI 7.1). For more information, visit the SOA Management homepage. Summary This document
SAP Workflow in Plain English
Applies to: SAP Workflow. For more information, visit the Business Process Modeling homepage. Summary This article describes the basics of SAP workflow in very simple terms along with the basic terminology
Creating Email Content Using SO10 Objects and Text Symbols
Creating Email Content Using SO10 Objects and Text Symbols Applies to: SAP ECC 6.0. For more information, visit the ABAP homepage. Summary The article describes the benefits of SO10 objects in comparison
Restricting Search Operators in any Search View
Restricting Search Operators in any Search View Applies to SAP CRM 2007 and SAP CRM 7.0. For more information, visit the Customer Relationship Management homepage. Summary The purpose of this article is
Creating Web Service from Function Modules/BAPIs & Integrating with SAP Interactive Forms
Creating Web Service from Function Modules/BAPIs & Integrating with SAP Interactive Forms Applies to: ECC 6.0, SAP Interactive forms by Adobe. Summary This document states how to create Web Service from
Step by Step Guide How to Copy Flat File from Other Application Server to BI and Load through Info Package
Step by Step Guide How to Copy Flat File from Other Application Server to BI and Load through Info Package Applies to: SAP BW 7.x. For more information, visit the EDW Homepage. Summary The objective of
SAP CRM 7.0 E2C Setup: CRM via Email Toolset
SAP CRM 7.0 E2C Setup: CRM via Email Toolset Applies to: SAP CRM 700/NW 701. For more information, visit the Customer Relationship Management homepage. Summary This article describes the Email2CRM functionality
How to Assign Transport Request for Language Translation?
How to Assign Transport Request for Language Translation? Applies to: SAP ECC 6.0. For more information, visit the ABAP homepage. Summary This document helps people to create a transport request for the
Compounding in Infoobject and Analyzing the Infoobject in a Query
Compounding in Infoobject and Analyzing the Infoobject in a Query Applies to: SAP BI 7.0. For more information, visit the EDW homepage Summary This article demonstrates step by step process of creating
Sales Commission Calculation & Settlement Handling through Order Processing
Sales Commission Calculation & Settlement Handling through Order Processing Applies to: SAP Sales & Distribution & Incentive and Commission Management in ECC 6.0. For more information, visit the Enterprise
SAP MM: Purchase Requisition with Classification and Workflow Approval
SAP MM: Purchase Requisition with Classification and Workflow Approval Applies to: SAP 4.7 and above, SAP-MM-PUR-REL. For more information, visit the Enterprise Resource Planning homepage. Summary The
SPDD & SPAU Adjustments Handbook
SPDD & SPAU Adjustments Handbook Applies to: SAP Upgrades. For more information, visit the ABAP homepage. Summary Through this document the reader will be able to get a detailed idea about the working
Forgot or Lock "Administrator or J2EE_ADMIN" Password
Forgot or Lock "Administrator or J2EE_ADMIN" Password Applies to: SAP NetWeaver Portal 7.0. For more information, visit the Portal and Collaboration homepage. Summary This article provides you a step guide
Converting and Exporting Data in XML Format
Converting and Exporting Data in XML Format Applies to: SAP BW 3.5, SAP BI 7.0 etc. For more information, visit the EDW homepage. Summary This paper briefs about Information broadcasting that allows you
SAP BW - Excel Pivot Chart and Pivot Table report (Excel)
SAP BW - Excel Pivot Chart and Pivot Table report (Excel) Applies to: SAP BI Consultants. For more information, visit the EDW HomePage. Summary Document explains to create Excel Pivot Chart and Pivot Table
Salesforce Integration Using PI: How to Perform Query and Other DML Operations Using the Enterprise WSDL
Salesforce Integration Using PI: How to Perform Query and Other DML Operations Using the Enterprise WSDL Applies to: SAP NetWeaver Process Integration 7.1 Summary A case study for integrating Salesforce.com
Reverse Transport Mechanism in SAP BI
Reverse Transport Mechanism in SAP BI Applies to: SAP Net Weaver 2004s BI 7.0 Ehp1 SP 08. For more information, visit the EDW homepage Summary This document helps you to understand the detailed step by
Understanding BEx Query Designer: Part-2 Structures, Selections and Formulas
Understanding BEx Query Designer: Part-2 Structures, Selections and Formulas Applies to: SAP NetWeaver BW. Summary This document is the second installment of a 6 part Query Designer Training guide for
SAP CRM 7.0 for Newbies: (Part 1) Simple BOL Object Creation for CRM Webclient UI
SAP CRM 7.0 for Newbies: (Part 1) Simple BOL Object Creation for CRM Webclient UI Applies to: This article applies to SAP Netweaver 7.0, CRM ABAP 7.0. For more information, visit the Customer Relationship
Understanding OLAP Processor and RSRT
Understanding OLAP Processor and RSRT Applies to: SAP R/3, SAP ECC 6.0 and SAP BI NetWeaver 2004s. For more information, visit the EDW homepage. Summary This article gives the idea about Architecture of
Invoice Collaboration: Self Billing Invoice
Invoice Collaboration: Self Billing Invoice Applies to: Supply Network Collaboration 5.1 with the back end system ERP 5.0 with SP 10 and above. For more information, visit the Supply Chain Management homepage.
Step by Step Guide to Archiving and Deleting of XML Messages in SAP NetWeaver PI
Step by Step Guide to Archiving and Deleting of XML Messages in SAP NetWeaver PI Applies to: SAP NetWeaver Process Integration 3.0 / 7.0 / 7.1. Summary This document explains the step by step procedure
Quick Viewer: SAP Report Generating Tool
Quick Viewer: SAP Report Generating Tool Applies to: SAP Net Weaver 7.0, ABAP, SAP ECC 6.0, to all those who wants to learn about SAP Report Generating Tool: Quick Viewer. For more information, please
Business Scenario Using GP/Web Dynpro with Back and Forth 3 Level Process and Dynamic Approvers in a Loop
Business Scenario Using GP/Web Dynpro with Back and Forth 3 Level Process and Dynamic Approvers in a Loop Applies to This Article applies to Guided Procedures, Web Dynpro Java, Business Process Modeling
Tutorial - Creating Pop Up Window Using New Features in WebDynpro Java CE 7.1 Ehp1
Tutorial - Creating Pop Up Window Using New Features in WebDynpro Java CE 7.1 Ehp1 Applies to: SAP Net Weaver CE 7.11. For more information visit the User Interface Home Page. For more information visit
Configuring HTTPs Connection in SAP PI 7.10
Configuring HTTPs Connection in SAP PI 7.10 Applies to: SAP NetWeaver 7.1x For more information, visit the SOA Management homepage. Summary In the new version on SAP PI there are several changes in Https
Configuration of Enterprise Services using SICF and SOA Manager
Configuration of Enterprise Services using SICF and SOA Manager Applies to: SAP NetWeaver 7.0 SP14 and above. For more information, visit the SOA Management homepage. Summary This document will provide
Solution Manager Service Desk an End-to-End Helpdesk Solution
Solution Manager Service Desk an End-to-End Helpdesk Solution Summary With SAP s Solution Manager Initiative, customers are now required to incorporate a Solution Manager system into their SAP landscape.
How to Integrate CRM 2007 WebClient UI with SAP NetWeaver Portal
How to Integrate CRM 2007 WebClient UI with SAP NetWeaver Portal Applies to: Enterprise Portal, CRM 2007. For more information, visit the Portal and Collaboration homepage. Summary This document will describe
Understanding DSO (DataStore Object) Part 1: Standard DSO
Understanding DSO (DataStore Object) Part 1: Standard DSO Applies to: SAP NetWeaver BW. Summary This is the first of a three part series of documents containing each and every detail about DSOs and their
Table of Contents. Passing Data across Components through Component Controller between Two Value Nodes
Passing Data across Components through Component Controller between Two Value Nodes Applies to: SAP CRM WEBCLIENT UI 2007. For more information, visit the Customer Relationship Management homepage Summary
Deleting the Requests from the PSA and Change Log Tables in Business Intelligence
Deleting the Requests from the PSA and Change Log Tables in Business Intelligence Applies to: SAP BI 7.0. For more information, visit the Business Intelligence homepage Summary This paper discusses how
Step by Step guide of Report-to- Report Interface in BW Reporting
Step by Step guide of Report-to- Report Interface in BW Reporting Applies to: SAP BI 7.0. For more information, visit the Business Intelligence Home Page Summary This paper gives a detail understanding
ALE Settings, for Communication between a BW System and an SAP System
ALE Settings, for Communication between a BW System and an SAP System Applies to: SAP ECC 6.0. For more details, visit the EDW homepage. Summary This document helps people to create ALE settings, which
Multi Provider Creation Based on Sales and Planning Info Cubes
Multi Provider Creation Based on Sales and Planning Info Cubes Applies to: SAP BI 2004s or SAP BI 7.x. For more information, visit the Business Intelligence homepage. Summary In This article, I am going
SAP FI - Automatic Payment Program (Configuration and Run)
SAP FI - Automatic Payment Program (Configuration and Run) Applies to: SAP ECC 6.0. For more information, visit the Financial Excellence homepage. Summary This document helps you to configure and run Automatic
SAP NetWeaver Developer Studio 7.30 Installation Guide
SAP NetWeaver Developer Studio 7.30 Installation Guide Applies to: SAP NetWeaver CE 7.30, SAP Net Weaver Developer Studio (7.30). For more information, visit the Web Dynpro ABAP homepage. Summary This
Deleting the User Personalization done on Enterprise Portal
Deleting the User Personalization done on Enterprise Portal Applies to: SRM 7.0 with EP 6.0. For more information, visit the Supplier Relationship Management homepage Summary This document explains the
ABAP Proxy Interfacing
Applies to: This document applies to SAP versions ECC 6.0. Summary This article contains the guidelines for using the ABAP Proxy interfacing. ABAP proxies are used when ABAP applications needs to send
Order Split Usage in Production Orders
Order Split Usage in Production Orders Applies to: SAP Shop Floor Control (Production Orders) R/3 and ECC 6.0. For more information, visit the Enterprise Resource Planning homepage. Summary: This is an
Step by Step Guide to Extract Batch Master Data via Generic and Classification Datasource to BW
Step by Step Guide to Extract Batch Master Data via Generic and Classification Datasource to BW Applies to: SAP ECC 5.0 and above releases and BW 7.0 Summary This paper gives a detail understanding on
XSLT Mapping in SAP PI 7.1
Applies to: SAP NetWeaver Process Integration 7.1 (SAP PI 7.1) Summary This document explains about using XSLT mapping in SAP Process Integration for converting a simple input to a relatively complex output.
Overview of SAP BusinessObjects Risk Management 10.0
Overview of SAP BusinessObjects Risk Management 10.0 Applies to: SAP BusinessObjects Risk Management 10.0, SAP NetWeaver 7.0, Enhancement Package 2. For more information, visit the Governance, Risk, and
SAP BW - Generic Datasource Function Module (Multiple Delta Fields)
SAP BW - Generic Datasource Function Module (Multiple Delta Fields) Applies to: SAP BW 3.5 / SAP 7.0 Consultants. For more information, visit the EDW HomePage. Summary Fetch the delta on multiple fields
ABAP Debugging Tips and Tricks
Applies to: This article applies to all SAP ABAP based products; however the examples and screen shots are derived from ECC 6.0 system. For more information, visit the ABAP homepage. Summary This article
Web Dynpro: Multiple ALV Grids and Layouts in ALV
Web Dynpro: Multiple ALV Grids and Layouts in ALV Applies to: SAP ECC 6.0. For more information, visit the Web Dynpro ABAP homepage. Summary The article is designed in such a way that person with ABAP
Web Dynpro ABAP: ALV and Table in Popup Window
Web Dynpro ABAP: ALV and Table in Popup Window Applies to: SAP ECC 6.0 Summary Normally in ABAP, we come across the scenario of displaying ALV in popup. This article tells about displaying data both in
Embedding Crystal Reports inside ECC ALV Reports
Embedding Crystal Reports inside ECC ALV Reports Applies to: Applies to ECC Enhancement Package 5 Summary These steps describe how to configure and set up embedded Crystal Reports inside the ECC system
Exposing RFC as Web Service and Consuming Web Service in Interactive Forms in ABAP
Exposing RFC as Web Service and Consuming Web Service in Interactive Forms in ABAP Applies to: SAP Interactive Forms by Adobe and Web Service in ABAP. For more information, visit SAP Interactive forms
Understanding BW Non Cumulative Concept as Applicable in Inventory Management Data Model
Understanding BW Non Cumulative Concept as Applicable in Inventory Management Data Model Applies to: SAP R/3, SAP ECC 6.0 and SAP BI NetWeaver 2004s. For more information, visit the Business Intelligence
ABAP How To on SQL Trace Analysis
Applies To: ABAP Summary SQL trace is a performance analysis tool that shows how open SQL statements are converted into native SQL statements. The following document discusses the performance measure utility
Introduction to COPA and COPA Realignment
Introduction to COPA and COPA Realignment Applies to: SAP BI Consultants & Developers working on COPA Data Model. For more information, visit the EDW homepage Summary This document gives a brief introduction
Step by Step Procedures to Load Master Data (Attribute and Text) from FlatFile in BI 7.0
Step by Step Procedures to Load Master Data (Attribute and Text) from FlatFile in BI 7.0 Applies to: SAP Business Intelligence (BI 7.0). For more information, visit the EDW homepage Summary This article
Process Controlled Workflow SRM 7.0 (Using BRF)
Process Controlled Workflow SRM 7.0 (Using BRF) Applies to: SAP SRM 7.0 For more information, visit the Supplier Relationship Management homepage. Summary This document helps user to create workflow s
How to Load Data from Flat Files into BW PSA
How to Load Data from Flat Files into BW PSA Applies to: SAP BI/BW 7.0 and above. Summary The document is aimed at all those who are at beginner level in BW. It details out step by step processes that
Data Extraction and Retraction in BPC-BI
Data Extraction and Retraction in BPC-BI Applies to: Document is applicable to all the BPC 7.0 NW version users and the users BI 7.0 integration with BPC. For more information, visit the Enterprise Performance
Automating Invoice Processing in SAP Accounts Payable
Automating Invoice Processing in SAP Accounts Payable Applies to: SAP 4.6C, SAP 4.7 Enterprise, mysap ERP 2004, mysap ERP 2004 Summary Paying to the vendor who supplies good or provides services is the
Inventory Management in SAP BW
Applies to: SAP BW 3.X and BI NetWeaver 2004s. For more information, visit the EDW homepage. Summary This document aims to explain the concept of Inventory management using non cumulative key figures in
IDOC Payment Process with SAP
Applies to: SAP ECC 6.0. For more information, visit the Enterprise Resource Planning homepage. Summary There multiple modes of outgoing payments viz., Manual, electronic, through bank without any electronic
Deploying Crystal Reports on Top of a SAP BI Query
Deploying Crystal Reports on Top of a SAP BI Query Applies to: SAP BI NetWeaver 2004s, Crystal Reports 2008. For more information, visit the Business Intelligence homepage. Summary The objective of the
Organizational Management- Organizational Structure Creation
Organizational Management- Organizational Structure Creation Applies to: SAP ECC6.0 (Release 700, SP 12). For more information, visit the Enterprise Resource Planning homepage. Summary HR applications
LSMW: Upload Master Data using Batch Input Recording
LSMW: Upload Master Data using Batch Input Recording Applies to: All modules of SAP where upload of data need to be performed using Batch Input Recording. For more information, visit the Master Data Management
Direct Subcontracting Process (SAP SD & MM)
Direct Subcontracting Process (SAP SD & MM) Applies to: This article is applicable to SAP SD & MM modules of SAP for version SAP 4.7 till ERP 6.0 Summary This article describes a process called Direct
Creation and Configuration of Business Partners in SAP CRM
Creation and Configuration of Business Partners in SAP CRM Applies to: SAP CRM 2005 (5.0) and above release. For more information, visit the Customer Relationship Management homepage. Summary This document
Mandatory Field Check in Web Dynpro- ABAP
Mandatory Field Check in Web Dynpro- ABAP Applies to: SAP ECC 6.0 Onwards. For more information, visit the Web Dynpro ABAP homepage. Summary Efficient way to Apply Mandatory/Obligatory field Check on Input
Transfer of GL Master from Source SAP System to a Target SAP System through IDOCS
Transfer of GL Master from Source SAP System to a Target SAP System through IDOCS Applies to: SAP ECC 6.0. For more information, visit the Enterprise Resource Planning homepage. Summary SAP offers a wide
Display Options in Transaction SE16
Display Options in Transaction SE16 Applies to: SAP-HCM. For more information, visit the Enterprise Resource Planning homepage. Summary This document deals with the various data display options available
Creating New Unit of Measure in SAP BW
Creating New Unit of Measure in SAP BW Applies to: Software Component: SAP_BW. For more information, visit the Business Intelligence homepage. Release: 700 Summary This article is intended to serve as
Scenario... 3 Step-by-Step Solution... 3. Virtual Infocube... 4 Function Module (Virtual InfoCube)... 5 Infocube Data Display... 7
SAP BI - Virtual Infocube based on Function Module (Transport History) Applies to: SAP BW 3.5 / BI 7.0 consultants accustomed with SAP ABAP skills. For more information, visit EDW Homepage. Summary Explains
Step by Step Procedure to Block and Debug a CIF Queue Flowing from R/3 to APO System
Step by Step Procedure to Block and Debug a CIF Queue Flowing from R/3 to APO System Applies to: SAP R/3 and SAP APO. For more information, visit the ABAP homepage. Summary This article gives a detailed
Workflow Troubleshooting and Monitoring in SAP ECC 6.0
Workflow Troubleshooting and Monitoring in SAP ECC 6.0 Applies to: ECC 6.0, Workflow Troubleshooting & Monitoring Summary A major advantage of workflow is the ability to monitor the workflow steps according
Standard SAP Configuration of SMS through HTTP with Third Party SMS Gateway
Standard SAP Configuration of SMS through HTTP with Third Party SMS Gateway Applies to: SAP R/3 4.7 EE SR 200,ECC 5.0 For more information, visit the Web Services homepage. Summary There is an increasing
How to Generate Stack Xml for Ehp4 and Above Upgrade
How to Generate Stack Xml for Ehp4 and Above Upgrade Applies to: ECC 6.0 EHP4 or Above. For more information, visit the Enterprise Resource Planning homepage Summary For upgrading Enhancement Package4
Release Strategy Enhancement in Purchase Order
Release Strategy 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
Query OLAP Cache Optimization in SAP BW
Query OLAP Cache Optimization in SAP BW Applies to: SAP NetWeaver 2004s BW 7.0 Summary This article explains how to improve performance of long running queries using OLAP Cache. Author: Sheetal Maharshi
SAP CRM-BW Adapter an Overview
Applies to: SAP CRM / SAP BW (3.5 / 7.0). For more information, visit the Customer Relationship Management homepage. Summary This article gives an overview about the BW Adapter that is used in the BI-CRM
Table of Content. SAP Query creation and transport Procedure in ECC6
SAP Query creation and transport Procedure in ECC6 Applies to: ECC6, For more information, visit the Enterprise Resource Planning homepage. Summary This article guides the how to technique for creating
Time Evaluation RPTIME00 Report Prerequisites, Process Flow and Storing results on Cluster B2
Time Evaluation RPTIME00 Report Prerequisites, Process Flow and Storing results on Cluster B2 Applies to: SAP ERP 6.0 (SAP HR) Summary This document helps a user to understand different types of Time Evaluation
How to Develop Programs for SAP Mobile RF
How to Develop Programs for SAP Mobile RF Applies to: SAP R3 4.6c and above. For more information, visit the ABAP homepage. Summary This article will help you how to develop programs for SAP Mobile RF
SAP BW Configuration Basic System Settings
SAP BW Configuration Basic System Settings Applies to: SAP BI 7.0. For more information, visit the EDW homepage Summary This document is intended to show the basic configuration settings that should be
Extractor in R/3 and Delta Queue
Applies to: SAP BW (3.5) / SAP BI(7.0). For more information, visit the Business Intelligence homepage. Summary This article contains all the information required in order to create data sources in R/3
Integrated Testing Solution Using SAP Solution Manager, HP-QC/QTP and SAP TAO
Integrated Testing Solution Using SAP Solution Manager, HP-QC/QTP and SAP TAO Applies to: SAP Test Acceleration and Optimization, HP Quality Center, HP Quick Test Professional, SAP Solution Manager. For
Step by Step Procedure to Create Broadcasters, to Schedule and to Enhance of SAP- BI Queries from Query Designer
Step by Step Procedure to Create Broadcasters, to Schedule and to Enhance of SAP- BI Queries from Query Designer Applies to: SAP Business Intelligence 7.0. For more information, visit the EDW homepage.
BW Performance Monitoring
Applies to: SAP BW 7.0. For more information, visit the EDW homepage. Summary This article helps to achieve BW statistics of the system which will help a user to calculate the performance for a particular
Credit Management in Sales and Distribution
Credit Management in Sales and Distribution Applies to: Credit Management in Sales and Distribution. For more information, visit the Enterprise Resource Planning Homepage. Summary This document illustrates
Quantifying the Amount of Cash Discount Lost
Quantifying the Amount of Cash Discount Lost Applies to: All Business organizations where the Financial Controller wants to analyze how much cash discount is lost due to non-adherence to payment terms
How to Get Work Items from Workflow in your Outlook Inbox
How to Get Work Items from Workflow in your Outlook Inbox Applies to: Ecc 6.0 & Above ABAP- Workflow. For more information, visit the ABAP homepage. Summary The frequent question will come into your mind
Create Automatic Mail Notification/ Email Alert for Process Chain Monitoring
Create Automatic Mail Notification/ Email Alert for Process Chain Monitoring Applies to: SAP BW 3.X, Business Intelligence 7.0. For more information, visit the EDW homepage. Summary This document will
Middleware Configuration and Monitoring for Master Data Transfer from SRM to ECC
Middleware Configuration and Monitoring for Master Data Transfer from SRM to ECC Applies to: SRM 5.0, SRM 7.0 For more information, visit the Supplier Relationship Management homepage. Summary Master data
Splitting the Custom Container & Display more than one ALV
Splitting the Custom Container & Display more than one ALV Applies to: This document applies to SAP ECC 6.0, SAP Netweaver 2004s. For more information, visit the ABAP homepage. Summary This article contains
Step By Step Procedure to Create Logical File Path and Logical File Name
Step By Step Procedure to Create Logical File Path and Logical File Name Applies to: SAP BW (3.5) / SAP BI(7.0) For more information, visit Business Intelligence Homepage. Summary These documents describe
