SAP RMSA303_PP_WRITE Function Module for RMS-ATL: (Obsolete)









RMSA303_PP_WRITE is a standard rmsa303 pp write SAP function module available within SAP R/3 or S/4 Hana systems, depending on your version and release level. It is used for RMS-ATL: (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 rmsa303 pp write FM, simply by entering the name RMSA303_PP_WRITE into the relevant SAP transaction such as SE37 or SE38.

Function Group: RMSA303
Program Name: SAPLRMSA303
Main Program:
Appliation area:
Release date: N/A
Mode(Normal, Remote etc): Normal Function Module
Update:



Function RMSA303_PP_WRITE 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 'RMSA303_PP_WRITE'"RMS-ATL: (Obsolete)
EXPORTING
I_ADDINF = "EHS: Additional Information for Function Module Calls
* I_FLG_COMMIT = FALSE "Truth Value
* I_FLG_CHECK_ONLY = FALSE "Truth Value
* I_FLG_NO_AUTH_CHECK = FALSE "Truth Value

IMPORTING
E_FLG_ERROR = "Truth Value

TABLES
X_API_HEADER_TAB = "DE-EN-LANG-SWITCH-NO-TRANSLATION
* E_EXTERROR_TAB = "
X_API_PROP_HEADER_TAB = "DE-EN-LANG-SWITCH-NO-TRANSLATION
* X_API_PROP_TAB = "DE-EN-LANG-SWITCH-NO-TRANSLATION
* X_API_PROP_USAGE_TAB = "
* X_API_PROP_FTEXT_TAB = "
* X_API_PROP_DATA_TAB = "EHS: API Structure Value Assignments
* X_API_PROP_FTEXT_LONGTEXT_TAB = "
* X_API_PROP_RELIABILITY_TAB = "
* X_API_PROP_SOURCE_TAB = "

EXCEPTIONS
PARAMETER_ERROR = 1
.



IMPORTING Parameters details for RMSA303_PP_WRITE

I_ADDINF - EHS: Additional Information for Function Module Calls

Data type: RCGADDINF
Optional: No
Call by Reference: Yes

I_FLG_COMMIT - Truth Value

Data type: ESEBOOLE
Default: FALSE
Optional: No
Call by Reference: Yes

I_FLG_CHECK_ONLY - Truth Value

Data type: ESEBOOLE
Default: FALSE
Optional: No
Call by Reference: Yes

I_FLG_NO_AUTH_CHECK - Truth Value

Data type: ESEBOOLE
Default: FALSE
Optional: No
Call by Reference: Yes

EXPORTING Parameters details for RMSA303_PP_WRITE

E_FLG_ERROR - Truth Value

Data type: ESEBOOLE
Optional: No
Call by Reference: Yes

TABLES Parameters details for RMSA303_PP_WRITE

X_API_HEADER_TAB - DE-EN-LANG-SWITCH-NO-TRANSLATION

Data type: ESPRH_APIRH_TAB_TYPE
Optional: No
Call by Reference: No ( called with pass by value option)

E_EXTERROR_TAB -

Data type: ESPAP_EXTERROR_TAB_TYPE
Optional: Yes
Call by Reference: No ( called with pass by value option)

X_API_PROP_HEADER_TAB - DE-EN-LANG-SWITCH-NO-TRANSLATION

Data type: ESPRH_APIVH_TAB_TYPE
Optional: No
Call by Reference: No ( called with pass by value option)

X_API_PROP_TAB - DE-EN-LANG-SWITCH-NO-TRANSLATION

Data type: ESPRH_APIVA_TAB_TYPE
Optional: Yes
Call by Reference: No ( called with pass by value option)

X_API_PROP_USAGE_TAB -

Data type: ESPRH_APIDU_TAB_TYPE
Optional: Yes
Call by Reference: No ( called with pass by value option)

X_API_PROP_FTEXT_TAB -

Data type: ESPRH_APIDF_TAB_TYPE
Optional: Yes
Call by Reference: No ( called with pass by value option)

X_API_PROP_DATA_TAB - EHS: API Structure Value Assignments

Data type: RMSATY_PP_PROP
Optional: Yes
Call by Reference: No ( called with pass by value option)

X_API_PROP_FTEXT_LONGTEXT_TAB -

Data type: ESPRH_APIFL_TAB_TYPE
Optional: Yes
Call by Reference: No ( called with pass by value option)

X_API_PROP_RELIABILITY_TAB -

Data type: ESPRH_APIDR_TAB_TYPE
Optional: Yes
Call by Reference: No ( called with pass by value option)

X_API_PROP_SOURCE_TAB -

Data type: ESPRH_APIDS_TAB_TYPE
Optional: Yes
Call by Reference: No ( called with pass by value option)

EXCEPTIONS details

PARAMETER_ERROR - Wrong parameter

Data type:
Optional: No
Call by Reference: No ( called with pass by value option)

Copy and paste ABAP code example for RMSA303_PP_WRITE 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, "   
lv_e_flg_error  TYPE ESEBOOLE, "   
lv_parameter_error  TYPE ESEBOOLE, "   
lt_x_api_header_tab  TYPE STANDARD TABLE OF ESPRH_APIRH_TAB_TYPE, "   
lt_e_exterror_tab  TYPE STANDARD TABLE OF ESPAP_EXTERROR_TAB_TYPE, "   
lv_i_flg_commit  TYPE ESEBOOLE, "   FALSE
lt_x_api_prop_header_tab  TYPE STANDARD TABLE OF ESPRH_APIVH_TAB_TYPE, "   
lt_x_api_prop_tab  TYPE STANDARD TABLE OF ESPRH_APIVA_TAB_TYPE, "   
lv_i_flg_check_only  TYPE ESEBOOLE, "   FALSE
lv_i_flg_no_auth_check  TYPE ESEBOOLE, "   FALSE
lt_x_api_prop_usage_tab  TYPE STANDARD TABLE OF ESPRH_APIDU_TAB_TYPE, "   
lt_x_api_prop_ftext_tab  TYPE STANDARD TABLE OF ESPRH_APIDF_TAB_TYPE, "   
lt_x_api_prop_data_tab  TYPE STANDARD TABLE OF RMSATY_PP_PROP, "   
lt_x_api_prop_ftext_longtext_tab  TYPE STANDARD TABLE OF ESPRH_APIFL_TAB_TYPE, "   
lt_x_api_prop_reliability_tab  TYPE STANDARD TABLE OF ESPRH_APIDR_TAB_TYPE, "   
lt_x_api_prop_source_tab  TYPE STANDARD TABLE OF ESPRH_APIDS_TAB_TYPE. "   

  CALL FUNCTION 'RMSA303_PP_WRITE'  "RMS-ATL: (Obsolete)
    EXPORTING
         I_ADDINF = lv_i_addinf
         I_FLG_COMMIT = lv_i_flg_commit
         I_FLG_CHECK_ONLY = lv_i_flg_check_only
         I_FLG_NO_AUTH_CHECK = lv_i_flg_no_auth_check
    IMPORTING
         E_FLG_ERROR = lv_e_flg_error
    TABLES
         X_API_HEADER_TAB = lt_x_api_header_tab
         E_EXTERROR_TAB = lt_e_exterror_tab
         X_API_PROP_HEADER_TAB = lt_x_api_prop_header_tab
         X_API_PROP_TAB = lt_x_api_prop_tab
         X_API_PROP_USAGE_TAB = lt_x_api_prop_usage_tab
         X_API_PROP_FTEXT_TAB = lt_x_api_prop_ftext_tab
         X_API_PROP_DATA_TAB = lt_x_api_prop_data_tab
         X_API_PROP_FTEXT_LONGTEXT_TAB = lt_x_api_prop_ftext_longtext_tab
         X_API_PROP_RELIABILITY_TAB = lt_x_api_prop_reliability_tab
         X_API_PROP_SOURCE_TAB = lt_x_api_prop_source_tab
    EXCEPTIONS
        PARAMETER_ERROR = 1
. " RMSA303_PP_WRITE




ABAP code using 7.40 inline data declarations to call FM RMSA303_PP_WRITE

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.

 
 
 
 
 
DATA(ld_i_flg_commit) = FALSE.
 
 
 
DATA(ld_i_flg_check_only) = FALSE.
 
DATA(ld_i_flg_no_auth_check) = FALSE.
 
 
 
 
 
 
 


Search for further information about these or an SAP related objects



Comments on this SAP object

What made you want to lookup this SAP object? Please tell us what you were looking for and anything you would like to be included on this page!