Reading Excel file from Application Server into ABAP Internal Table
|
|
|
- Roy Crawford
- 9 years ago
- Views:
Transcription
1 Reading Excel file from Application Server into ABAP Internal Table Applies to SAP ABAP Developers who are working on interface project. Developers who has required to read excel data into internal table format for database update. Summary This document gives a step by step process to implement code to download excel data into internal table and update the database table. 1
2 Table of Contents 1. Applicable scenario.3 2. Prerequisites.3 3. Introduction Step By Step Implementation of Code.3 5. Creation of Function Module.3 6. Implementing Code in Program.4 7. Creation of XSLT transformations.8 8. Disclaimer and Liability Notice..14 2
3 1. Applicable scenario This solution can be implementing in such scenario where we are getting data from third party system in form of Excel documents (.xls or.xlsx) format. If we have requirement to download data into ABAP internal table for manipulation and updating the database table. 2. Prerequisites Basic knowledge of ABAP and developer should be able to understand object oriented ABAP code and implement the solution. 3. Introduction In this document, we will share knowledge on how to extract data from application server on directory path in case we have to download excel file written on application server. 4. Creation of Function Module In SE37, create the function group and function module. 3
4 Please fill these details in Import, Export, Changing and Exceptions parameters. 5. Implementing ABAP code in Program Source Code Global Data *Constants CONSTANTS: c_logical_filename_ftappl_2 LIKE filename-fileintern VALUE 'EHS_FTAPPL_2', c_codepage TYPE abap_encod VALUE '1160', c_sheet_xml TYPE i VALUE 2, c_shared_str_xml TYPE i VALUE 3, c_filefmt_binary TYPE rlgrap-filetype VALUE 'BIN'. *Global data DATA:g_ex_root TYPE REF TO cx_root, g_msg TYPE string. Function module Source Code - DATA: l_log_filename TYPE fileintern, l_stack_tab TYPE sys_callst, l_stack_wa TYPE sys_calls. 4
5 DATA : l_len TYPE sy-tabix. DATA : l_filename TYPE authb-filename. DATA l_subrc TYPE sy-subrc. DATA: l_lines TYPE i. DATA: l_xstring TYPE xstring. DATA lo_package TYPE REF TO cl_openxml_package. DATA lo_parts TYPE REF TO cl_openxml_partcollection. DATA l_sheet_data TYPE xstring. DATA l_shared_data TYPE xstring. DATA: li_e_rcgrepfile_tab TYPE cpt_x255, li_xtab TYPE cpt_x255. DATA lst_rcgrepfile TYPE cps_x255. DATA: lo_xml_part TYPE REF TO cl_openxml_part, lo_xml_part_uri TYPE REF TO cl_openxml_parturi, lx_root TYPE REF TO cx_root, l_uri TYPE string. DATA: l_file_content TYPE xstring. * function body * assign value l_filename = i_file. * check the authority for file CALL FUNCTION 'AUTHORITY_CHECK_DATASET' EXPORTING * PROGRAM = activity = sabc_act_read * Authority Check allows right now only 60 Character filename = l_filename(60) EXCEPTIONS no_authority = 1 activity_unknown = 2 OTHERS = 3. IF sy-subrc <> 0. RAISE no_permission. l_log_filename = c_logical_filename_ftappl_2. 5
6 TRY. * read the raw-file from the appl.server CLEAR l_subrc. OPEN DATASET i_file FOR INPUT IN BINARY MODE. l_subrc = sy-subrc. IF sy-subrc <> 0 OR l_subrc <> 0. RAISE open_failed. DO. CLEAR l_len. CLEAR lst_rcgrepfile. READ DATASET i_file INTO lst_rcgrepfile LENGTH l_len. IF sy-subrc <> 0. IF l_len > 0. e_file_size = e_file_size + l_len. APPEND lst_rcgrepfile TO li_e_rcgrepfile_tab. EXIT. CONCATENATE l_file_content lst_rcgrepfile INTO l_file_content IN BYTE MODE. e_file_size = e_file_size + l_len. APPEND lst_rcgrepfile TO li_e_rcgrepfile_tab. ENDDO. IF sy-subrc > 10. RAISE read_error. DESCRIBE TABLE li_e_rcgrepfile_tab LINES e_lines. CLOSE DATASET i_file. IF li_e_rcgrepfile_tab[] IS NOT INITIAL. li_xtab[] = li_e_rcgrepfile_tab[]. *Convert data to xstring cl_scp_change_db=>xtab_to_xstr( EXPORTING im_xtab = li_xtab im_size = l_lines IMPORTING ex_xstring = l_xstring ). 6
7 *Load document lo_package = cl_xlsx_document=>load_document( iv_data = l_xstring ). *Get parts lo_parts = lo_package->get_parts( ). *Load XML data l_uri = lo_parts->get_part( 2 )->get_parts( )- >get_part( c_sheet_xml )->get_uri( )->get_uri( ). lo_xml_part_uri = cl_openxml_parturi=>create_from_partname( l_uri ). lo_xml_part = lo_package->get_part_by_uri( lo_xml_part_uri ). ch_sheet_data = lo_xml_part->get_data( ). *Load sheet data CLEAR l_uri. l_uri = lo_parts->get_part( 2 )->get_parts( )- >get_part( c_shared_str_xml )->get_uri( )->get_uri( ). lo_xml_part_uri = cl_openxml_parturi=>create_from_partname( l_uri ). lo_xml_part = lo_package->get_part_by_uri( lo_xml_part_uri ). ch_shared_data = lo_xml_part->get_data( ). CATCH cx_root INTO g_ex_root. CLEAR g_msg. g_msg = g_ex_root->get_text( ). IF g_msg IS NOT INITIAL. sy-subrc = 4. ENDTRY. Transform XML data to internal table with help of XSLT transformation *Local data declaration DATA lo_shared_str_dom TYPE REF TO if_ixml_document. DATA lo_shared_str_nodeset TYPE REF TO if_ixml_node. DATA l_shared_str_xml TYPE xstring. *Converting XML into internal table TRY. CALL TRANSFORMATION z_transform_excel SOURCE XML g_shared_data RESULT XML l_shared_str_xml. *XML to ABAP CALL FUNCTION 'SDIXML_XML_TO_DOM' EXPORTING xml = l_shared_str_xml IMPORTING document = lo_shared_str_dom EXCEPTIONS invalid_input = 1 OTHERS = 2. IF sy-subrc = 0. lo_shared_str_nodeset = lo_shared_str_dom->clone( ). *Import data 7
8 CALL TRANSFORMATION z_trans_import_xls PARAMETERS p_shared_string = lo_shared_str_nodeset SOURCE XML g_sheet_data RESULT lt_data = i_data1. CATCH cx_xslt_exception. ENDTRY. 6. Creation of XSLT transformations Transaction Code XSLT_TOOL Step - 1 Step 2 Step - 3 8
9 Insert below code and activate the XSLT Transformation - <xsl:stylesheet xmlns:xsl=" xmlns:ss=" version="1.1"> <xsl:strip-space elements="*"/> <xsl:output encoding="utf-8" indent="yes" method="xml" omit-xmldeclaration="yes"/> <xsl:template match="/"> <xsl:element name="sst" namespace=""> <xsl:for-each select="ss:sst/ss:si"> <xsl:element name="si" namespace=""> <xsl:element name="t" namespace=""> <xsl:value-of select="ss:t"/> </xsl:element> </xsl:element> </xsl:for-each> </xsl:element> </xsl:template> </xsl:stylesheet> In similar way, create one more XSLT transformation Step 1 Step 2 Step - 3 9
10 <xsl:transform xmlns:xsl=" xmlns:ss="h ttp://schemas.openxmlformats.org/spreadsheetml/2006/main" xmlns:sap=" / xmlns:asx=" exclude-resultprefixes="c" version="1.0"> <xsl:param name="p_shared_string" select=""/> <xsl:strip-space elements="*"/> <xsl:output encoding="utf-8" indent="yes" omit-xml-declaration="yes"/> <xsl:variable name="v_shared_string"> <xsl:if test="$p_shared_string"> <xsl:copy-of select="$p_shared_string"/> </xsl:variable> <xsl:template match="/"> <asx:abap version="1.0"> <asx:values> <LT_DATA> <xsl:for-each select="ss:worksheet/ss:sheetdata/ss:row"> <xsl:if test="position() > 1"> <item> <EXCEL_DATA-FIELD1> 10
11 <xsl:variable name="cell_id" select="concat('a', position ())"/> <xsl:variable name="v_index" ='s']/ss:v"/> <xsl:if test="$v_index"> <xsl:valueof select="$v_shared_string/sst/si[$v_index + 1]/t"/> <xsl:if test="not($v_index)"> <xsl:value-of select="ss:c[@r=$cell_id]/ss:v"/> </EXCEL_DATA-FIELD1> <EXCEL_DATA-FIELD2> <xsl:variable name="cell_id" select="concat('b', position ())"/> <xsl:variable name="v_index" select="ss:c[@r=$cell_id][@t ='s']/ss:v"/> <xsl:if test="$v_index"> <xsl:valueof select="$v_shared_string/sst/si[$v_index + 1]/t"/> <xsl:if test="not($v_index)"> <xsl:value-of select="ss:c[@r=$cell_id]/ss:v"/> </EXCEL_DATA-FIELD2> <EXCEL_DATA-FIELD3> <xsl:variable name="cell_id" select="concat('c', position ())"/> <xsl:variable name="v_index" select="ss:c[@r=$cell_id][@t ='s']/ss:v"/> <xsl:if test="$v_index"> <xsl:valueof select="$v_shared_string/sst/si[$v_index + 1]/t"/> <xsl:if test="not($v_index)"> <xsl:value-of select="ss:c[@r=$cell_id]/ss:v"/> </EXCEL_DATA-FIELD3> <EXCEL_DATA-FIELD4> <xsl:variable name="cell_id" select="concat('d', position ())"/> <xsl:variable name="v_index" select="ss:c[@r=$cell_id][@t ='s']/ss:v"/> <xsl:if test="$v_index"> <xsl:value- 11
12 of select="$v_shared_string/sst/si[$v_index + 1]/t"/> <xsl:if test="not($v_index)"> <xsl:value-of select="ss:c[@r=$cell_id]/ss:v"/> </EXCEL_DATA-FIELD4> </item> </xsl:for-each> </LT_DATA> </asx:values> </asx:abap> </xsl:template> </xsl:transform> Data appearing in internal table - 12
13 Result 13
14 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. 14
XSL Elements. xsl:copy-of
XSL Elements The following elements are discussed on this page: xsl:copy-of xsl:value-of xsl:variable xsl:param xsl:if xsl:when xsl:otherwise xsl:comment xsl:import xsl:output xsl:template xsl:call-template
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
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
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
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
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
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
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.
XSLT. Patryk Czarnik. Institute of Informatics University of Warsaw. XML and Modern Techniques of Content Management 2010/11
XSLT Patryk Czarnik Institute of Informatics University of Warsaw XML and Modern Techniques of Content Management 2010/11 Patryk Czarnik 08 XSLT XML 2010/11 1 / 41 1 XSLT Features Idea Control flow instructions
Merge PDF files in ABAP
Applies to: SAP Net Weaver 7.0, ABAP. For more information, visit the ABAP homepage. Summary This article explains how to merge PDF files using an external non SAP solution from ABAP. Author: Krisztian
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
SAP BI Generic Extraction Using a Function Module
SAP BI Generic Extraction Using a Function Module Applies to: SAP BI Summary This article demonstrates a step-by-step process for doing generic extraction from R3 into BI using a Function Module. Author(s):
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
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
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
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
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
Hydrologic Modeling System HEC-HMS
Hydrologic Engineering Center Hydrologic Modeling System HEC-HMS Developing Reports Using Extensible Stylesheet Language December 2007 Approved for Public Release Distribution Unlimited Hydrologic Modeling
SAP TECHED 04 ABAP XML MAPPING ABAP 252. Exercises / Solutions KARSTEN BOHLMANN, SAP AG CHRISTOPH WEDLER, SAP AG PETER MCNULTY, SAP LABS
SAP TECHED 04 ABAP XML MAPPING ABAP 252 Exercises / Solutions KARSTEN BOHLMANN, SAP AG CHRISTOPH WEDLER, SAP AG PETER MCNULTY, SAP LABS SAP TECHED 04 1 ABAP XML MAPPING The context for the exercises in
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
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
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
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
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
Command Line Tool for View Manager View Manager 3.0
Command Line Tool for View Manager View Manager 3.0 The Command Line Tool for View Manger is a utility provided with the View Manager application that allows you to carry out administrative and analytical
GraphML Transformation
GraphML Transformation Ulrik Brandes and Christian Pich Department of Computer & Information Science, University of Konstanz, Germany {Ulrik.Brandes,Christian.Pich}@uni-konstanz.de Abstract. The efforts
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
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
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
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
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
ABAP. Finding Appropriate Abstractions for Business Application Programming. Horst Keller, SAP AG Tobias Wenner, SAP AG
ABAP Finding Appropriate Abstractions for Business Application Programming Horst Keller, SAP AG Tobias Wenner, SAP AG ABAP Finding Appropriate Abstractions for Business Application Programming Business
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.
Validating XML Data with an XML Schema
Validating XML Data with an XML Schema Date: May 2007 Version: DRAFT 0.2 1 Contents 1. XML Validation Concepts a. Concepts b. Errors c. Resources 2. Example: Validation with XMLSpy a. Downloading Spy b.
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
What is XSLT? XSLT: Using XML to transform. XSLT vs XQUERY. XSLT processing model. An XML based style sheet language for XML documents
What is XSLT? 2 XSLT: Using XML to transform other XML files Introduction to databases CSC343 Fall 2011 Ryan Johnson An XML based style sheet language for XML documents Tells web browser how to display
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
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
A Wrapper to Call Dynamically Function via RFC
A Wrapper to Call Dynamically Function via RFC Applies to: Any integration with SAP R/3 system and external applications. For more information, visit the ABAP homepage. Summary This article explains how
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
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
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
SDN Community Contribution
SDN Community Contribution (This is not an official SAP document.) Disclaimer & Liability Notice This document may discuss sample coding or other information that does not include SAP official interfaces
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
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
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
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
Message handling in SAP CRM Web UI
Message handling in SAP CRM Web UI Applies to: SAP CRM 7.0. For more information, visit Customer Relationship Management homepage Summary This article is aimed at understanding different ways of handling
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 - 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
Quick Guide EDI/IDoc Interfacing to SAP ECC from External System
Quick Guide EDI/IDoc Interfacing to SAP ECC from External System Applies to: Up to ECC 6.0. For more information, visit the ABAP homepage. Summary IDoc Interface: EDI Application Scenario The application
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
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
ALV List with Radio Buttons
ALV List with Radio Buttons Applies to: Application Server ABAP 6.40 Summary The program shows how to define radio buttons in ALV grid lists. Author(s): Uwe Schieferstein Company: Cirrus Consulting AG,
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 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
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
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
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
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
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
First step to Understand a Payroll Schema
First step to Understand a Payroll Schema Applies to: This article is relevant to SAP HCM module where Payroll is implemented. This applies to all SAP Releases. For more information; visit the Enterprise
Creating Mobile Applications on Top of SAP, Part 1
Creating Mobile Applications on Top of SAP, Part 1 Applies to: SAP ERP 6.0, NetWeaver > 7.10. For more information, visit the Mobile homepage. Summary This tutorial is starting point for a series of tutorials
Data Flow from LBWQ/SMQ1 to RSA7 in ECC and Delta Extraction in BI
Data Flow from LBWQ/SMQ1 to RSA7 in ECC and Delta Extraction in BI Applies to: SAP NetWeaver Business Warehouse (Formerly BI), Will also work on SAP BI 3.5. Business Intelligence homepage. Summary This
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
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
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
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
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
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
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
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
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
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
Customer Exit Variables in SAP BW/BI Reports First day of the Current/Previous Month
Customer Exit Variables in SAP BW/BI Reports First day of the Current/Previous Month Applies to: SAP BW 7.0 and will also work on BW 3.5. For more information, visit the EDW homepage. Summary This article
Application Logging in SAP Using ABAP
Application Logging in SAP Using ABAP Applies to: SAP R3/ISU/CRM ABAP side Summary This article explains how to create your own application logging program in ABAP Author(s): Ashim Chowdhury Company: Tata
Multi Level Purchase Order Release Strategy
Multi Level Purchase Order Release Strategy Applies to: SAP ECC 6.0. For more information, visit the Enterprise Resource Planning homepage. For more information, visit the Supply Chain Management homepage.
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
How to Create an ecatt?
How to Create an ecatt? Applies to: SAP ECC 5.0 and above Summary This is a step by step guide to create a CATT script in SAP ECC version 5 and upwards. It can be used by beginners to create a basic CATT
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
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
Integration of SAP R/3 with BO Universe Using Data Federator Connector
Integration of SAP R/3 with BO Universe Using Data Federator Connector Applies to: SAP R/3 and SAP BusinessObjects XI 3.1 Universe with Data Federator integration For more information, visit the Business
TIBCO iprocess Technology Plug-ins Release Notes
TIBCO iprocess Technology Plug-ins Release Notes Software Release 11.4.1 April 2014 Two-Second Advantage Important Information SOME TIBCO SOFTWARE EMBEDS OR BUNDLES OTHER TIBCO SOFTWARE. USE OF SUCH EMBEDDED
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
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
Step by Step Guide to Create a Generic Datasource Based on Infoset Query Populated Via External Program
Step by Step Guide to Create a Generic Datasource Based on Infoset Query Populated Via External Program Applies to: SAP ECC 5.0 and above releases For more information, visit the Business Intelligence
StreamServe Persuasion SP4 StreamServe Connect for SAP - Business Processes
StreamServe Persuasion SP4 StreamServe Connect for SAP - Business Processes User Guide Rev A StreamServe Persuasion SP4StreamServe Connect for SAP - Business Processes User Guide Rev A SAP, mysap.com,
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
Step by Step Guide to Fiscal Week and Fiscal Quarter
Step by Step Guide to Fiscal Week and Fiscal Quarter Applies to: SAP Netweaver BW. For more information, visit the Business Intelligence homepage. Summary In quite a few of the Sales requirement, users
Creating and Scheduling Publications for Dynamic Recipients on SAP Business Objects Enterprise
Creating and Scheduling Publications for Dynamic Recipients on SAP Business Objects Enterprise Applies to: SAP BusinessObjects Enterprise. For more information, visit the Business Objects homepage. Summary
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
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
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
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
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
XForms and OpenDocument in OpenOffice.org J. David Eisenberg
XForms and OpenDocument in OpenOffice.org J. David Eisenberg Let s say you re in charge of a database of chartered clubs for an amateur sports association. Club directors send you papers like the one in
Dynamic Authorization Concept and Role Assignment in BI
Dynamic Authorization Concept and Role Assignment in BI Applies to: This applies to SAP BI 3.X or SAP BI 7.X. For more details, visit the Business Intelligence homepage. Summary The document describes
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.
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
