SAP FINS_CFIN_CO_OBJ_SIMULATE Function Module for Simulate Assignment Between Different Cost Objects
FINS_CFIN_CO_OBJ_SIMULATE is a standard fins cfin co obj simulate SAP function module available within SAP R/3 or S/4 Hana systems, depending on your version and release level. It is used for Simulate Assignment Between Different Cost Objects 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 fins cfin co obj simulate FM, simply by entering the name FINS_CFIN_CO_OBJ_SIMULATE into the relevant SAP transaction such as SE37 or SE38.
Function Group: FINS_CFIN_CO_OBJECT
Program Name: SAPLFINS_CFIN_CO_OBJECT
Main Program: SAPLFINS_CFIN_CO_OBJECT
Appliation area:
Release date: N/A
Mode(Normal, Remote etc): Normal Function Module
Update:

Function FINS_CFIN_CO_OBJ_SIMULATE 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 'FINS_CFIN_CO_OBJ_SIMULATE'"Simulate Assignment Between Different Cost Objects.
EXPORTING
* IV_SCENARIO = "Central Finance Scenario
IV_LOCAL_LOGSYS = "Logical System
IT_AUFK = "Standard Table of AUFK
* IT_AFKO = "Standard Table of AFKO
* IT_AFPO = "Standard Table of AFPO
* IT_CKMLMV013 = "Standard Table of CKMLMV013
* IT_AFIH = "Standard Table of AFIH
IMPORTING
ET_ASSIGN = "Assignment
ET_MSG = "Returning Message
EV_OK = "check exist
IMPORTING Parameters details for FINS_CFIN_CO_OBJ_SIMULATE
IV_SCENARIO - Central Finance Scenario
Data type: FINS_CFIN_SCENARIOOptional: Yes
Call by Reference: Yes
IV_LOCAL_LOGSYS - Logical System
Data type: LOGSYSOptional: No
Call by Reference: Yes
IT_AUFK - Standard Table of AUFK
Data type: AUFK_TABOptional: No
Call by Reference: Yes
IT_AFKO - Standard Table of AFKO
Data type: FINS_CFINY_AFKOOptional: Yes
Call by Reference: Yes
IT_AFPO - Standard Table of AFPO
Data type: AFPO_TABOptional: Yes
Call by Reference: Yes
IT_CKMLMV013 - Standard Table of CKMLMV013
Data type: FINS_CFINY_CKMLMV013Optional: Yes
Call by Reference: Yes
IT_AFIH - Standard Table of AFIH
Data type: FINS_CFINY_AFIHOptional: Yes
Call by Reference: Yes
EXPORTING Parameters details for FINS_CFIN_CO_OBJ_SIMULATE
ET_ASSIGN - Assignment
Data type: FINS_CFINY_ASGMTOptional: No
Call by Reference: Yes
ET_MSG - Returning Message
Data type: BAPIRET2_TOptional: No
Call by Reference: Yes
EV_OK - check exist
Data type: BOOLE_DOptional: No
Call by Reference: Yes
Copy and paste ABAP code example for FINS_CFIN_CO_OBJ_SIMULATE 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_assign | TYPE FINS_CFINY_ASGMT, " | |||
| lv_iv_scenario | TYPE FINS_CFIN_SCENARIO, " | |||
| lv_et_msg | TYPE BAPIRET2_T, " | |||
| lv_iv_local_logsys | TYPE LOGSYS, " | |||
| lv_ev_ok | TYPE BOOLE_D, " | |||
| lv_it_aufk | TYPE AUFK_TAB, " | |||
| lv_it_afko | TYPE FINS_CFINY_AFKO, " | |||
| lv_it_afpo | TYPE AFPO_TAB, " | |||
| lv_it_ckmlmv013 | TYPE FINS_CFINY_CKMLMV013, " | |||
| lv_it_afih | TYPE FINS_CFINY_AFIH. " |
|   CALL FUNCTION 'FINS_CFIN_CO_OBJ_SIMULATE' "Simulate Assignment Between Different Cost Objects |
| EXPORTING | ||
| IV_SCENARIO | = lv_iv_scenario | |
| IV_LOCAL_LOGSYS | = lv_iv_local_logsys | |
| IT_AUFK | = lv_it_aufk | |
| IT_AFKO | = lv_it_afko | |
| IT_AFPO | = lv_it_afpo | |
| IT_CKMLMV013 | = lv_it_ckmlmv013 | |
| IT_AFIH | = lv_it_afih | |
| IMPORTING | ||
| ET_ASSIGN | = lv_et_assign | |
| ET_MSG | = lv_et_msg | |
| EV_OK | = lv_ev_ok | |
| . " FINS_CFIN_CO_OBJ_SIMULATE | ||
ABAP code using 7.40 inline data declarations to call FM FINS_CFIN_CO_OBJ_SIMULATE
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