A_CnsldtnInvesteeUnitT

DDL: A_CNSLDTNINVESTEEUNITT Type: view COMPOSITE Package: FIN_CS_MD_API

Investee Consolidation Unit - Text

A_CnsldtnInvesteeUnitT is a Composite CDS View that provides data about "Investee 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. It is exposed through 5 OData services (ASQL_F7093, ASQL_F7094, ASQL_F7095, ...). Part of development package FIN_CS_MD_API.

Data Sources (1)

SourceAliasJoin Type
I_CnsldtnUnitTextEnhcd10 I_CnsldtnUnitTextEnhcd10 from

Associations (2)

CardinalityTargetAliasCondition
[0..1] A_CnsldtnInvesteeUnit _CnsldtnInvesteeUnit $projection.ConsolidationUnit = _CnsldtnInvesteeUnit.ConsolidationUnit
[0..1] A_CnsldtnDimension _CnsldtnDimension $projection.ConsolidationDimension = _CnsldtnDimension.ConsolidationDimension

Annotations (15)

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

OData Services (5)

ServiceBindingVersionContractRelease
ASQL_F7093 ASQL_F7093 C2 NOT_RELEASED
ASQL_F7094 ASQL_F7094 C2 NOT_RELEASED
ASQL_F7095 ASQL_F7095 C2 NOT_RELEASED
ASQL_F7096 ASQL_F7096 C2 NOT_RELEASED
ASQL_F7867 ASQL_F7867 C2 NOT_RELEASED

Fields (7)

KeyFieldSource TableSource FieldDescription
KEY ConsolidationUnit Consolidation Unit
KEY Language Language Report Text Language
ConsolidationDimension ConsolidationDimension Dimension
ConsolidationUnitText
ConsolidationUnitLongText Text Name
_CnsldtnInvesteeUnit _CnsldtnInvesteeUnit
_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_CnsldtnInvesteeUnitT.
-- 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_CnsldtnInvesteeUnitT AS
SELECT
  cast(ConsolidationUnit as fincs_investeeconsunit preserving type ) AS ConsolidationUnit,
  Language,
  ConsolidationDimension,
  cast(ConsolidationUnitMdmText as fincs_coicu_t preserving type) AS ConsolidationUnitText,
  cast(LongText as fincs_investeeconsunitlongtext preserving type) AS ConsolidationUnitLongText
FROM I_CnsldtnUnitTextEnhcd10
LEFT OUTER JOIN A_CnsldtnInvesteeUnit AS _CnsldtnInvesteeUnit ON ConsolidationUnit = _CnsldtnInvesteeUnit.ConsolidationUnit  -- association [0..1]
LEFT OUTER JOIN A_CnsldtnDimension AS _CnsldtnDimension ON ConsolidationDimension = _CnsldtnDimension.ConsolidationDimension  -- association [0..1]
;