Offsetting Account Description in FBL3N and FAGLL03 GL Line Item Display Reports
|
|
|
- Tamsin Daniel
- 9 years ago
- Views:
Transcription
1 Offsetting Account Description in FBL3N and FAGLL03 GL Line Item Display Reports Applies to: Organizations using SAP which need an additional field to be displayed in FBL3N & FAGLL03 reports. Below configuration is based on SAP ECC 6.0. The configuration can also be held as reference for R/3 470 release and 46C release. For more information, visit the Enterprise Resource Planning homepage. Summary Standard BTE functionality provides Offset Account Number & Offset Account Type. Additional fields can be pulled into the report with little modification, for a better reconciliation when displaying GL Line items. Author: Imran Mohammad Khan. K Company: YASH Technologies Created on: 31 March 2011 Author Bio Imran Khan is currently working as an FICO Consultant with YASH Technologies; Hyderabad SAP AG 1
2 Table of Contents Overview... 3 Display GL Line Items... 3 BTE 1650 (Standard Functionality)... 4 BTE 1650 with Additional Field... 6 BAdi 'Z_FAGL_ITEMS_CH_DATA' Related Content Disclaimer and Liability Notice SAP AG 2
3 Overview FBL3N and FAGLL03 for displaying GL Line items are the most frequently used reports. Most of the customers have a requirement of having an additional field in the report apart from the special fields in the line layout variant. This article explains the procedure for adding an additional field in the change layout of these reports. Users can create a layout and run the report using the layout. Display GL Line Items T. Code: FBL3N GL Line Item Display Output of FBL3N 2011 SAP AG 3
4 BTE 1650 (Standard Functionality) SAP provides Offset Account Number (GKONT) & Offset Account Type (GKART) fields to be displayed in the output of the report. This can be achieved using the BTE functionality in Financial Accounting. Use T. Code: FIBF Or Menu Path IMG Financial Accounting (New) Financial Accounting Global Settings (New) Tools Customer Enhancements Business Transaction Events The activation check box when checked lets the fields to appear in the layout. Once the product of a customer is activated you need to create a P/S Module of a customer as shown in the above screen shot using T. Code: FIBF Create new entries in the P/S module of a customer for BTE Event and assign the product activated earlier, using T. Code: FIBF. Also assign the respective function module (LINE_ITEMS_GET_GKONT) and Save. The following logic is used to populate the values in the required fields of the report. FUNCTION LINE_ITEMS_GET_GKONT. *" *"*"Lokale Schnittstelle: *" IMPORTING *" VALUE(I_POSTAB) LIKE RFPOS STRUCTURE RFPOS *" EXPORTING *" VALUE(E_POSTAB) LIKE RFPOS STRUCTURE RFPOS *" E_POSTAB = I_POSTAB SAP AG 4
5 CALL FUNCTION 'GET_GKONT' EXPORTING BELNR = I_POSTAB-BELNR BUKRS = I_POSTAB-BUKRS BUZEI = I_POSTAB-BUZEI GJAHR = I_POSTAB-GJAHR GKNKZ = '3' IMPORTING GKONT = E_POSTAB-GKONT KOART = E_POSTAB-GKART EXCEPTIONS BELNR_NOT_FOUND = 1 BUZEI_NOT_FOUND = 2 GKNKZ_NOT_FOUND = 3 OTHERS = 4. IF SY-SUBRC <> 0. * MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO * WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4. ENDIF. ENDFUNCTION. Once the BTE is activated, the standard fields GKONT & GKART appear in the Change Layout of the report SAP AG 5
6 Execute GL Line Item Display report using FBL3N to pull the Offset Account Number (GKONT) and Offset Account Type (GKART) from the change layout. BTE 1650 with Additional Field To add an additional field in the report, following steps need to be done in ABAP. In our case we added Offsetting Account Text in the report layout. Append the RFPOS & RFPOSX structures using T. Code: SE11 as shown in the following screen shots below SAP AG 6
7 Once the RFPOS & RFPOSX structures are appended, you need to ensure that both the structures are ACTIVE SAP AG 7
8 One Important step to be executed; Using T. Code: SE38 to regenerate the program RFPOSEXTEND After the program regeneration create another product of a customer to include the additional field. The product of the customer with additional field logic should remain activated and the one for the standard fields can optionally be deactivated. Create new entries in the P/S module of a customer for BTE Event and assign the product (OFFACTXT) created and activated earlier, using T. Code: FIBF. Create a new function module Z_LINE_ITEMS_GET_GKONT and assign it to BTE and save SAP AG 8
9 Z_LINE_ITEMS_GET_GKONT The following logic below is used to populate the values in the required fields of the report. FUNCTION Z_LINE_ITEMS_GET_GKONT. *" *"*"Local Interface: *" IMPORTING *" VALUE(I_POSTAB) LIKE RFPOS STRUCTURE RFPOS *" EXPORTING *" VALUE(E_POSTAB) LIKE RFPOS STRUCTURE RFPOS *" E_POSTAB = I_POSTAB. CALL FUNCTION 'GET_GKONT' EXPORTING BELNR = I_POSTAB-BELNR BUKRS = I_POSTAB-BUKRS BUZEI = I_POSTAB-BUZEI GJAHR = I_POSTAB-GJAHR GKNKZ = '3' IMPORTING GKONT = E_POSTAB-GKONT KOART = E_POSTAB-GKART EXCEPTIONS BELNR_NOT_FOUND = 1 BUZEI_NOT_FOUND = 2 GKNKZ_NOT_FOUND = 3 OTHERS = 4. IF SY-SUBRC <> 0. * MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO * WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4. Else. tables: skat,kna1,lfa1. Clear e_postab-zzgkont_ltxt. * Get Offset Account Description Based on Account Type if sy-tcode = 'FBL3N'. * In case of G/L Account if e_postab-gkart = 'S'. select single * from skat where spras = sy-langu and saknr = e_postab-gkont. if sy-subrc = 0. e_postab-zzgkont_ltxt = skat-txt50. * In case of Customer elseif e_postab-gkart = 'D'. select single * from kna1 where kunnr = e_postab-gkont. if sy-subrc = SAP AG 9
10 e_postab-zzgkont_ltxt = kna1-name1. * In case vendor elseif e_postab-gkart = 'K'. select single * from lfa1 where lifnr = e_postab-gkont. if sy-subrc = 0. e_postab-zzgkont_ltxt = lfa1-name1. ENDIF. ENDFUNCTION. The report is executed; showing the standard Offset Account Number, Offset Account Type and the additional field Offsetting Account Description that was added SAP AG 10
11 BAdi 'Z_FAGL_ITEMS_CH_DATA' In SAP ECC 6.0 you can use FAGLL03 in addition to FBL3N for GL account line item display. For displaying offset account info in FAGLL03 report, you must create and activate an implementation for the 'FAGL_ITEMS_CH_DATA' BAdI. Following steps need to be carried out for creating and activating the BAdi implementation. Call transaction SE19. Choose Classic BAdi and enter the BAdi Name as 'FAGL_ITEMS_CH_DATA' and click on Create Impl. Button and create a new implementation. As the Definition name select 'FAGL_ITEMS_CH_DATA'. Enter an Implementation Name Z_FAGL_ITEMS_CH_DATA as shown in the above screen shot SAP AG 11
12 On the 'Interface' tab select the 'CHANGE_ITEMS' method as shown in the screen shot above. Logic for getting Offset Account Information in FAGLL03 report. method IF_EX_FAGL_ITEMS_CH_DATA~CHANGE_ITEMS. * Added Additional fields Offset A/C, Offset A/C type to Transaction * FAGLL03 DATA: wa_items TYPE faglposx. LOOP AT ct_items INTO wa_items. CALL FUNCTION 'GET_GKONT' EXPORTING belnr = wa_items-belnr bukrs = wa_items-bukrs buzei = wa_items-buzei gjahr = wa_items-gjahr gknkz = '3' IMPORTING gkont = wa_items-gkont koart = wa_items-gkart EXCEPTIONS belnr_not_found = 1 buzei_not_found = 2 gknkz_not_found = 3 OTHERS = 4. IF sy-subrc = 0. * Get Offset Account Description Based on Account Type * In case of G/L Account Data: w_txt50 type txt50, w_name1 type name1. Clear: wa_items-zzgkont_ltxt, w_txt50, 2011 SAP AG 12
13 w_name1. if wa_items-gkart = 'S'. select single txt50 from skat into w_txt50 where spras = sy-langu and saknr = wa_items-gkont. if sy-subrc = 0. wa_items-zzgkont_ltxt = w_txt50. * In case of Customer elseif wa_items-gkart = 'D'. select single name1 from kna1 into w_name1 where kunnr = wa_items-gkont. if sy-subrc = 0. wa_items-zzgkont_ltxt = w_name1. * In case vendor elseif wa_items-gkart = 'K'. select single name1 from lfa1 into w_name1 where lifnr = wa_items-gkont. if sy-subrc = 0. wa_items-zzgkont_ltxt = w_name1. MODIFY ct_items FROM wa_items. ENDIF. ENDLOOP. endmethod. The report is executed; showing the standard Offset Account Number, Offset Account Type and the additional field Offsetting Account Description that was added SAP AG 13
14 Related Content Line item: Display of offsetting a/c information Display of offsetting account information For more information, visit the Enterprise Resource Planning homepage SAP AG 14
15 Disclaimer and Liability Notice This document may discuss sample coding or other information that does not include SAP official interfaces and therefore is not supported by SAP. Changes made based on this information are not supported and can be overwritten during an upgrade. SAP will not be held liable for any damages caused by using or misusing the information, code or methods suggested in this document, and anyone using these methods does so at his/her own risk. SAP offers no guarantees and assumes no responsibility or liability of any type with respect to the content of this technical article or code sample, including any liability resulting from incompatibility between the content within this document and the materials and services offered by SAP. You agree that you will not hold, or seek to hold, SAP responsible or liable with respect to the content of this document SAP AG 15
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
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
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
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
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
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
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
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
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):
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
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
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
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
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
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
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
Display Popup Window and Dialog Box in ALV
Display Popup Window and Dialog Box in ALV Applies to: SAP ECC 6.0, SAP Net weaver 2004s. Summary This document explains how to display an ALV in a popup and dialog box.from the popup the required entries
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
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
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
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 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
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
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.
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
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
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
SAP CRM System 6.0/7.0. For more information, visit the Customer Relationship Management homepage
Applies to: SAP CRM System 6.0/7.0. For more information, visit the Customer Relationship Management homepage Summary This article explains how to customize the Fact Sheet for different business roles.
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
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
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
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
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
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 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
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
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
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
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
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
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
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
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
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
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
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
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
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
Changing Partner s Address Data of the Sales Order
Changing Partner s Address Data of the Sales Order Applies to: SAP ECC 6.0. For more information, visit the ABAP homepage. Summary This article explains how to change partner s address data in sales order
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
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
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,
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
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
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
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
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
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
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
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
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
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
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.
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
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
Currency Conversion using Variables in SAP BI -Reporting
Currency Conversion using Variables in SAP BI -Reporting Applies to: SAP BI 7.0. For more information, visit the Business Intelligence homepage. Summary This Article gives you a brief idea on how to do
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.
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
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
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
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.
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
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
SDN Contribution Beginners guide to CRM Interaction Center (IC) Winclient setup
SDN Contribution Beginners guide to CRM Interaction Center (IC) Winclient setup 2006 SAP AG 1 Applies to: SAP CRM 4.0 and higher Summary The Interaction Center forms the foundation for collaboration and
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
Valuation of Materials using FIFO Method
Valuation of Materials using FIFO Method Applies to: 4.7EE, ECC 6.0 For more information, visit the Enterprise Resource Planning homepage. Summary This article explains the Configuration and Process steps
SAP CRM Middleware Configurations
SAP CRM Middleware Configurations Applies to: SAP CRM Middleware Configurations. For more information, visit the Customer Relationship Management homepage. Summary This whitepaper elaborates the steps
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
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
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
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
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
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
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
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
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
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
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
The intention behind SAP New GL Configuration is to Combine the features of
Why New GL???? The intention behind SAP New GL Configuration is to Combine the features of GL, Profit Center Accounting, Reconciliation Ledger, Special Purpose Ledger, Business Area, Cost of Sale Accounting.
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
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
Withholding Tax Configuration Country India Version
Withholding Tax Configuration Country India Version Applies to: Organization within India, which wants to get withholding tax computed on Vendor Invoices. As pointed in help.sap.com - CIN does not contain
Consuming Services in SOA Manager
Consuming Services in SOA Manager Applies to: ECC 60. PI 7.1. For more information, visit the SOA Management homepage. Summary Here you ll find a little example of how you can consume Enterprise Services
BOM Header and Item Extraction in SAP - Business Intelligence
BOM Header and Item Extraction in SAP - Business Intelligence Applies to: SAP BW 3.5 and SAP BI NW 7.0. For more information, visit the Business Intelligence homepage. Summary The purpose of this paper
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
Market Basket Price Calculation in Retail
Market Basket Price Calculation in Retail Applies to: SAP IS Retail 6.0 (release number, SP, etc.) to which this article or code sample applies. For more information, visit the Business Process Expert
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
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
