SAP RCP963_BUILD_STRUCTURE_AOB Function Module for NOTRANSL: RMS-RCP: Baut die Struktur der AOB's gemäss AOB Screen (RCP153)









RCP963_BUILD_STRUCTURE_AOB is a standard rcp963 build structure aob 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 der AOB's gemäss AOB Screen (RCP153) 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 aob FM, simply by entering the name RCP963_BUILD_STRUCTURE_AOB 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_AOB 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_AOB'"NOTRANSL: RMS-RCP: Baut die Struktur der AOB's gemäss AOB Screen (RCP153)
EXPORTING
IT_PST = "Process Stage
IT_POP = "Process Operation
IT_STX = "Descriptions
IS_OBJ_KEY = "DE-EN-LANG-SWITCH-NO-TRANSLATION
* IT_SUC = "RMS-RCP: API - Table Type f. Process Operation - Successor
* IT_PRE = "RMS-RCP: API - Table Type f. Process Operation - Predecessor

IMPORTING
ET_OUTTAB_PRE = "DE-EN-LANG-SWITCH-NO-TRANSLATION
ET_OUTTAB_SUC = "DE-EN-LANG-SWITCH-NO-TRANSLATION
.



IMPORTING Parameters details for RCP963_BUILD_STRUCTURE_AOB

IT_PST - Process Stage

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

IT_POP - Process Operation

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

IT_STX - Descriptions

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

IS_OBJ_KEY - DE-EN-LANG-SWITCH-NO-TRANSLATION

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

IT_SUC - RMS-RCP: API - Table Type f. Process Operation - Successor

Data type: RCPTY_API_OP_SUC
Optional: Yes
Call by Reference: Yes

IT_PRE - RMS-RCP: API - Table Type f. Process Operation - Predecessor

Data type: RCPTY_API_OP_PRE
Optional: Yes
Call by Reference: Yes

EXPORTING Parameters details for RCP963_BUILD_STRUCTURE_AOB

ET_OUTTAB_PRE - DE-EN-LANG-SWITCH-NO-TRANSLATION

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

ET_OUTTAB_SUC - DE-EN-LANG-SWITCH-NO-TRANSLATION

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

Copy and paste ABAP code example for RCP963_BUILD_STRUCTURE_AOB 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_pre  TYPE RCPTY_DYNP_PRSU, "   
lv_it_pop  TYPE RCPTY_API_POP, "   
lv_et_outtab_suc  TYPE RCPTY_DYNP_PRSU, "   
lv_it_stx  TYPE RCPTY_API_STX, "   
lv_is_obj_key  TYPE RCPS_WBO_PARAM, "   
lv_it_suc  TYPE RCPTY_API_OP_SUC, "   
lv_it_pre  TYPE RCPTY_API_OP_PRE. "   

  CALL FUNCTION 'RCP963_BUILD_STRUCTURE_AOB'  "NOTRANSL: RMS-RCP: Baut die Struktur der AOB's gemäss AOB Screen (RCP153)
    EXPORTING
         IT_PST = lv_it_pst
         IT_POP = lv_it_pop
         IT_STX = lv_it_stx
         IS_OBJ_KEY = lv_is_obj_key
         IT_SUC = lv_it_suc
         IT_PRE = lv_it_pre
    IMPORTING
         ET_OUTTAB_PRE = lv_et_outtab_pre
         ET_OUTTAB_SUC = lv_et_outtab_suc
. " RCP963_BUILD_STRUCTURE_AOB




ABAP code using 7.40 inline data declarations to call FM RCP963_BUILD_STRUCTURE_AOB

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



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!