INSERT_JOINFIELD SAP Method Add one field name to joinfield collection









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

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


Parameters of Method INSERT_JOINFIELD

.

NameTypeData TypeDescriptionDefault Value
IX_DELETE_DUPLICATESImportingTYPE
BOOLE_D
'X' if duplicates of fieldnames is to be deleted
IX_ENHANCE_FIELDImportingTYPE
BOOLE_D
'X' if ASFIELDNAME will get alias
I_ALIASNAMEImportingTYPE
FRBIOA_FPIA_FIELDNAME
Alias for field (e.g. K)
I_FIELDNAMEImportingTYPE
FRBIOA_FPIA_FIELDNAME
Field name
I_TABLENAMEImportingTYPE
TABNAME
Table name
CT_FIELDLISTChangingTYPE
FRBIOA_FPIA_T_FIELDLIST
BW: table of field names
CT_JOINFIELDSChangingTYPE
FRBIOA_FPIA_T_JOINFIELDS
BW: table of join fields



Exceptions of Method INSERT_JOINFIELD

This method does not have any exceptions

Example ABAP coding


DATA: lv_CT_FIELDLIST TYPE FRBIOA_FPIA_T_FIELDLIST,
lv_CT_JOINFIELDS TYPE FRBIOA_FPIA_T_JOINFIELDS,
lv_IX_DELETE_DUPLICATES TYPE BOOLE_D,
lv_IX_ENHANCE_FIELD TYPE BOOLE_D,
lv_I_ALIASNAME TYPE FRBIOA_FPIA_FIELDNAME,
lv_I_FIELDNAME TYPE FRBIOA_FPIA_FIELDNAME,
lv_I_TABLENAME TYPE TABNAME,
lv_other TYPE c.

CALL METHOD FRBIOA_CL_FPIA_BWEXTRACT=>INSERT_JOINFIELD(
EXPORTING
IX_DELETE_DUPLICATES = lv_IX_DELETE_DUPLICATES
IX_ENHANCE_FIELD = lv_IX_ENHANCE_FIELD
I_ALIASNAME = lv_I_ALIASNAME
I_FIELDNAME = lv_I_FIELDNAME
I_TABLENAME = lv_I_TABLENAME
CHANGING
CT_FIELDLIST = lv_CT_FIELDLIST
CT_JOINFIELDS = lv_CT_JOINFIELDS ).

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!