SAP /ACCGO/BR_LD_OUT_OE_EXECUTION Function Module for Triggering Orchestration Functions for Load Out
/ACCGO/BR_LD_OUT_OE_EXECUTION is a standard /accgo/br ld out oe execution SAP function module available within SAP R/3 or S/4 Hana systems, depending on your version and release level. It is used for Triggering Orchestration Functions for Load Out 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 /accgo/br ld out oe execution FM, simply by entering the name /ACCGO/BR_LD_OUT_OE_EXECUTION into the relevant SAP transaction such as SE37 or SE38.
Function Group: /ACCGO/BR_OE_COMINGLED
Program Name: /ACCGO/SAPLBR_OE_COMINGLED
Main Program: /ACCGO/SAPLBR_OE_COMINGLED
Appliation area:
Release date: N/A
Mode(Normal, Remote etc): Normal Function Module
Update:

Function /ACCGO/BR_LD_OUT_OE_EXECUTION 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 '/ACCGO/BR_LD_OUT_OE_EXECUTION'"Triggering Orchestration Functions for Load Out.
EXPORTING
IS_APPLDOC_HEADER = "Table for Header details of Contract Application Docume
IR_CMGL_LOG_PROTOCOL = "Error Logging and Message Handling
IT_APPLDOC_ITEM = "Contract application items
CHANGING
CS_APP_CHILD_ITEM = "Contract application items
CT_ERROR_LOG = "Return error table type parameter
EXCEPTIONS
/ACCGO/CX_CMGL_EXCEPTION = 1
IMPORTING Parameters details for /ACCGO/BR_LD_OUT_OE_EXECUTION
IS_APPLDOC_HEADER - Table for Header details of Contract Application Docume
Data type: /ACCGO/T_CAS_CAHOptional: No
Call by Reference: Yes
IR_CMGL_LOG_PROTOCOL - Error Logging and Message Handling
Data type: /ACCGO/CL_CMGL_PROTOCOLOptional: No
Call by Reference: Yes
IT_APPLDOC_ITEM - Contract application items
Data type: /ACCGO/CAS_TT_CAIOptional: No
Call by Reference: Yes
CHANGING Parameters details for /ACCGO/BR_LD_OUT_OE_EXECUTION
CS_APP_CHILD_ITEM - Contract application items
Data type: /ACCGO/T_CAS_CAIOptional: No
Call by Reference: Yes
CT_ERROR_LOG - Return error table type parameter
Data type: BAPIRET2_TTOptional: No
Call by Reference: Yes
EXCEPTIONS details
/ACCGO/CX_CMGL_EXCEPTION - Exception Class for Commingled Application
Data type:Optional: No
Call by Reference: Yes
Copy and paste ABAP code example for /ACCGO/BR_LD_OUT_OE_EXECUTION 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_cs_app_child_item | TYPE /ACCGO/T_CAS_CAI, " | |||
lv_is_appldoc_header | TYPE /ACCGO/T_CAS_CAH, " | |||
lv_/accgo/cx_cmgl_exception | TYPE /ACCGO/T_CAS_CAH, " | |||
lv_ct_error_log | TYPE BAPIRET2_TT, " | |||
lv_ir_cmgl_log_protocol | TYPE /ACCGO/CL_CMGL_PROTOCOL, " | |||
lv_it_appldoc_item | TYPE /ACCGO/CAS_TT_CAI. " |
  CALL FUNCTION '/ACCGO/BR_LD_OUT_OE_EXECUTION' "Triggering Orchestration Functions for Load Out |
EXPORTING | ||
IS_APPLDOC_HEADER | = lv_is_appldoc_header | |
IR_CMGL_LOG_PROTOCOL | = lv_ir_cmgl_log_protocol | |
IT_APPLDOC_ITEM | = lv_it_appldoc_item | |
CHANGING | ||
CS_APP_CHILD_ITEM | = lv_cs_app_child_item | |
CT_ERROR_LOG | = lv_ct_error_log | |
EXCEPTIONS | ||
/ACCGO/CX_CMGL_EXCEPTION = 1 | ||
. " /ACCGO/BR_LD_OUT_OE_EXECUTION |
ABAP code using 7.40 inline data declarations to call FM /ACCGO/BR_LD_OUT_OE_EXECUTION
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