SAP RCP963_BUILD_STRUCTURE_FEVE Function Module for NOTRANSL: RMS-RCP: Lesen der Daten der Fertigungsversion
RCP963_BUILD_STRUCTURE_FEVE is a standard rcp963 build structure feve 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: Lesen der Daten der Fertigungsversion 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 rcp963 build structure feve FM, simply by entering the name RCP963_BUILD_STRUCTURE_FEVE into the relevant SAP transaction such as SE37 or SE38.
Function Group: RCP963
Program Name: SAPLRCP963
Main Program: SAPLRCP963
Appliation area:
Release date: N/A
Mode(Normal, Remote etc): Normal Function Module
Update:

Function RCP963_BUILD_STRUCTURE_FEVE 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 'RCP963_BUILD_STRUCTURE_FEVE'"NOTRANSL: RMS-RCP: Lesen der Daten der Fertigungsversion.
EXPORTING
* I_OBJ_KIND = "DE-EN-LANG-SWITCH-NO-TRANSLATION
* IT_REL_MR = "DE-EN-LANG-SWITCH-NO-TRANSLATION
* IFLG_NO_REL_MR_READ = "DE-EN-LANG-SWITCH-NO-TRANSLATION
* I_PNGUID = "DE-EN-LANG-SWITCH-NO-TRANSLATION
* I_PVGUID = "DE-EN-LANG-SWITCH-NO-TRANSLATION
* I_AENNR = "DE-EN-LANG-SWITCH-NO-TRANSLATION
* I_SUBCAT = "DE-EN-LANG-SWITCH-NO-TRANSLATION
* I_MAT = "Material number of the production version
* I_VERID = "Production Version
* I_PLANT = "Plant of production version
* IS_RCP_DATA = "DE-EN-LANG-SWITCH-NO-TRANSLATION
IMPORTING
ET_FEVE = "Production Versions
ES_MKAL = "Production Versions of Material
EXCEPTIONS
NOT_FOUND = 1 NO_PERMISSION = 2 FUNCTION_NOT_FOUND = 3
IMPORTING Parameters details for RCP963_BUILD_STRUCTURE_FEVE
I_OBJ_KIND - DE-EN-LANG-SWITCH-NO-TRANSLATION
Data type: RMSAE_WBO_OBJ_KINDOptional: Yes
Call by Reference: Yes
IT_REL_MR - DE-EN-LANG-SWITCH-NO-TRANSLATION
Data type: RCPTY_API_REL_MROptional: Yes
Call by Reference: Yes
IFLG_NO_REL_MR_READ - DE-EN-LANG-SWITCH-NO-TRANSLATION
Data type: FLAGOptional: Yes
Call by Reference: Yes
I_PNGUID - DE-EN-LANG-SWITCH-NO-TRANSLATION
Data type: PVS_PNGUIDOptional: Yes
Call by Reference: Yes
I_PVGUID - DE-EN-LANG-SWITCH-NO-TRANSLATION
Data type: PVS_PVGUIDOptional: Yes
Call by Reference: Yes
I_AENNR - DE-EN-LANG-SWITCH-NO-TRANSLATION
Data type: AENNROptional: Yes
Call by Reference: Yes
I_SUBCAT - DE-EN-LANG-SWITCH-NO-TRANSLATION
Data type: ESESUBCATOptional: Yes
Call by Reference: Yes
I_MAT - Material number of the production version
Data type: MATNROptional: Yes
Call by Reference: Yes
I_VERID - Production Version
Data type: PVS_VERIDOptional: Yes
Call by Reference: Yes
I_PLANT - Plant of production version
Data type: WERKS_DOptional: Yes
Call by Reference: Yes
IS_RCP_DATA - DE-EN-LANG-SWITCH-NO-TRANSLATION
Data type: RCPS_API_RCPOptional: Yes
Call by Reference: Yes
EXPORTING Parameters details for RCP963_BUILD_STRUCTURE_FEVE
ET_FEVE - Production Versions
Data type: RCPTY_DYNP_FEVEOptional: No
Call by Reference: Yes
ES_MKAL - Production Versions of Material
Data type: MKALOptional: No
Call by Reference: Yes
EXCEPTIONS details
NOT_FOUND -
Data type:Optional: No
Call by Reference: Yes
NO_PERMISSION -
Data type:Optional: No
Call by Reference: Yes
FUNCTION_NOT_FOUND -
Data type:Optional: No
Call by Reference: Yes
Copy and paste ABAP code example for RCP963_BUILD_STRUCTURE_FEVE 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_et_feve | TYPE RCPTY_DYNP_FEVE, " | |||
| lv_not_found | TYPE RCPTY_DYNP_FEVE, " | |||
| lv_i_obj_kind | TYPE RMSAE_WBO_OBJ_KIND, " | |||
| lv_it_rel_mr | TYPE RCPTY_API_REL_MR, " | |||
| lv_iflg_no_rel_mr_read | TYPE FLAG, " | |||
| lv_es_mkal | TYPE MKAL, " | |||
| lv_i_pnguid | TYPE PVS_PNGUID, " | |||
| lv_no_permission | TYPE PVS_PNGUID, " | |||
| lv_i_pvguid | TYPE PVS_PVGUID, " | |||
| lv_function_not_found | TYPE PVS_PVGUID, " | |||
| lv_i_aennr | TYPE AENNR, " | |||
| lv_i_subcat | TYPE ESESUBCAT, " | |||
| lv_i_mat | TYPE MATNR, " | |||
| lv_i_verid | TYPE PVS_VERID, " | |||
| lv_i_plant | TYPE WERKS_D, " | |||
| lv_is_rcp_data | TYPE RCPS_API_RCP. " |
|   CALL FUNCTION 'RCP963_BUILD_STRUCTURE_FEVE' "NOTRANSL: RMS-RCP: Lesen der Daten der Fertigungsversion |
| EXPORTING | ||
| I_OBJ_KIND | = lv_i_obj_kind | |
| IT_REL_MR | = lv_it_rel_mr | |
| IFLG_NO_REL_MR_READ | = lv_iflg_no_rel_mr_read | |
| I_PNGUID | = lv_i_pnguid | |
| I_PVGUID | = lv_i_pvguid | |
| I_AENNR | = lv_i_aennr | |
| I_SUBCAT | = lv_i_subcat | |
| I_MAT | = lv_i_mat | |
| I_VERID | = lv_i_verid | |
| I_PLANT | = lv_i_plant | |
| IS_RCP_DATA | = lv_is_rcp_data | |
| IMPORTING | ||
| ET_FEVE | = lv_et_feve | |
| ES_MKAL | = lv_es_mkal | |
| EXCEPTIONS | ||
| NOT_FOUND = 1 | ||
| NO_PERMISSION = 2 | ||
| FUNCTION_NOT_FOUND = 3 | ||
| . " RCP963_BUILD_STRUCTURE_FEVE | ||
ABAP code using 7.40 inline data declarations to call FM RCP963_BUILD_STRUCTURE_FEVE
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