SAP RCP952_PARAMETER_BY_TAB_GET Function Module for NOTRANSL: RMS-RCP: Suchparameter im Übergabeformat bereitstellen
RCP952_PARAMETER_BY_TAB_GET is a standard rcp952 parameter by tab get 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-RCP: Suchparameter im Übergabeformat bereitstellen 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 rcp952 parameter by tab get FM, simply by entering the name RCP952_PARAMETER_BY_TAB_GET into the relevant SAP transaction such as SE37 or SE38.
Function Group: RCP952
Program Name: SAPLRCP952
Main Program: SAPLRCP952
Appliation area:
Release date: N/A
Mode(Normal, Remote etc): Normal Function Module
Update:

Function RCP952_PARAMETER_BY_TAB_GET 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 'RCP952_PARAMETER_BY_TAB_GET'"NOTRANSL: RMS-RCP: Suchparameter im Übergabeformat bereitstellen.
EXPORTING
* I_IDENTIFIER_NAME = "Name of ABAP Dictionary Object
* I_STRUCTURE_NAME = "Name of ABAP Dictionary Object
* IT_TABLE = "
* IS_TABLE = "
CHANGING
* XT_PARAMETER = "RMS-RCP: Table Type for TCGSGP
EXCEPTIONS
INTERNAL_ERROR = 1
IMPORTING Parameters details for RCP952_PARAMETER_BY_TAB_GET
I_IDENTIFIER_NAME - Name of ABAP Dictionary Object
Data type: RCPE_SRC_CMD_IDENTIFIEROptional: Yes
Call by Reference: No ( called with pass by value option)
I_STRUCTURE_NAME - Name of ABAP Dictionary Object
Data type: DDOBJNAMEOptional: Yes
Call by Reference: No ( called with pass by value option)
IT_TABLE -
Data type: STANDARD TABLEOptional: Yes
Call by Reference: No ( called with pass by value option)
IS_TABLE -
Data type: ANYOptional: Yes
Call by Reference: No ( called with pass by value option)
CHANGING Parameters details for RCP952_PARAMETER_BY_TAB_GET
XT_PARAMETER - RMS-RCP: Table Type for TCGSGP
Data type: RCPTY_TCGSGPOptional: Yes
Call by Reference: Yes
EXCEPTIONS details
INTERNAL_ERROR -
Data type:Optional: No
Call by Reference: No ( called with pass by value option)
Copy and paste ABAP code example for RCP952_PARAMETER_BY_TAB_GET 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_xt_parameter | TYPE RCPTY_TCGSGP, " | |||
| lv_internal_error | TYPE RCPTY_TCGSGP, " | |||
| lv_i_identifier_name | TYPE RCPE_SRC_CMD_IDENTIFIER, " | |||
| lv_i_structure_name | TYPE DDOBJNAME, " | |||
| lv_it_table | TYPE STANDARD TABLE, " | |||
| lv_is_table | TYPE ANY. " |
|   CALL FUNCTION 'RCP952_PARAMETER_BY_TAB_GET' "NOTRANSL: RMS-RCP: Suchparameter im Übergabeformat bereitstellen |
| EXPORTING | ||
| I_IDENTIFIER_NAME | = lv_i_identifier_name | |
| I_STRUCTURE_NAME | = lv_i_structure_name | |
| IT_TABLE | = lv_it_table | |
| IS_TABLE | = lv_is_table | |
| CHANGING | ||
| XT_PARAMETER | = lv_xt_parameter | |
| EXCEPTIONS | ||
| INTERNAL_ERROR = 1 | ||
| . " RCP952_PARAMETER_BY_TAB_GET | ||
ABAP code using 7.40 inline data declarations to call FM RCP952_PARAMETER_BY_TAB_GET
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