ADD_FIXED_JOIN SAP Method of class CL_FPM_SADL_CRUD_GUIBB_PUBLIC
Below is documentation, parameters and attributes of ABAP Method ADD_FIXED_JOIN within SAP class CL_FPM_SADL_CRUD_GUIBB_PUBLIC. 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 CL_FPM_SADL_CRUD_GUIBB_PUBLIC into the relevant SAP transactions such as SE24 or SE80, and then selecting the method you are interested in.
Method Type - Instance
This is an Instance Method so needs to be instantiated first before you can access any of the methods. I.e. you need to create a local variable of TYPE ref to the class.The following technical details of method ADD_FIXED_JOIN can also be found below:
- Importing parameters
- Exporting parameters
- Changing parameters
- Returning parameters
- Exceptions
- Coding Examples
Parameters of Method ADD_FIXED_JOIN
.| Name | Type | Data Type | Description | Default Value |
| IV_ASSOCIATION | Importing | TYPE SADL_ENTITY_ASSOCIATION | Name of SADL_ENTITY_ASSOCIATION | |
| IV_ENTITY_ID | Importing | TYPE SADL_ENTITY_ID | Business Entity | |
| IV_EXCL_METADATA | Importing | TYPE FPM_SADL_JOIN_EXCLUDE_METADATA | FPM SADL: Exclude Join from Metadata | |
| IV_EXCL_TEXTSEARCH | Importing | TYPE FPM_SADL_JOIN_EXCL_TEXT_SEARCH | FPM SADL: Exclude Join from Metadata | |
| IV_PARENT_ID | Importing | TYPE STRING | ||
| IV_SUFFIX | Importing | TYPE DD_SUFFIX | Field Name Suffix in ABAP Dictionary | |
| RV_ID | Returning | TYPE STRING |
Exceptions of Method ADD_FIXED_JOIN
This method does not have any exceptionsExample ABAP coding
DATA: lo_class TYPE REF TO CL_FPM_SADL_CRUD_GUIBB_PUBLIC.
DATA: lv_IV_ASSOCIATION TYPE SADL_ENTITY_ASSOCIATION,
lv_IV_ENTITY_ID TYPE SADL_ENTITY_ID,
lv_IV_EXCL_METADATA TYPE FPM_SADL_JOIN_EXCLUDE_METADATA,
lv_IV_EXCL_TEXTSEARCH TYPE FPM_SADL_JOIN_EXCL_TEXT_SEARCH,
lv_IV_PARENT_ID TYPE STRING,
lv_IV_SUFFIX TYPE DD_SUFFIX,
lv_RV_ID TYPE STRING,
lv_other TYPE c.
CALL METHOD lo_class=>ADD_FIXED_JOIN(
EXPORTING
IV_ASSOCIATION = lv_IV_ASSOCIATION
IV_ENTITY_ID = lv_IV_ENTITY_ID
IV_EXCL_METADATA = lv_IV_EXCL_METADATA
IV_EXCL_TEXTSEARCH = lv_IV_EXCL_TEXTSEARCH
IV_PARENT_ID = lv_IV_PARENT_ID
IV_SUFFIX = lv_IV_SUFFIX
RECEIVING
RV_ID = lv_RV_ID )
"Alternate coding for Method Call with returning parameter
lv_RV_ID = lo_class=>ADD_FIXED_JOIN(
EXPORTING
IV_ASSOCIATION = lv_IV_ASSOCIATION
IV_ENTITY_ID = lv_IV_ENTITY_ID
IV_EXCL_METADATA = lv_IV_EXCL_METADATA
IV_EXCL_TEXTSEARCH = lv_IV_EXCL_TEXTSEARCH
IV_PARENT_ID = lv_IV_PARENT_ID
IV_SUFFIX = lv_IV_SUFFIX ).
Links to Related Class(s)
CL_FPM_S...Full list of available SAP object classes
Search for further information about these or an SAP related objects