SAP RMXT230_PREPARE_SCR_RESS Function Module for NOTRANSL: Daten von Ressourcen und Steuerrezeptempfänger lesen
RMXT230_PREPARE_SCR_RESS is a standard rmxt230 prepare scr ress 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: Daten von Ressourcen und Steuerrezeptempfänger lesen 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 rmxt230 prepare scr ress FM, simply by entering the name RMXT230_PREPARE_SCR_RESS into the relevant SAP transaction such as SE37 or SE38.
Function Group: RMXT230
Program Name: SAPLRMXT230
Main Program: SAPLRMXT230
Appliation area:
Release date: N/A
Mode(Normal, Remote etc): Normal Function Module
Update:

Function RMXT230_PREPARE_SCR_RESS 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 'RMXT230_PREPARE_SCR_RESS'"NOTRANSL: Daten von Ressourcen und Steuerrezeptempfänger lesen.
EXPORTING
IS_HDR = "DE-EN-LANG-SWITCH-NO-TRANSLATION
IT_RES = "Resource Assignment
IT_DEST = "Control Recipe Destination
I_KEYDATE = "Key Date
I_DISPLAY_WB = "DE-EN-LANG-SWITCH-NO-TRANSLATION
IMPORTING
ES_SCR_HDR = "DE-EN-LANG-SWITCH-NO-TRANSLATION
ET_RESOURC = "DE-EN-LANG-SWITCH-NO-TRANSLATION
ET_CRDEST = "DE-EN-LANG-SWITCH-NO-TRANSLATION
ET_RCP_CLA = "DE-EN-LANG-SWITCH-NO-TRANSLATION
ET_TRIAL_DEST = "DE-EN-LANG-SWITCH-NO-TRANSLATION
ET_ERROR = "Error Messages
IMPORTING Parameters details for RMXT230_PREPARE_SCR_RESS
IS_HDR - DE-EN-LANG-SWITCH-NO-TRANSLATION
Data type: RMXTS_TRIAL_HDOptional: No
Call by Reference: Yes
IT_RES - Resource Assignment
Data type: RMXTTY_TRIAL_RESOptional: No
Call by Reference: Yes
IT_DEST - Control Recipe Destination
Data type: RMXTTY_TRIAL_DESTOptional: No
Call by Reference: Yes
I_KEYDATE - Key Date
Data type: SYDATUMOptional: No
Call by Reference: Yes
I_DISPLAY_WB - DE-EN-LANG-SWITCH-NO-TRANSLATION
Data type: FLAGOptional: No
Call by Reference: Yes
EXPORTING Parameters details for RMXT230_PREPARE_SCR_RESS
ES_SCR_HDR - DE-EN-LANG-SWITCH-NO-TRANSLATION
Data type: RMXTS_DYNP_RESOptional: No
Call by Reference: Yes
ET_RESOURC - DE-EN-LANG-SWITCH-NO-TRANSLATION
Data type: RMXTTY_DYNP_RESS_ALVOptional: No
Call by Reference: Yes
ET_CRDEST - DE-EN-LANG-SWITCH-NO-TRANSLATION
Data type: RMXTTY_DYNP_CRDEST_ALVOptional: No
Call by Reference: Yes
ET_RCP_CLA - DE-EN-LANG-SWITCH-NO-TRANSLATION
Data type: RCPTY_API_CLAOptional: No
Call by Reference: Yes
ET_TRIAL_DEST - DE-EN-LANG-SWITCH-NO-TRANSLATION
Data type: RMXTTY_TRIAL_DESTOptional: No
Call by Reference: Yes
ET_ERROR - Error Messages
Data type: RMXTTY_MESSAGESOptional: No
Call by Reference: Yes
Copy and paste ABAP code example for RMXT230_PREPARE_SCR_RESS 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_is_hdr | TYPE RMXTS_TRIAL_HD, " | |||
| lv_es_scr_hdr | TYPE RMXTS_DYNP_RES, " | |||
| lv_it_res | TYPE RMXTTY_TRIAL_RES, " | |||
| lv_et_resourc | TYPE RMXTTY_DYNP_RESS_ALV, " | |||
| lv_it_dest | TYPE RMXTTY_TRIAL_DEST, " | |||
| lv_et_crdest | TYPE RMXTTY_DYNP_CRDEST_ALV, " | |||
| lv_i_keydate | TYPE SYDATUM, " | |||
| lv_et_rcp_cla | TYPE RCPTY_API_CLA, " | |||
| lv_i_display_wb | TYPE FLAG, " | |||
| lv_et_trial_dest | TYPE RMXTTY_TRIAL_DEST, " | |||
| lv_et_error | TYPE RMXTTY_MESSAGES. " |
|   CALL FUNCTION 'RMXT230_PREPARE_SCR_RESS' "NOTRANSL: Daten von Ressourcen und Steuerrezeptempfänger lesen |
| EXPORTING | ||
| IS_HDR | = lv_is_hdr | |
| IT_RES | = lv_it_res | |
| IT_DEST | = lv_it_dest | |
| I_KEYDATE | = lv_i_keydate | |
| I_DISPLAY_WB | = lv_i_display_wb | |
| IMPORTING | ||
| ES_SCR_HDR | = lv_es_scr_hdr | |
| ET_RESOURC | = lv_et_resourc | |
| ET_CRDEST | = lv_et_crdest | |
| ET_RCP_CLA | = lv_et_rcp_cla | |
| ET_TRIAL_DEST | = lv_et_trial_dest | |
| ET_ERROR | = lv_et_error | |
| . " RMXT230_PREPARE_SCR_RESS | ||
ABAP code using 7.40 inline data declarations to call FM RMXT230_PREPARE_SCR_RESS
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