SAP ACAC_ACCDET_COMP_STRUCT_FILL Function Module for Fill Structure for Account Determination
ACAC_ACCDET_COMP_STRUCT_FILL is a standard acac accdet comp struct fill SAP function module available within SAP R/3 or S/4 Hana systems, depending on your version and release level. It is used for Fill Structure for Account Determination 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 acac accdet comp struct fill FM, simply by entering the name ACAC_ACCDET_COMP_STRUCT_FILL into the relevant SAP transaction such as SE37 or SE38.
Function Group: ACAC_SERVICES
Program Name: SAPLACAC_SERVICES
Main Program:
Appliation area:
Release date: N/A
Mode(Normal, Remote etc): Normal Function Module
Update:

Function ACAC_ACCDET_COMP_STRUCT_FILL 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 'ACAC_ACCDET_COMP_STRUCT_FILL'"Fill Structure for Account Determination.
EXPORTING
ID_STRUCT_NAME = "Accrual Engine: Account Determination Structure Name
IS_DOCITEM = "Accrual Engine Line Items with Error Handling
ID_CHRT_ACCTS = "Chart of Accounts
IMPORTING
EB_STRUCT_FILLED = "Indicator: Structure was filled
CHANGING
CS_STRUCT = "Structure with Fields for Account Determination
EXCEPTIONS
ERROR_OCCURRED = 1
IMPORTING Parameters details for ACAC_ACCDET_COMP_STRUCT_FILL
ID_STRUCT_NAME - Accrual Engine: Account Determination Structure Name
Data type: ACE_ACDT_SSTRUC_NAMEOptional: No
Call by Reference: Yes
IS_DOCITEM - Accrual Engine Line Items with Error Handling
Data type: ACEPS_ACE_DOC_EXTENDEDOptional: No
Call by Reference: Yes
ID_CHRT_ACCTS - Chart of Accounts
Data type: KTOPLOptional: No
Call by Reference: Yes
EXPORTING Parameters details for ACAC_ACCDET_COMP_STRUCT_FILL
EB_STRUCT_FILLED - Indicator: Structure was filled
Data type: FLAGOptional: No
Call by Reference: Yes
CHANGING Parameters details for ACAC_ACCDET_COMP_STRUCT_FILL
CS_STRUCT - Structure with Fields for Account Determination
Data type: ACAC_ACCDETOptional: No
Call by Reference: Yes
EXCEPTIONS details
ERROR_OCCURRED - An error has occurred
Data type:Optional: No
Call by Reference: Yes
Copy and paste ABAP code example for ACAC_ACCDET_COMP_STRUCT_FILL 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_struct | TYPE ACAC_ACCDET, " | |||
| lv_error_occurred | TYPE ACAC_ACCDET, " | |||
| lv_id_struct_name | TYPE ACE_ACDT_SSTRUC_NAME, " | |||
| lv_eb_struct_filled | TYPE FLAG, " | |||
| lv_is_docitem | TYPE ACEPS_ACE_DOC_EXTENDED, " | |||
| lv_id_chrt_accts | TYPE KTOPL. " |
|   CALL FUNCTION 'ACAC_ACCDET_COMP_STRUCT_FILL' "Fill Structure for Account Determination |
| EXPORTING | ||
| ID_STRUCT_NAME | = lv_id_struct_name | |
| IS_DOCITEM | = lv_is_docitem | |
| ID_CHRT_ACCTS | = lv_id_chrt_accts | |
| IMPORTING | ||
| EB_STRUCT_FILLED | = lv_eb_struct_filled | |
| CHANGING | ||
| CS_STRUCT | = lv_cs_struct | |
| EXCEPTIONS | ||
| ERROR_OCCURRED = 1 | ||
| . " ACAC_ACCDET_COMP_STRUCT_FILL | ||
ABAP code using 7.40 inline data declarations to call FM ACAC_ACCDET_COMP_STRUCT_FILL
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