A_CnsldtnUnitT

DDL: A_CNSLDTNUNITT Type: view COMPOSITE

Consolidation Unit - Text

A_CnsldtnUnitT is a Composite CDS View that provides data about "Consolidation Unit - Text" in SAP S/4HANA. It reads from 1 data source (I_CnsldtnUnitTextEnhcd10) and exposes 7 fields with key fields ConsolidationUnit, Language. It has 2 associations to related views.

Data Sources (1)

SourceAliasJoin Type
I_CnsldtnUnitTextEnhcd10 I_CnsldtnUnitTextEnhcd10 from

Associations (2)

CardinalityTargetAliasCondition
[0..1] A_CnsldtnUnit _CnsldtnUnit $projection.ConsolidationUnit = _CnsldtnUnit.ConsolidationUnit
[0..1] A_CnsldtnDimension _CnsldtnDimension $projection.ConsolidationDimension = _CnsldtnDimension.ConsolidationDimension

Annotations (15)

NameValueLevelField
AbapCatalog.sqlViewName ACSUNITT view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.preserveKey true view
AccessControl.authorizationCheck #CHECK view
ClientHandling.algorithm #SESSION_VARIABLE view
ObjectModel.usageType.dataClass #CUSTOMIZING view
ObjectModel.usageType.serviceQuality #D view
ObjectModel.usageType.sizeCategory #M view
ObjectModel.dataCategory #TEXT view
ObjectModel.representativeKey ConsolidationUnit view
Metadata.ignorePropagatedAnnotations true view
VDM.lifecycle.contract.type #PUBLIC_REMOTE_API view
VDM.viewType #COMPOSITE view
EndUserText.label Consolidation Unit - Text view
OData.entitySet.name ConsolidationUnitText view

Fields (7)

KeyFieldSource TableSource FieldDescription
KEY ConsolidationUnit ConsolidationUnit Consolidation Unit
KEY Language Language Report Text Language
ConsolidationDimension ConsolidationDimension Dimension
ConsolidationUnitText
ConsolidationUnitLongText Text Name
_CnsldtnUnit _CnsldtnUnit
_CnsldtnDimension _CnsldtnDimension

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_CnsldtnUnitT.
-- 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_CnsldtnUnitT AS
SELECT
  ConsolidationUnit,
  Language,
  ConsolidationDimension,
  cast(ConsolidationUnitMdmText as fincs_rbunit_t preserving type) AS ConsolidationUnitText,
  cast(LongText as fincs_consunitlongtext preserving type) AS ConsolidationUnitLongText
FROM I_CnsldtnUnitTextEnhcd10
LEFT OUTER JOIN A_CnsldtnUnit AS _CnsldtnUnit ON ConsolidationUnit = _CnsldtnUnit.ConsolidationUnit  -- association [0..1]
LEFT OUTER JOIN A_CnsldtnDimension AS _CnsldtnDimension ON ConsolidationDimension = _CnsldtnDimension.ConsolidationDimension  -- association [0..1]
;