A_CnsldtnControllingAreaT

DDL: A_CNSLDTNCONTROLLINGAREAT Type: view COMPOSITE Package: FIN_CS_MD_API

Combined Controlling Area - Text

A_CnsldtnControllingAreaT is a Composite CDS View that provides data about "Combined Controlling Area - Text" in SAP S/4HANA. It reads from 1 data source (I_CnsldtnControllingAreaT) and exposes 4 fields with key fields Language, ControllingArea. It has 1 association 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_CnsldtnControllingAreaT I_CnsldtnControllingAreaT from

Associations (1)

CardinalityTargetAliasCondition
[1..1] A_CnsldtnControllingArea _CnsldtnControllingArea $projection.ControllingArea = _CnsldtnControllingArea.ControllingArea

Annotations (15)

NameValueLevelField
AbapCatalog.sqlViewName ACSCNTRLAREAT view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.preserveKey true view
AccessControl.authorizationCheck #CHECK view
Metadata.ignorePropagatedAnnotations true view
ClientHandling.algorithm #SESSION_VARIABLE view
ObjectModel.usageType.dataClass #MASTER view
ObjectModel.usageType.serviceQuality #C view
ObjectModel.usageType.sizeCategory #S view
ObjectModel.dataCategory #TEXT view
ObjectModel.representativeKey ControllingArea view
VDM.lifecycle.contract.type #PUBLIC_REMOTE_API view
VDM.viewType #COMPOSITE view
EndUserText.label Combined Controlling Area - Text view
OData.entitySet.name ControllingAreaText 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 (4)

KeyFieldSource TableSource FieldDescription
KEY Language Language Report Text Language
KEY ControllingArea Controlling Area
ControllingAreaText Long Text
_CnsldtnControllingArea _CnsldtnControllingArea

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_CnsldtnControllingAreaT.
-- 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_CnsldtnControllingAreaT AS
SELECT
  Language,
  cast(ControllingArea as fis_kokrs preserving type ) AS ControllingArea,
  cast(ControllingAreaName as fincs_kokrs_t preserving type) AS ControllingAreaText
FROM I_CnsldtnControllingAreaT
LEFT OUTER JOIN A_CnsldtnControllingArea AS _CnsldtnControllingArea ON ControllingArea = _CnsldtnControllingArea.ControllingArea  -- association [1..1]
;