SAP RELM_API_REGISTER_CRE Function Module for
RELM_API_REGISTER_CRE is a standard relm api register cre SAP function module available within SAP R/3 or S/4 Hana systems, depending on your version and release level. It is used to perform a specific ABAP function and below is the pattern details, 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 relm api register cre FM, simply by entering the name RELM_API_REGISTER_CRE into the relevant SAP transaction such as SE37 or SE38.
Function Group: RELM_BAPI_REGISTER
Program Name: SAPLRELM_BAPI_REGISTER
Main Program: SAPLRELM_BAPI_REGISTER
Appliation area:
Release date: N/A
Mode(Normal, Remote etc): Normal Function Module
Update:

Function RELM_API_REGISTER_CRE 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 'RELM_API_REGISTER_CRE'".
EXPORTING
IO_LAND_REGISTER = "
* IT_REGISTER = "
* IT_REG_ADD = "
* IT_REG_BTYPE = "
* IT_REG_OLD = "
* IT_REG_RR_ADD = "
* IT_REG_RR_SRV = "
* IT_TEXT = "
IO_MSGLIST = "
CHANGING
* CT_MAP_REGNO = "
IMPORTING Parameters details for RELM_API_REGISTER_CRE
IO_LAND_REGISTER -
Data type: IF_RELM_LAND_REGISTEROptional: No
Call by Reference: No ( called with pass by value option)
IT_REGISTER -
Data type: BAPI_RE_T_REGISTER_INTOptional: Yes
Call by Reference: Yes
IT_REG_ADD -
Data type: BAPI_RE_T_REG_ADD_INTOptional: Yes
Call by Reference: Yes
IT_REG_BTYPE -
Data type: BAPI_RE_T_REG_BTYPE_INTOptional: Yes
Call by Reference: Yes
IT_REG_OLD -
Data type: BAPI_RE_T_REG_OLD_INTOptional: Yes
Call by Reference: Yes
IT_REG_RR_ADD -
Data type: BAPI_RE_T_REG_RR_ADD_INTOptional: Yes
Call by Reference: Yes
IT_REG_RR_SRV -
Data type: BAPI_RE_T_REG_RR_SRV_INTOptional: Yes
Call by Reference: Yes
IT_TEXT -
Data type: BAPI_RE_T_TEXT_INTOptional: Yes
Call by Reference: Yes
IO_MSGLIST -
Data type: IF_RECA_MESSAGE_LISTOptional: No
Call by Reference: No ( called with pass by value option)
CHANGING Parameters details for RELM_API_REGISTER_CRE
CT_MAP_REGNO -
Data type: RE_T_LR_MAP_REGNOOptional: Yes
Call by Reference: Yes
Copy and paste ABAP code example for RELM_API_REGISTER_CRE 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_ct_map_regno | TYPE RE_T_LR_MAP_REGNO, " | |||
| lv_io_land_register | TYPE IF_RELM_LAND_REGISTER, " | |||
| lv_it_register | TYPE BAPI_RE_T_REGISTER_INT, " | |||
| lv_it_reg_add | TYPE BAPI_RE_T_REG_ADD_INT, " | |||
| lv_it_reg_btype | TYPE BAPI_RE_T_REG_BTYPE_INT, " | |||
| lv_it_reg_old | TYPE BAPI_RE_T_REG_OLD_INT, " | |||
| lv_it_reg_rr_add | TYPE BAPI_RE_T_REG_RR_ADD_INT, " | |||
| lv_it_reg_rr_srv | TYPE BAPI_RE_T_REG_RR_SRV_INT, " | |||
| lv_it_text | TYPE BAPI_RE_T_TEXT_INT, " | |||
| lv_io_msglist | TYPE IF_RECA_MESSAGE_LIST. " |
|   CALL FUNCTION 'RELM_API_REGISTER_CRE' " |
| EXPORTING | ||
| IO_LAND_REGISTER | = lv_io_land_register | |
| IT_REGISTER | = lv_it_register | |
| IT_REG_ADD | = lv_it_reg_add | |
| IT_REG_BTYPE | = lv_it_reg_btype | |
| IT_REG_OLD | = lv_it_reg_old | |
| IT_REG_RR_ADD | = lv_it_reg_rr_add | |
| IT_REG_RR_SRV | = lv_it_reg_rr_srv | |
| IT_TEXT | = lv_it_text | |
| IO_MSGLIST | = lv_io_msglist | |
| CHANGING | ||
| CT_MAP_REGNO | = lv_ct_map_regno | |
| . " RELM_API_REGISTER_CRE | ||
ABAP code using 7.40 inline data declarations to call FM RELM_API_REGISTER_CRE
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