A_CnsldtnFunctionalAreaT

DDL: A_CNSLDTNFUNCTIONALAREAT Type: view BASIC

Combined Functional Area Text

A_CnsldtnFunctionalAreaT is a Basic CDS View that provides data about "Combined Functional Area Text" in SAP S/4HANA. It reads from 1 data source (I_CnsldtnFunctionalAreaT) and exposes 4 fields with key fields Language, FunctionalArea. It has 1 association to related views.

Data Sources (1)

SourceAliasJoin Type
I_CnsldtnFunctionalAreaT I_CnsldtnFunctionalAreaT from

Associations (1)

CardinalityTargetAliasCondition
[0..1] A_CnsldtnFunctionalArea _CnsldtnFunctionalArea $projection.FunctionalArea = _CnsldtnFunctionalArea.FunctionalArea

Annotations (15)

NameValueLevelField
AbapCatalog.sqlViewName ACSFUNCAREAT 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 #MASTER view
ObjectModel.usageType.serviceQuality #C view
ObjectModel.usageType.sizeCategory #L view
ObjectModel.dataCategory #TEXT view
ObjectModel.representativeKey FunctionalArea view
VDM.viewType #BASIC view
VDM.lifecycle.contract.type #PUBLIC_REMOTE_API view
EndUserText.label Combined Functional Area Text view
OData.entitySet.name FunctionalAreaText view

Fields (4)

KeyFieldSource TableSource FieldDescription
KEY Language Language Report Text Language
KEY FunctionalArea FunctionalArea Sendr Fctl Area
FunctionalAreaText Long Text
_CnsldtnFunctionalArea _CnsldtnFunctionalArea

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_CnsldtnFunctionalAreaT.
-- 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_CnsldtnFunctionalAreaT AS
SELECT
  Language,
  FunctionalArea,
  cast(FunctionalAreaName as fincs_rfarea_t preserving type) AS FunctionalAreaText
FROM I_CnsldtnFunctionalAreaT
LEFT OUTER JOIN A_CnsldtnFunctionalArea AS _CnsldtnFunctionalArea ON FunctionalArea = _CnsldtnFunctionalArea.FunctionalArea  -- association [0..1]
;