SAP ABAP IMG Activity W_FIP_017 (BAdI: Extract Data From BI)
Hierarchy
SAP_APPL (Software Component) Logistics and Accounting
   MM-PUR-FIP (Application Component) Perishables Procurement
     FIP_DDIC (Package) DDIC package for Fresh Item Procurement
IMG Activity
ID W_FIP_017 BAdI: Extract Data From BI  
Transaction Code S_E4A_94000197   (empty) 
Created on 20080611    
Customizing Attributes W_FIP_017   BAdI: For Extracting Data From BI 
Customizing Activity W_FIP_017   BAdI: For Extracting Data From BI 
Document
Document Class SIMG   Hypertext: Object Class - Class to which a document belongs.
Document Name FIP_BADI_BI_EXTRACTION_BAL    

Use

This technical Business Add-In (BAdI) is part of a business abstraction layer used internally by SAP. It is not intended for reuse by customers. This technology enables individual functionality or complete applications to be called either by back-end functions or enterprise services. It is used in the R_FIP_BUFFER_STATISTICAL_DATA report and in the WDC_FIP_STATISTICAL_DATA component, which is shown in the Procurement List application.

This BAdI retrieves historical data stored in the BI system for the given inputs, called in the buffer report, or dynamically called from the Procurement List application.

This BAdI contains the following methods:

  • GET_STATISTICAL_DATA.

    This method exports a table ET_BI_RESULT of type FIP_T_BI_WREX_DATA, which splits up the results of each row of the IT_STATISTICAL_DATA table with the various characteristics indexed using a record number (RECNO).

Requirements

The BI System must be configured in Customizing by choosing Materials Management -> Purchasing -> Perishables Procurement -> Technical Settings -> Maintain BI System.

Standard settings

As for all BAdIs in the ES_FIP_BAL enhancement spot, a developer should never use the GET_BADI call to create an instance of this BAdI. Rather, the developer should first get an instance of the CL_FIP_BAL_FACTORY class and then use its GET_BADI method to instantiate the needed BAdI.

Example - Instantiation of the FIP_BADI_BI_EXTRACTION_BAL BAdI

DATA:

lo_bal_factory        TYPE REF TO cl_fip_bal_factory,

lo_badi_bi_extraction    TYPE REF TO fip_badi_bi_extraction_bal.

" Get instance of the BAL factory

cl_fip_bal_factory=>get_instance(

IMPORTING eo_factory = lo_bal_factory ).

" Instantiate the FIP_BADI_BI_EXTRACTION_BAL BAdI

lo_badi_bi_extraction ?= lo_bal_factory->get_badi(

cl_fip_const=>co_bi_extraction_bal ).

This BAdI was designed to run only one BAdI implementation. It uses a filter named ACCESS_TYPE to determine which implementation is to be executed. Each implementation must have a different filter. In the GET_BADI call to the BAL factory, the value of ACCESS_TYPE is automatically determined and set.

All possible values of ACCESS_TYPE:

  • 0BA

    Implementation using BAPIs and/or direct database access

  • 0ES

    Implementation using enterprise services, which allows access to different back-ends in case used functionalities are available in different systems.

  • Cnn (where nn is a one-digit or two-digit number)

    Customer implementation

The BAL factory class determines the value of the ACCESS_TYPE filter by going through the following process:

  1. Get the value from the FIP_C_BAL_BADI client-specific customizing table.
  2. If a value was not yet obtained, get the value from the FIP_C_BAL_CONF client-specific customizing table.
  3. If a value was not yet obtained, the default value as determined by the BAL factory will be used. In ERP 6.0 EHP4, this value is 0BA.

As of ERP 6.0 EHP4, 0BA and 0ES implementations exists for each BAdI that belongs to the ES_FIP_BAL enhancement spot.

Activities

For information about implementing BAdIs as part of the Enhancement Concept, see SAP Library for SAP NetWeaver under BAdIs - Embedding in the Enhancement Framework.

Example

Business Attributes
ASAP Roadmap ID 153   Design enhancements 
Mandatory / Optional 2   Optional activity 
Critical / Non-Critical 2   Non-critical 
Country-Dependency A   Valid for all countries 
Maintenance Objects
Maintenance object type E   Business Add-In - Definition 
History
Last changed by/on SAP  20080703 
SAP Release Created in 604