SAP ACEPS3_OBJ_INCEPTION_POST_FLUP Function Module for Make Opening Entry for a Subsequent Object
ACEPS3_OBJ_INCEPTION_POST_FLUP is a standard aceps3 obj inception post flup SAP function module available within SAP R/3 or S/4 Hana systems, depending on your version and release level. It is used for Make Opening Entry for a Subsequent Object 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 aceps3 obj inception post flup FM, simply by entering the name ACEPS3_OBJ_INCEPTION_POST_FLUP into the relevant SAP transaction such as SE37 or SE38.
Function Group: ACEPS3
Program Name: SAPLACEPS3
Main Program: SAPLACEPS3
Appliation area:
Release date: N/A
Mode(Normal, Remote etc): Normal Function Module
Update:

Function ACEPS3_OBJ_INCEPTION_POST_FLUP 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 'ACEPS3_OBJ_INCEPTION_POST_FLUP'"Make Opening Entry for a Subsequent Object.
EXPORTING
IS_OBJ_SUBKEY = "Internal Key of an Accrual Subobject
ID_REF_SUBKEY = "Unique Reference for an Accrual Subobject
IT_PS_ITEMS_NEW = "Accrual Items in Posting Component
* ID_USE_POSTED_VALUES = "
IS_SUBKEY_INT_ORG = "
IT_QUANTITY_FACTORS = "
ID_EFFDATE = "Key Date/Posting Date for Accruals
* IS_POST_PARAMS = "
* ID_TESTRUN = "Test Run
IMPORTING
ET_DOCITEMS = "Accrual Engine Line Items with Error Handling
ET_RETURN = "Return Table
ET_ACEDOC_RETURN = "Table with Messages About Specific ACE Documents
ET_ACCDOC_RETURN = "
IMPORTING Parameters details for ACEPS3_OBJ_INCEPTION_POST_FLUP
IS_OBJ_SUBKEY - Internal Key of an Accrual Subobject
Data type: ACE_OBJECT_SUBKEY_INTOptional: No
Call by Reference: Yes
ID_REF_SUBKEY - Unique Reference for an Accrual Subobject
Data type: ACE_REF_SUBKEYOptional: No
Call by Reference: Yes
IT_PS_ITEMS_NEW - Accrual Items in Posting Component
Data type: ACEPS_OBJECT_ITEM_EXT_TOptional: No
Call by Reference: Yes
ID_USE_POSTED_VALUES -
Data type: FLAGOptional: Yes
Call by Reference: Yes
IS_SUBKEY_INT_ORG -
Data type: ACE_OBJECT_SUBKEY_INTOptional: No
Call by Reference: Yes
IT_QUANTITY_FACTORS -
Data type: ACEDS_QUANTITY_FACTOR_TOptional: No
Call by Reference: Yes
ID_EFFDATE - Key Date/Posting Date for Accruals
Data type: ACE_EFFDATEOptional: No
Call by Reference: Yes
IS_POST_PARAMS -
Data type: ACEPS_MANUAL_POSTING_PARAMSOptional: Yes
Call by Reference: Yes
ID_TESTRUN - Test Run
Data type: ACE_TESTRUNOptional: Yes
Call by Reference: Yes
EXPORTING Parameters details for ACEPS3_OBJ_INCEPTION_POST_FLUP
ET_DOCITEMS - Accrual Engine Line Items with Error Handling
Data type: ACEPS_ACE_DOC_EXTENDED_TOptional: No
Call by Reference: Yes
ET_RETURN - Return Table
Data type: BAPIRET2_TOptional: No
Call by Reference: Yes
ET_ACEDOC_RETURN - Table with Messages About Specific ACE Documents
Data type: ACE_ACEDOC_RETURN_TOptional: No
Call by Reference: Yes
ET_ACCDOC_RETURN -
Data type: ACE_ACCDOC_RETURN_TOptional: No
Call by Reference: Yes
Copy and paste ABAP code example for ACEPS3_OBJ_INCEPTION_POST_FLUP 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_docitems | TYPE ACEPS_ACE_DOC_EXTENDED_T, " | |||
| lv_is_obj_subkey | TYPE ACE_OBJECT_SUBKEY_INT, " | |||
| lv_et_return | TYPE BAPIRET2_T, " | |||
| lv_id_ref_subkey | TYPE ACE_REF_SUBKEY, " | |||
| lv_it_ps_items_new | TYPE ACEPS_OBJECT_ITEM_EXT_T, " | |||
| lv_et_acedoc_return | TYPE ACE_ACEDOC_RETURN_T, " | |||
| lv_et_accdoc_return | TYPE ACE_ACCDOC_RETURN_T, " | |||
| lv_id_use_posted_values | TYPE FLAG, " | |||
| lv_is_subkey_int_org | TYPE ACE_OBJECT_SUBKEY_INT, " | |||
| lv_it_quantity_factors | TYPE ACEDS_QUANTITY_FACTOR_T, " | |||
| lv_id_effdate | TYPE ACE_EFFDATE, " | |||
| lv_is_post_params | TYPE ACEPS_MANUAL_POSTING_PARAMS, " | |||
| lv_id_testrun | TYPE ACE_TESTRUN. " |
|   CALL FUNCTION 'ACEPS3_OBJ_INCEPTION_POST_FLUP' "Make Opening Entry for a Subsequent Object |
| EXPORTING | ||
| IS_OBJ_SUBKEY | = lv_is_obj_subkey | |
| ID_REF_SUBKEY | = lv_id_ref_subkey | |
| IT_PS_ITEMS_NEW | = lv_it_ps_items_new | |
| ID_USE_POSTED_VALUES | = lv_id_use_posted_values | |
| IS_SUBKEY_INT_ORG | = lv_is_subkey_int_org | |
| IT_QUANTITY_FACTORS | = lv_it_quantity_factors | |
| ID_EFFDATE | = lv_id_effdate | |
| IS_POST_PARAMS | = lv_is_post_params | |
| ID_TESTRUN | = lv_id_testrun | |
| IMPORTING | ||
| ET_DOCITEMS | = lv_et_docitems | |
| ET_RETURN | = lv_et_return | |
| ET_ACEDOC_RETURN | = lv_et_acedoc_return | |
| ET_ACCDOC_RETURN | = lv_et_accdoc_return | |
| . " ACEPS3_OBJ_INCEPTION_POST_FLUP | ||
ABAP code using 7.40 inline data declarations to call FM ACEPS3_OBJ_INCEPTION_POST_FLUP
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