SAP RMSA300_PP_CREATE Function Module for NOTRANSL: RMS-ATL: Prozessparameter anlegen (obsolete)
RMSA300_PP_CREATE is a standard rmsa300 pp create 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: Prozessparameter anlegen (obsolete) 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 rmsa300 pp create FM, simply by entering the name RMSA300_PP_CREATE into the relevant SAP transaction such as SE37 or SE38.
Function Group: RMSA300
Program Name: SAPLRMSA300
Main Program:
Appliation area: M
Release date: N/A
Mode(Normal, Remote etc): Normal Function Module
Update:

Function RMSA300_PP_CREATE 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 'RMSA300_PP_CREATE'"NOTRANSL: RMS-ATL: Prozessparameter anlegen (obsolete).
EXPORTING
I_ADDINF = "DE-EN-LANG-SWITCH-NO-TRANSLATION
* I_VALFR = "Lower Time Interval Limit
* I_VALTO = "Upper Time Interval Limit
I_GUID = "Internal Identification for PVS Objects
* I_FLG_KEY_DATE_SWITCH_ONLY = ESP1_FALSE "Indicator: Change key date and change number only
* I_FLG_CHECK_ONLY = ESP1_FALSE "Indicator: Check data only
* I_FLG_COMMIT = ESP1_FALSE "DE-EN-LANG-SWITCH-NO-TRANSLATION
* I_FLG_OWNID_SRSID_KEEP = ESP1_FALSE "DE-EN-LANG-SWITCH-NO-TRANSLATION
* I_FLG_VAL_CHECK_BY_STATUS = ESP1_TRUE "DE-EN-LANG-SWITCH-NO-TRANSLATION
IMPORTING
E_FLG_LOCKFAIL = "DE-EN-LANG-SWITCH-NO-TRANSLATION
E_FLG_ERROR = "DE-EN-LANG-SWITCH-NO-TRANSLATION
E_FLG_WARNING = "DE-EN-LANG-SWITCH-NO-TRANSLATION
TABLES
X_API_SUB_TAB = "DE-EN-LANG-SWITCH-NO-TRANSLATION
* E_EXTERROR_TAB = "Error Message Table
IMPORTING Parameters details for RMSA300_PP_CREATE
I_ADDINF - DE-EN-LANG-SWITCH-NO-TRANSLATION
Data type: RCGADDINFOptional: No
Call by Reference: No ( called with pass by value option)
I_VALFR - Lower Time Interval Limit
Data type: RCGADDINF-VALDATOptional: Yes
Call by Reference: No ( called with pass by value option)
I_VALTO - Upper Time Interval Limit
Data type: RCGADDINF-VALDATOptional: Yes
Call by Reference: No ( called with pass by value option)
I_GUID - Internal Identification for PVS Objects
Data type: PVS_GUIDOptional: No
Call by Reference: No ( called with pass by value option)
I_FLG_KEY_DATE_SWITCH_ONLY - Indicator: Change key date and change number only
Data type: ESP1_BOOLEANDefault: ESP1_FALSE
Optional: Yes
Call by Reference: No ( called with pass by value option)
I_FLG_CHECK_ONLY - Indicator: Check data only
Data type: ESP1_BOOLEANDefault: ESP1_FALSE
Optional: Yes
Call by Reference: No ( called with pass by value option)
I_FLG_COMMIT - DE-EN-LANG-SWITCH-NO-TRANSLATION
Data type: ESP1_BOOLEANDefault: ESP1_FALSE
Optional: Yes
Call by Reference: No ( called with pass by value option)
I_FLG_OWNID_SRSID_KEEP - DE-EN-LANG-SWITCH-NO-TRANSLATION
Data type: ESP1_BOOLEANDefault: ESP1_FALSE
Optional: Yes
Call by Reference: No ( called with pass by value option)
I_FLG_VAL_CHECK_BY_STATUS - DE-EN-LANG-SWITCH-NO-TRANSLATION
Data type: ESP1_BOOLEANDefault: ESP1_TRUE
Optional: Yes
Call by Reference: No ( called with pass by value option)
EXPORTING Parameters details for RMSA300_PP_CREATE
E_FLG_LOCKFAIL - DE-EN-LANG-SWITCH-NO-TRANSLATION
Data type: ESP1_BOOLEANOptional: No
Call by Reference: No ( called with pass by value option)
E_FLG_ERROR - DE-EN-LANG-SWITCH-NO-TRANSLATION
Data type: ESP1_BOOLEANOptional: No
Call by Reference: No ( called with pass by value option)
E_FLG_WARNING - DE-EN-LANG-SWITCH-NO-TRANSLATION
Data type: ESP1_BOOLEANOptional: No
Call by Reference: No ( called with pass by value option)
TABLES Parameters details for RMSA300_PP_CREATE
X_API_SUB_TAB - DE-EN-LANG-SWITCH-NO-TRANSLATION
Data type: ESPRH_API_SUB_TAB_TYPEOptional: No
Call by Reference: Yes
E_EXTERROR_TAB - Error Message Table
Data type: ESPAP_EXTERROR_TAB_TYPEOptional: Yes
Call by Reference: Yes
Copy and paste ABAP code example for RMSA300_PP_CREATE 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_i_addinf | TYPE RCGADDINF, " | |||
| lt_x_api_sub_tab | TYPE STANDARD TABLE OF ESPRH_API_SUB_TAB_TYPE, " | |||
| lv_e_flg_lockfail | TYPE ESP1_BOOLEAN, " | |||
| lv_i_valfr | TYPE RCGADDINF-VALDAT, " | |||
| lv_e_flg_error | TYPE ESP1_BOOLEAN, " | |||
| lt_e_exterror_tab | TYPE STANDARD TABLE OF ESPAP_EXTERROR_TAB_TYPE, " | |||
| lv_i_valto | TYPE RCGADDINF-VALDAT, " | |||
| lv_e_flg_warning | TYPE ESP1_BOOLEAN, " | |||
| lv_i_guid | TYPE PVS_GUID, " | |||
| lv_i_flg_key_date_switch_only | TYPE ESP1_BOOLEAN, " ESP1_FALSE | |||
| lv_i_flg_check_only | TYPE ESP1_BOOLEAN, " ESP1_FALSE | |||
| lv_i_flg_commit | TYPE ESP1_BOOLEAN, " ESP1_FALSE | |||
| lv_i_flg_ownid_srsid_keep | TYPE ESP1_BOOLEAN, " ESP1_FALSE | |||
| lv_i_flg_val_check_by_status | TYPE ESP1_BOOLEAN. " ESP1_TRUE |
|   CALL FUNCTION 'RMSA300_PP_CREATE' "NOTRANSL: RMS-ATL: Prozessparameter anlegen (obsolete) |
| EXPORTING | ||
| I_ADDINF | = lv_i_addinf | |
| I_VALFR | = lv_i_valfr | |
| I_VALTO | = lv_i_valto | |
| I_GUID | = lv_i_guid | |
| I_FLG_KEY_DATE_SWITCH_ONLY | = lv_i_flg_key_date_switch_only | |
| I_FLG_CHECK_ONLY | = lv_i_flg_check_only | |
| I_FLG_COMMIT | = lv_i_flg_commit | |
| I_FLG_OWNID_SRSID_KEEP | = lv_i_flg_ownid_srsid_keep | |
| I_FLG_VAL_CHECK_BY_STATUS | = lv_i_flg_val_check_by_status | |
| IMPORTING | ||
| E_FLG_LOCKFAIL | = lv_e_flg_lockfail | |
| E_FLG_ERROR | = lv_e_flg_error | |
| E_FLG_WARNING | = lv_e_flg_warning | |
| TABLES | ||
| X_API_SUB_TAB | = lt_x_api_sub_tab | |
| E_EXTERROR_TAB | = lt_e_exterror_tab | |
| . " RMSA300_PP_CREATE | ||
ABAP code using 7.40 inline data declarations to call FM RMSA300_PP_CREATE
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.| "SELECT single VALDAT FROM RCGADDINF INTO @DATA(ld_i_valfr). | ||||
| "SELECT single VALDAT FROM RCGADDINF INTO @DATA(ld_i_valto). | ||||
| DATA(ld_i_flg_key_date_switch_only) | = ESP1_FALSE. | |||
| DATA(ld_i_flg_check_only) | = ESP1_FALSE. | |||
| DATA(ld_i_flg_commit) | = ESP1_FALSE. | |||
| DATA(ld_i_flg_ownid_srsid_keep) | = ESP1_FALSE. | |||
| DATA(ld_i_flg_val_check_by_status) | = ESP1_TRUE. | |||
Search for further information about these or an SAP related objects