I_CnsldtnFinStmntItemAssgmt

DDL: I_CNSLDTNFINSTMNTITEMASSGMT SQL: ICSFSIASSGMT Type: view BASIC

Financial Statement Item Assignment

I_CnsldtnFinStmntItemAssgmt is a Basic CDS View that provides data about "Financial Statement Item Assignment" in SAP S/4HANA. It reads from 1 data source (fincs_fsiassgmt) and exposes 16 fields with key fields ConsolidationChartOfAccounts, FinancialStatementItem, CnsldtnFSItemAttributeVersion, FromFiscalYearPeriod.

Data Sources (1)

SourceAliasJoin Type
fincs_fsiassgmt _Assignment from

Annotations (14)

NameValueLevelField
AbapCatalog.sqlViewName ICSFSIASSGMT view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.preserveKey true view
VDM.viewType #BASIC view
ClientHandling.type #CLIENT_DEPENDENT view
ClientHandling.algorithm #SESSION_VARIABLE view
ObjectModel.usageType.dataClass #MASTER view
ObjectModel.usageType.serviceQuality #C view
ObjectModel.usageType.sizeCategory #M view
AbapCatalog.buffering.status #ACTIVE view
AbapCatalog.buffering.type #GENERIC view
AbapCatalog.buffering.numberOfKeyFields 1 view
AccessControl.authorizationCheck #CHECK view
EndUserText.label Financial Statement Item Assignment view

Fields (16)

KeyFieldSource TableSource FieldDescription
KEY ConsolidationChartOfAccounts fincs_fsiassgmt itclg Consolidation COA
KEY FinancialStatementItem
KEY CnsldtnFSItemAttributeVersion fincs_fsiassgmt iatvs FS Item Attributes Version
KEY FromFiscalYearPeriod
ToFiscalYearPeriod
FinancialStatementItemRole fincs_fsiassgmt sa_role FS Item Role
FSItemDataCollection fincs_fsiassgmt sa_data_collection Data Collection Selection
FSItemCurrencyTranslation fincs_fsiassgmt sa_currency_translation Crcy Transl. Attrib.
FSItemElimination fincs_fsiassgmt sa_elimination Elimination Attrib.
FSItemCashFlow fincs_fsiassgmt sa_cash_flow Cash Flow Attribute
FSItemScope fincs_fsiassgmt sa_scope Scope Attribute
FSItemCustomerSpecific fincs_fsiassgmt sa_customer_specific Other Sel. Attribute
EliminationTargetFSItem
NCITargetFSItem
PlanningTargetFSItem
CnsldtnOffsettingTargetFSItem

Derived SQL interpretation, reconstructed from the parsed view metadata (data sources, associations, and field mappings). SAP annotations are omitted and the structure is reformulated as SQL — this is a functional approximation, not the verbatim SAP source.

-- Derived SQL interpretation of CDS view I_CnsldtnFinStmntItemAssgmt.
-- Reconstructed from parsed metadata (data sources, associations, fields).
-- SAP annotations are omitted and the structure is reformulated as SQL;
-- this is a functional approximation, not the verbatim SAP source. Some join
-- conditions may be unavailable and a few CDS constructs are kept as-is.
-- SQL view name: ICSFSIASSGMT

CREATE VIEW I_CnsldtnFinStmntItemAssgmt AS
SELECT
  _Assignment.itclg AS ConsolidationChartOfAccounts,
  cast ( _Assignment.item as fincs_fsi_item ) AS FinancialStatementItem,
  _Assignment.iatvs AS CnsldtnFSItemAttributeVersion,
  cast ( _Assignment.fromyearper as fincs_fsi_fiscalyearper_from ) AS FromFiscalYearPeriod,
  cast ( _Assignment.toyearper as fincs_fsi_fiscalyearper_to ) AS ToFiscalYearPeriod,
  _Assignment.sa_role AS FinancialStatementItemRole,
  _Assignment.sa_data_collection AS FSItemDataCollection,
  _Assignment.sa_currency_translation AS FSItemCurrencyTranslation,
  _Assignment.sa_elimination AS FSItemElimination,
  _Assignment.sa_cash_flow AS FSItemCashFlow,
  _Assignment.sa_scope AS FSItemScope,
  _Assignment.sa_customer_specific AS FSItemCustomerSpecific,
  cast ( _Assignment.ta_elimination as fincs_fsi_elimination_ta_item ) AS EliminationTargetFSItem,
  cast ( _Assignment.ta_nci as fincs_fsi_nci_ta_item ) AS NCITargetFSItem,
  cast ( _Assignment.ta_planning as fincs_fsi_planning_ta_item ) AS PlanningTargetFSItem,
  cast ( _Assignment.ta_offsetting as fincs_offsettingtargetfsitem ) AS CnsldtnOffsettingTargetFSItem
FROM fincs_fsiassgmt AS _Assignment
;