FC_COI_EQU_READ is a standard SAP function module available within R/3 SAP systems depending on your version and release level. Below is the pattern details for this FM showing its interface including any import and export parameters, exceptions etc as well as any documentation contributions (Comments) specific to the object.
See here to view full function module documentation and code listing, simply by entering the name FC_COI_EQU_READ into the relevant SAP transaction such as SE37 or SE80.
Associated Function Group:
FC06
Released Date:
Not Released
Processing type: Normal fucntion module
CALL FUNCTION 'FC_COI_EQU_READ' "
EXPORTING
e_dimen = " fc_dimen Dimension
e_rldnr = " fc_rldnr Ledger
e_itclg = " fc_itclg Cons Chart of Accounts
e_rvers = " fc_rvers Consolidation version
e_ryear = " fc_ryear Fiscal year
e_perid = " fc_perid Period
* e_fryear = " fc_ryear Beginning fiscal year
* e_fperid = " fc_perid Starting Period
* e_hsl = 'X' " fc_flg
* e_cu_all = " fc_flg Flag: all selected CUs; ET_BUNIT irrelevant
* et_bunit = " fc06_t_bunit All CUs of a CG; SELIND determines CUs to be selected
* et_inv = " fc06_t_inv
* es_level_request = GC_LEVEL_REQUEST_ALL " fc06_s_level_request
* es_db_request = GC_DB_REQUEST_ALL " fc06_s_db_request
* ef_no_join = " fc_flg General Indicator for SAP Consolidation
IMPORTING
it_equ = " fc06_t_equ Equity table
it_equ_db = " fc06_t_equ_db
it_ni = " fc06_t_ni
it_ni_db = " fc06_t_ni_db
it_pgw = " fc06_t_pgw Pushdown Goodwill Table
EXCEPTIONS
INVESTMENT_ACTIVITY_NOT_UNIQUE = 1 "
ADD_TOT_OVERLAP = 2 "
. " FC_COI_EQU_READ
The ABAP code below is a full code listing to execute function module FC_COI_EQU_READ including all data declarations. The code uses 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 original method of declaring data variables up front. 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).
| ld_it_equ | TYPE FC06_T_EQU , |
| ld_it_equ_db | TYPE FC06_T_EQU_DB , |
| ld_it_ni | TYPE FC06_T_NI , |
| ld_it_ni_db | TYPE FC06_T_NI_DB , |
| ld_it_pgw | TYPE FC06_T_PGW . |
The below ABAP code uses the older none in-line data declarations. This allows you to see the coding differences/benefits of the later inline syntax. It may also be useful if you are using an older version of SAP as some of the newer syntax above, such as the @DATA is not available until 4.70 EHP 8.
DATA:
| ld_it_equ | TYPE FC06_T_EQU , |
| ld_e_dimen | TYPE FC_DIMEN , |
| ld_it_equ_db | TYPE FC06_T_EQU_DB , |
| ld_e_rldnr | TYPE FC_RLDNR , |
| ld_it_ni | TYPE FC06_T_NI , |
| ld_e_itclg | TYPE FC_ITCLG , |
| ld_it_ni_db | TYPE FC06_T_NI_DB , |
| ld_e_rvers | TYPE FC_RVERS , |
| ld_it_pgw | TYPE FC06_T_PGW , |
| ld_e_ryear | TYPE FC_RYEAR , |
| ld_e_perid | TYPE FC_PERID , |
| ld_e_fryear | TYPE FC_RYEAR , |
| ld_e_fperid | TYPE FC_PERID , |
| ld_e_hsl | TYPE FC_FLG , |
| ld_e_cu_all | TYPE FC_FLG , |
| ld_et_bunit | TYPE FC06_T_BUNIT , |
| ld_et_inv | TYPE FC06_T_INV , |
| ld_es_level_request | TYPE FC06_S_LEVEL_REQUEST , |
| ld_es_db_request | TYPE FC06_S_DB_REQUEST , |
| ld_ef_no_join | TYPE FC_FLG . |
Please help keep this info upto date and use the comments section below to add useful hints, tips and information specific to this SAP function. This will then be available for you and other users to easily find by simply searching on the object name FC_COI_EQU_READ or its description.