RENAME_JOINFIELD SAP Method Rename join field and corresponding field list entry









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

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


Parameters of Method RENAME_JOINFIELD

.

NameTypeData TypeDescriptionDefault Value
IT_FIELDNMImportingTYPE
FRBIOA_FPIA_FIELDNAME
DGP field name to modify
IT_NEWASFIELDNAMEImportingTYPE
FRBIOA_FPIA_FIELDNAME
New DGP field name as ASFIELDNAME
IT_TABLENAMEImportingTYPE
TABNAME
Table Name to modify (wildcard supported)
IX_KEEP_ENHANCE_FIELDSImportingTYPE
BOOLE_D
'X' if field alias (e.g. K_) to keep originally setting
CT_FIELDLISTChangingTYPE
FRBIOA_FPIA_T_FIELDLIST
OLTP field list (SELECT)
CT_JOINFIELDSChangingTYPE
FRBIOA_FPIA_T_JOINFIELDS
BW: table of join fields



Exceptions of Method RENAME_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_IT_FIELDNM TYPE FRBIOA_FPIA_FIELDNAME,
lv_IT_NEWASFIELDNAME TYPE FRBIOA_FPIA_FIELDNAME,
lv_IT_TABLENAME TYPE TABNAME,
lv_IX_KEEP_ENHANCE_FIELDS TYPE BOOLE_D,
lv_other TYPE c.

CALL METHOD FRBIOA_CL_FPIA_BWEXTRACT=>RENAME_JOINFIELD(
EXPORTING
IT_FIELDNM = lv_IT_FIELDNM
IT_NEWASFIELDNAME = lv_IT_NEWASFIELDNAME
IT_TABLENAME = lv_IT_TABLENAME
IX_KEEP_ENHANCE_FIELDS = lv_IX_KEEP_ENHANCE_FIELDS
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!