SAP RMSA104_PP_OBJ_RELATION_CHECK Function Module for NOTRANSL: RMS-ATL: Prüfroutine für Prozessparameter-Relationen
RMSA104_PP_OBJ_RELATION_CHECK is a standard rmsa104 pp obj relation check SAP function module available within SAP R/3 or S/4 Hana systems, depending on your version and release level. It is used for NOTRANSL: RMS-ATL: Prüfroutine für Prozessparameter-Relationen processing and below is the pattern details for this FM, showing its interface including any import and export parameters, exceptions etc. there is also a full "cut and paste" ABAP pattern code example, along with implementation ABAP coding, documentation and contribution comments specific to this or related objects.
See here to view full function module documentation and code listing for rmsa104 pp obj relation check FM, simply by entering the name RMSA104_PP_OBJ_RELATION_CHECK into the relevant SAP transaction such as SE37 or SE38.
Function Group: RMSA104
Program Name: SAPLRMSA104
Main Program: SAPLRMSA104
Appliation area:
Release date: N/A
Mode(Normal, Remote etc): Normal Function Module
Update:

Function RMSA104_PP_OBJ_RELATION_CHECK pattern details
In-order to call this FM within your sap programs, simply using the below ABAP pattern details to trigger the function call...or see the full ABAP code listing at the end of this article. You can simply cut and paste this code into your ABAP progrom as it is, including variable declarations.CALL FUNCTION 'RMSA104_PP_OBJ_RELATION_CHECK'"NOTRANSL: RMS-ATL: Prüfroutine für Prozessparameter-Relationen.
EXPORTING
I_APPL_CONTEXT = "Application Area of Table-Based Value Assignment
IS_ALVOUTTAB = "ALV Data Output
IT_PP_GUID_TAB = "Process Parameter GUID
IO_DATA_CONTAINER = "RMS-TLS: Data Container
IMPORTING
E_GUID = "
ES_ALVOUTTAB = "EHS-BAS: ALV Data Output
EXCEPTIONS
COMBINATION_INVALID = 1
IMPORTING Parameters details for RMSA104_PP_OBJ_RELATION_CHECK
I_APPL_CONTEXT - Application Area of Table-Based Value Assignment
Data type: EHSBE_VAI_APPL_CONTEXTOptional: No
Call by Reference: No ( called with pass by value option)
IS_ALVOUTTAB - ALV Data Output
Data type: EHSBS_API_VAI_ALVOUTOptional: No
Call by Reference: No ( called with pass by value option)
IT_PP_GUID_TAB - Process Parameter GUID
Data type: RMSATY_PP_GUIDOptional: No
Call by Reference: No ( called with pass by value option)
IO_DATA_CONTAINER - RMS-TLS: Data Container
Data type: CL_RMSA_PP_BADI_DATA_CONTAINEROptional: No
Call by Reference: Yes
EXPORTING Parameters details for RMSA104_PP_OBJ_RELATION_CHECK
E_GUID -
Data type: PVS_GUIDOptional: No
Call by Reference: No ( called with pass by value option)
ES_ALVOUTTAB - EHS-BAS: ALV Data Output
Data type: EHSBS_API_VAI_ALVOUTOptional: No
Call by Reference: No ( called with pass by value option)
EXCEPTIONS details
COMBINATION_INVALID -
Data type:Optional: No
Call by Reference: Yes
Copy and paste ABAP code example for RMSA104_PP_OBJ_RELATION_CHECK Function Module
The ABAP code below is a full code listing to execute function module POPUP_TO_CONFIRM including all data declarations. The code uses the original data declarations rather than the latest in-line data DECLARATION SYNTAX but I have included an ABAP code snippet at the end to show how declarations would look using the newer method of declaring data variables on the fly. This will allow you to compare and fully understand the new inline method. Please note some of the newer syntax such as the @DATA is not available until a later 4.70 service pack (SP8), which i why i have stuck to the origianl for this example.| DATA: | ||||
| lv_e_guid | TYPE PVS_GUID, " | |||
| lv_i_appl_context | TYPE EHSBE_VAI_APPL_CONTEXT, " | |||
| lv_combination_invalid | TYPE EHSBE_VAI_APPL_CONTEXT, " | |||
| lv_es_alvouttab | TYPE EHSBS_API_VAI_ALVOUT, " | |||
| lv_is_alvouttab | TYPE EHSBS_API_VAI_ALVOUT, " | |||
| lv_it_pp_guid_tab | TYPE RMSATY_PP_GUID, " | |||
| lv_io_data_container | TYPE CL_RMSA_PP_BADI_DATA_CONTAINER. " |
|   CALL FUNCTION 'RMSA104_PP_OBJ_RELATION_CHECK' "NOTRANSL: RMS-ATL: Prüfroutine für Prozessparameter-Relationen |
| EXPORTING | ||
| I_APPL_CONTEXT | = lv_i_appl_context | |
| IS_ALVOUTTAB | = lv_is_alvouttab | |
| IT_PP_GUID_TAB | = lv_it_pp_guid_tab | |
| IO_DATA_CONTAINER | = lv_io_data_container | |
| IMPORTING | ||
| E_GUID | = lv_e_guid | |
| ES_ALVOUTTAB | = lv_es_alvouttab | |
| EXCEPTIONS | ||
| COMBINATION_INVALID = 1 | ||
| . " RMSA104_PP_OBJ_RELATION_CHECK | ||
ABAP code using 7.40 inline data declarations to call FM RMSA104_PP_OBJ_RELATION_CHECK
The below ABAP code uses the newer in-line data declarations. This allows you to see the coding differences/benefits of the later inline syntax. Please note some of the newer syntax below, such as the @DATA is not available until 4.70 EHP 8.Search for further information about these or an SAP related objects