I_CnsldtnFinancialDataSource

DDL: I_CNSLDTNFINANCIALDATASOURCE Type: view_entity COMPOSITE Package: FIN_CS_MD_FINANCIAL_SERVICES

Consolidation Financial Data Source

I_CnsldtnFinancialDataSource (Composite)

Package: Explore, extend and adapt the SAP S/4HANA Cloud Public Edition with built-in and side-by-side extension capabilities.

Consolidation Financial Data Source · Group Reporting

I_CnsldtnFinancialDataSource is a Composite CDS View (Dimension) that provides data about "Consolidation Financial Data Source" in SAP S/4HANA. It reads from 1 data source (I_CnsldtnBusinessSwitch) and exposes 3 fields with key field FinancialDataSource. It has 1 association to related views. Part of development package FIN_CS_MD_FINANCIAL_SERVICES.

SAP API Hub

CategoryComposite
StateC1
Line of BusinessGroup Reporting
Application ComponentFIN-CS-MD-2CL
CapabilitiesData Source for Data Extraction,Data Source for Defining CDS Entities,Data Source in SQL Select,Association Target for Defining CDS Entities,Analytical Dimension
Extensible (Key User)No
Extensible (Developer)No
Release State (Key User)Released
Release State (Developer)Released
PackageGroup Reporting for SAP S/4HANA Cloud Public Edition

Documentation

Data Sources (1)

SourceAliasJoin Type
I_CnsldtnBusinessSwitch _BusinessSwitch inner

Associations (1)

CardinalityTargetAliasCondition
[0..*] I_CnsldtnFinancialDataSourceT _Text $projection.FinancialDataSource = _Text.FinancialDataSource

Annotations (15)

NameValueLevelField
Analytics.dataCategory #DIMENSION view
Analytics.internalName #LOCAL view
Analytics.dataExtraction.enabled true view
AccessControl.authorizationCheck #MANDATORY view
Metadata.allowExtensions true view
Metadata.ignorePropagatedAnnotations true view
ObjectModel.usageType.dataClass #MASTER view
ObjectModel.usageType.serviceQuality #C view
ObjectModel.usageType.sizeCategory #M view
ObjectModel.representativeKey FinancialDataSource view
ObjectModel.modelingPattern #ANALYTICAL_DIMENSION view
ObjectModel.sapObjectNodeType.name CnsldtnFinancialDataSource view
VDM.viewType #COMPOSITE view
VDM.lifecycle.contract.type #PUBLIC_LOCAL_API view
EndUserText.label Consolidation Financial Data Source view

Fields (3)

KeyFieldSource TableSource FieldDescription
KEY FinancialDataSource Financial Data Source
CnsldtnIsAdditionalMasterData Is Additional Master Data
_Text _Text

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_CnsldtnFinancialDataSource.
-- 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 I_CnsldtnFinancialDataSource AS
SELECT
  cast( _Source.FinancialDataSource as fincs_financialdatasource preserving type ) AS FinancialDataSource,
  cast( max ( _Source.CnsldtnIsAdditionalMasterData ) as fincs_isadditionalmasterdata preserving type ) AS CnsldtnIsAdditionalMasterData
INNER JOIN I_CnsldtnBusinessSwitch AS _BusinessSwitch ON /* join condition not captured in parsed metadata */
LEFT OUTER JOIN I_CnsldtnFinancialDataSourceT AS _Text ON FinancialDataSource = _Text.FinancialDataSource  -- association [0..*]
;