GET_EXTRACTION_FIELDS SAP Method Get field name with alias and data type references









Below is documentation, parameters and attributes of ABAP Method GET_EXTRACTION_FIELDS 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 GET_EXTRACTION_FIELDS can also be found below:

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


Parameters of Method GET_EXTRACTION_FIELDS

.

NameTypeData TypeDescriptionDefault Value
IT_TABLEALIASImportingTYPE
FRBIOA_FPIA_T_JOINTABLES
Table / alias for join fields
IX_DELETE_DUPLICATESImportingTYPE
BOOLE_D
'X' if duplicates of fieldnames is to be deleted
I_TARGETSTRUCTUREImportingTYPE
TABNAME
Target structure
ET_JOINFIELDSExportingTYPE
FRBIOA_FPIA_T_JOINFIELDS
BW: Table of join fields
EX_ALLMANDFIELDS_FOUNDExportingTYPE
BOOLE_D
'X' if all mandatory fields found in source tables
CT_MANDATORY_FIELDSChangingTYPE
FRBIOA_FPIA_T_MAND_FIELDS
Mandatory extraction fields, optionally to be considered



Exceptions of Method GET_EXTRACTION_FIELDS

This method does not have any exceptions

Example ABAP coding


DATA: lv_CT_MANDATORY_FIELDS TYPE FRBIOA_FPIA_T_MAND_FIELDS,
lv_ET_JOINFIELDS TYPE FRBIOA_FPIA_T_JOINFIELDS,
lv_EX_ALLMANDFIELDS_FOUND TYPE BOOLE_D,
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=>GET_EXTRACTION_FIELDS(
EXPORTING
IT_TABLEALIAS = lv_IT_TABLEALIAS
IX_DELETE_DUPLICATES = lv_IX_DELETE_DUPLICATES
I_TARGETSTRUCTURE = lv_I_TARGETSTRUCTURE
IMPORTING
ET_JOINFIELDS = lv_ET_JOINFIELDS
EX_ALLMANDFIELDS_FOUND = lv_EX_ALLMANDFIELDS_FOUND
CHANGING
CT_MANDATORY_FIELDS = lv_CT_MANDATORY_FIELDS ).

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!