SAP RCP963_BUILD_STRUCTURE_POB Function Module for NOTRANSL: RMS-RCP: Baut die Struktur derPOB's gemäss POB Screen (RCP162) a
RCP963_BUILD_STRUCTURE_POB is a standard rcp963 build structure pob 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: Baut die Struktur derPOB's gemäss POB Screen (RCP162) a 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 pob FM, simply by entering the name RCP963_BUILD_STRUCTURE_POB 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_POB 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_POB'"NOTRANSL: RMS-RCP: Baut die Struktur derPOB's gemäss POB Screen (RCP162) a.
EXPORTING
* IT_PST = "Process Stage
* IT_POP = "Process Operation
* IT_PAC = "Process Action
* IT_STX = "Descriptions
IS_OBJ_KEY = "DE-EN-LANG-SWITCH-NO-TRANSLATION
* IT_RCP = "Recipes
IMPORTING
ET_OUTTAB = "DE-EN-LANG-SWITCH-NO-TRANSLATION
IMPORTING Parameters details for RCP963_BUILD_STRUCTURE_POB
IT_PST - Process Stage
Data type: RCPTY_API_PSTOptional: Yes
Call by Reference: Yes
IT_POP - Process Operation
Data type: RCPTY_API_POPOptional: Yes
Call by Reference: Yes
IT_PAC - Process Action
Data type: RCPTY_API_PACOptional: Yes
Call by Reference: Yes
IT_STX - Descriptions
Data type: RCPTY_API_STXOptional: Yes
Call by Reference: Yes
IS_OBJ_KEY - DE-EN-LANG-SWITCH-NO-TRANSLATION
Data type: RCPS_WBO_PARAMOptional: No
Call by Reference: Yes
IT_RCP - Recipes
Data type: RCPTY_API_RCPOptional: Yes
Call by Reference: Yes
EXPORTING Parameters details for RCP963_BUILD_STRUCTURE_POB
ET_OUTTAB - DE-EN-LANG-SWITCH-NO-TRANSLATION
Data type: RCPTY_DYNP_PROOptional: No
Call by Reference: Yes
Copy and paste ABAP code example for RCP963_BUILD_STRUCTURE_POB 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_it_pst | TYPE RCPTY_API_PST, " | |||
| lv_et_outtab | TYPE RCPTY_DYNP_PRO, " | |||
| lv_it_pop | TYPE RCPTY_API_POP, " | |||
| lv_it_pac | TYPE RCPTY_API_PAC, " | |||
| lv_it_stx | TYPE RCPTY_API_STX, " | |||
| lv_is_obj_key | TYPE RCPS_WBO_PARAM, " | |||
| lv_it_rcp | TYPE RCPTY_API_RCP. " |
|   CALL FUNCTION 'RCP963_BUILD_STRUCTURE_POB' "NOTRANSL: RMS-RCP: Baut die Struktur derPOB's gemäss POB Screen (RCP162) a |
| EXPORTING | ||
| IT_PST | = lv_it_pst | |
| IT_POP | = lv_it_pop | |
| IT_PAC | = lv_it_pac | |
| IT_STX | = lv_it_stx | |
| IS_OBJ_KEY | = lv_is_obj_key | |
| IT_RCP | = lv_it_rcp | |
| IMPORTING | ||
| ET_OUTTAB | = lv_et_outtab | |
| . " RCP963_BUILD_STRUCTURE_POB | ||
ABAP code using 7.40 inline data declarations to call FM RCP963_BUILD_STRUCTURE_POB
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