JOIN SAP Method of class CL_FPM_SADL_BUILDER
Below is documentation, parameters and attributes of ABAP Method JOIN within SAP class CL_FPM_SADL_BUILDER. 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_BUILDER 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 JOIN can also be found below:
- Importing parameters
- Exporting parameters
- Changing parameters
- Returning parameters
- Exceptions
- Coding Examples
Parameters of Method JOIN
.| Name | Type | Data Type | Description | Default Value |
| IV_ASSOCIATION | Importing | TYPE SADL_ENTITY_ASSOCIATION | Name of SADL_ENTITY_ASSOCIATION | |
| IV_JOIN_ID | Importing | TYPE STRING | ||
| IV_PARENT_JOIN_ID | Importing | TYPE STRING | ||
| IV_SUFFIX | Importing | TYPE DD_SUFFIX | Field name suffix in the ABAP/4 Dictionary | |
| 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 |
Exceptions of Method JOIN
CX_SADL_STATIC - External errors during SADL processingExample ABAP coding
DATA: lo_class TYPE REF TO CL_FPM_SADL_BUILDER.
DATA: lv_IV_ASSOCIATION TYPE SADL_ENTITY_ASSOCIATION,
lv_IV_JOIN_ID TYPE STRING,
lv_IV_PARENT_JOIN_ID TYPE STRING,
lv_IV_SUFFIX TYPE DD_SUFFIX,
lv_IV_EXCL_METADATA TYPE FPM_SADL_JOIN_EXCLUDE_METADATA,
lv_IV_EXCL_TEXTSEARCH TYPE FPM_SADL_JOIN_EXCL_TEXT_SEARCH,
lv_other TYPE c.
CALL METHOD lo_class=>JOIN(
EXPORTING
IV_ASSOCIATION = lv_IV_ASSOCIATION
IV_JOIN_ID = lv_IV_JOIN_ID
IV_PARENT_JOIN_ID = lv_IV_PARENT_JOIN_ID
IV_SUFFIX = lv_IV_SUFFIX
IV_EXCL_METADATA = lv_IV_EXCL_METADATA
IV_EXCL_TEXTSEARCH = lv_IV_EXCL_TEXTSEARCH ).
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