TRANSFORM_BW_TO_OLTP SAP Method Transform selection fields (info pack.) from BW to OLTP









Below is documentation, parameters and attributes of ABAP Method TRANSFORM_BW_TO_OLTP within SAP class FRBIOA_CL_FPIA_BWEXTRACT. There is also a number of example ABAP code snipts to help you use the functionality of this method.

This method is available within SAP systems depending on your version and release level, you can view further information by entering the class name FRBIOA_CL_FPIA_BWEXTRACT into the relevant SAP transactions such as SE24 or SE80, and then selecting the method you are interested in.


Method Type - Static

This is a Static Method so you can call it directly

The following technical details of method TRANSFORM_BW_TO_OLTP can also be found below:

  • Importing parameters
  • Exporting parameters
  • Changing parameters
  • Returning parameters
  • Exceptions
  • Coding Examples


Parameters of Method TRANSFORM_BW_TO_OLTP

.

NameTypeData TypeDescriptionDefault Value
IT_MANDFIELDSImportingTYPE
FRBIOA_FPIA_T_MAND_FIELDS
Mandatory fields
IT_OLAP_FIELDSImportingTYPE
SBIWA_T_FIELDS
OLAP fields (info package/BW)
IT_TABLEALIASImportingTYPE
FRBIOA_FPIA_T_JOINTABLES
List of tables/alias for select join
IX_DELETE_DUPLICATESImportingTYPE
BOOLE_D
'X' to eliminate duplicate field names
I_TARGETSTRUCTUREImportingTYPE
TABNAME
Target extractor structure
ET_FIELDLISTExportingTYPE
FRBIOA_FPIA_T_FIELDLIST
OLTP field list (SELECT)
ET_JOINFIELDSExportingTYPE
FRBIOA_FPIA_T_JOINFIELDS
BW: table of join fields
EX_ALLMANDFIELDS_FOUNDExportingTYPE
BOOLE_D
'X' if all mandatory fields are found



Exceptions of Method TRANSFORM_BW_TO_OLTP

This method does not have any exceptions

Example ABAP coding


DATA: lv_ET_FIELDLIST TYPE FRBIOA_FPIA_T_FIELDLIST,
lv_ET_JOINFIELDS TYPE FRBIOA_FPIA_T_JOINFIELDS,
lv_EX_ALLMANDFIELDS_FOUND TYPE BOOLE_D,
lv_IT_MANDFIELDS TYPE FRBIOA_FPIA_T_MAND_FIELDS,
lv_IT_OLAP_FIELDS TYPE SBIWA_T_FIELDS,
lv_IT_TABLEALIAS TYPE FRBIOA_FPIA_T_JOINTABLES,
lv_IX_DELETE_DUPLICATES TYPE BOOLE_D,
lv_I_TARGETSTRUCTURE TYPE TABNAME,
lv_other TYPE c.

CALL METHOD FRBIOA_CL_FPIA_BWEXTRACT=>TRANSFORM_BW_TO_OLTP(
EXPORTING
IT_MANDFIELDS = lv_IT_MANDFIELDS
IT_OLAP_FIELDS = lv_IT_OLAP_FIELDS
IT_TABLEALIAS = lv_IT_TABLEALIAS
IX_DELETE_DUPLICATES = lv_IX_DELETE_DUPLICATES
I_TARGETSTRUCTURE = lv_I_TARGETSTRUCTURE
IMPORTING
ET_FIELDLIST = lv_ET_FIELDLIST
ET_JOINFIELDS = lv_ET_JOINFIELDS
EX_ALLMANDFIELDS_FOUND = lv_EX_ALLMANDFIELDS_FOUND ).

Links to Related Class(s)

FRBIOA_C...
Full list of available SAP object classes

Search for further information about these or an SAP related objects



Comments on this SAP object

What made you want to lookup this SAP object? Please tell us what you were looking for and anything you would like to be included on this page!