SAP RH_ALEOX_INTG_O_FILL_CONTAINER Function Module for Internal: Filling of O-BP Container









RH_ALEOX_INTG_O_FILL_CONTAINER is a standard rh aleox intg o fill container SAP function module available within SAP R/3 or S/4 Hana systems, depending on your version and release level. It is used for Internal: Filling of O-BP Container 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 rh aleox intg o fill container FM, simply by entering the name RH_ALEOX_INTG_O_FILL_CONTAINER into the relevant SAP transaction such as SE37 or SE38.

Function Group: HRALX00_INTEGRATION_ORG
Program Name: SAPLHRALX00_INTEGRATION_ORG
Main Program: SAPLHRALX00_INTEGRATION_ORG
Appliation area:
Release date: N/A
Mode(Normal, Remote etc): Normal Function Module
Update:



Function RH_ALEOX_INTG_O_FILL_CONTAINER 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 'RH_ALEOX_INTG_O_FILL_CONTAINER'"Internal: Filling of O-BP Container
EXPORTING
* IV_PROTOCOL = "Log: Extended Distribution
* IT_IDOC_DATA = "Table Type for EDIDD (IDoc Data Records)
* IT_HRDBTAB = "Table Type for Structure HRDBTAB

IMPORTING
ET_O_BP_CONTAINER = "Integration Org Unit BP: Intermediate Table

CHANGING
CT_ERRORS = "HRALEOX: Store Errors

EXCEPTIONS
INTERNAL_ERROR = 1
.



IMPORTING Parameters details for RH_ALEOX_INTG_O_FILL_CONTAINER

IV_PROTOCOL - Log: Extended Distribution

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

IT_IDOC_DATA - Table Type for EDIDD (IDoc Data Records)

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

IT_HRDBTAB - Table Type for Structure HRDBTAB

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

EXPORTING Parameters details for RH_ALEOX_INTG_O_FILL_CONTAINER

ET_O_BP_CONTAINER - Integration Org Unit BP: Intermediate Table

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

CHANGING Parameters details for RH_ALEOX_INTG_O_FILL_CONTAINER

CT_ERRORS - HRALEOX: Store Errors

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

EXCEPTIONS details

INTERNAL_ERROR - Internal Error

Data type:
Optional: No
Call by Reference: Yes

Copy and paste ABAP code example for RH_ALEOX_INTG_O_FILL_CONTAINER 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_ct_errors  TYPE HRTB_ALEOX_ERROR_STRUC, "   
lv_iv_protocol  TYPE CL_HR_ALEOX_PROTOCOL, "   
lv_internal_error  TYPE CL_HR_ALEOX_PROTOCOL, "   
lv_et_o_bp_container  TYPE HRTB_ALEOX_ORG_BP_CONTAINER, "   
lv_it_idoc_data  TYPE EDIDD_TT, "   
lv_it_hrdbtab  TYPE HRDBTAB_TAB. "   

  CALL FUNCTION 'RH_ALEOX_INTG_O_FILL_CONTAINER'  "Internal: Filling of O-BP Container
    EXPORTING
         IV_PROTOCOL = lv_iv_protocol
         IT_IDOC_DATA = lv_it_idoc_data
         IT_HRDBTAB = lv_it_hrdbtab
    IMPORTING
         ET_O_BP_CONTAINER = lv_et_o_bp_container
    CHANGING
         CT_ERRORS = lv_ct_errors
    EXCEPTIONS
        INTERNAL_ERROR = 1
. " RH_ALEOX_INTG_O_FILL_CONTAINER




ABAP code using 7.40 inline data declarations to call FM RH_ALEOX_INTG_O_FILL_CONTAINER

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!