A_CnsldtnFSItemT

DDL: A_CNSLDTNFSITEMT Type: view BASIC

Financial Statement Item - Text

A_CnsldtnFSItemT is a Basic CDS View that provides data about "Financial Statement Item - Text" in SAP S/4HANA. It reads from 1 data source (I_CnsldtnFSItemText_2) and exposes 7 fields with key fields ConsolidationChartOfAccounts, FinancialStatementItem, Language. It has 3 associations to related views.

Data Sources (1)

SourceAliasJoin Type
I_CnsldtnFSItemText_2 _CnsldtnFSItemText_2 from

Associations (3)

CardinalityTargetAliasCondition
[0..1] A_CnsldtnFSItem _CnsldtnFSItem $projection.ConsolidationChartOfAccounts = _CnsldtnFSItem.ConsolidationChartOfAccounts and $projection.FinancialStatementItem = _CnsldtnFSItem.FinancialStatementItem
[0..1] A_CnsldtnChartOfAccounts _CnsldtnChartOfAccounts $projection.ConsolidationChartOfAccounts = _CnsldtnChartOfAccounts.ConsolidationChartOfAccounts
[0..*] A_CnsldtnChartOfAccountsT _CnsldtnChartOfAccountsT $projection.ConsolidationChartOfAccounts = _CnsldtnChartOfAccountsT.ConsolidationChartOfAccounts

Annotations (15)

NameValueLevelField
AbapCatalog.sqlViewName ACSFSITEMST view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.preserveKey true view
AccessControl.authorizationCheck #CHECK view
ClientHandling.algorithm #SESSION_VARIABLE view
Metadata.ignorePropagatedAnnotations true view
ObjectModel.usageType.dataClass #CUSTOMIZING view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.sizeCategory #M view
ObjectModel.dataCategory #TEXT view
ObjectModel.representativeKey FinancialStatementItem view
VDM.viewType #BASIC view
VDM.lifecycle.contract.type #PUBLIC_REMOTE_API view
EndUserText.label Financial Statement Item - Text view
OData.entitySet.name FinancialStatementItemText view

Fields (7)

KeyFieldSource TableSource FieldDescription
KEY ConsolidationChartOfAccounts I_CnsldtnFSItemText_2 ConsolidationChartOfAccounts Cons. COA
KEY FinancialStatementItem
KEY Language Language Report Text Language
FinancialStatementItemText
_CnsldtnChartOfAccounts _CnsldtnChartOfAccounts
_CnsldtnChartOfAccountsT _CnsldtnChartOfAccountsT
_CnsldtnFSItem _CnsldtnFSItem

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 A_CnsldtnFSItemT.
-- 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.

CREATE VIEW A_CnsldtnFSItemT AS
SELECT
  _CnsldtnFSItemText_2.ConsolidationChartOfAccounts AS ConsolidationChartOfAccounts,
  cast ( _CnsldtnFSItemText_2.CnsldtnFinancialStatementItem as fc_item preserving type ) AS FinancialStatementItem,
  Language,
  cast(_CnsldtnFSItemText_2.CnsldtnFSItemMediumText as fincs_item_t preserving type) AS FinancialStatementItemText
FROM I_CnsldtnFSItemText_2 AS _CnsldtnFSItemText_2
LEFT OUTER JOIN A_CnsldtnFSItem AS _CnsldtnFSItem ON ConsolidationChartOfAccounts = _CnsldtnFSItem.ConsolidationChartOfAccounts AND FinancialStatementItem = _CnsldtnFSItem.FinancialStatementItem  -- association [0..1]
LEFT OUTER JOIN A_CnsldtnChartOfAccounts AS _CnsldtnChartOfAccounts ON ConsolidationChartOfAccounts = _CnsldtnChartOfAccounts.ConsolidationChartOfAccounts  -- association [0..1]
LEFT OUTER JOIN A_CnsldtnChartOfAccountsT AS _CnsldtnChartOfAccountsT ON ConsolidationChartOfAccounts = _CnsldtnChartOfAccountsT.ConsolidationChartOfAccounts  -- association [0..*]
;