A_CnsldtnFunctionalArea

DDL: A_CNSLDTNFUNCTIONALAREA Type: view BASIC

Combined Functional Area

A_CnsldtnFunctionalArea is a Basic CDS View that provides data about "Combined Functional Area" in SAP S/4HANA. It reads from 1 data source (I_CnsldtnFunctionalArea) and exposes 6 fields with key field FunctionalArea. It has 2 associations to related views.

Data Sources (1)

SourceAliasJoin Type
I_CnsldtnFunctionalArea I_CnsldtnFunctionalArea from

Associations (2)

CardinalityTargetAliasCondition
[0..*] A_CnsldtnFunctionalAreaT _CnsldtnFunctionalAreaT $projection.FunctionalArea = _CnsldtnFunctionalAreaT.FunctionalArea
[0..*] A_CnsldtnFunctionalAreaHier _CnsldtnFunctionalAreaHier $projection.MDHierType = _CnsldtnFunctionalAreaHier.MDHierType

Annotations (14)

NameValueLevelField
AbapCatalog.sqlViewName ACSFUNCAREA 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 #S view
ObjectModel.representativeKey FunctionalArea view
VDM.viewType #BASIC view
VDM.lifecycle.contract.type #PUBLIC_REMOTE_API view
EndUserText.label Combined Functional Area view
OData.entitySet.name FunctionalArea view

Fields (6)

KeyFieldSource TableSource FieldDescription
KEY FunctionalArea FunctionalArea Sendr Fctl Area
AdditionalMasterDataSource AdditionalMasterDataSource
MDHierType
HierarchyType
_CnsldtnFunctionalAreaT _CnsldtnFunctionalAreaT
_CnsldtnFunctionalAreaHier _CnsldtnFunctionalAreaHier

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_CnsldtnFunctionalArea.
-- 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_CnsldtnFunctionalArea AS
SELECT
  FunctionalArea,
  AdditionalMasterDataSource,
  cast ( 'CS05' as hrytype ) AS MDHierType,
  cast ( 'CS05' as hrytype ) AS HierarchyType
FROM I_CnsldtnFunctionalArea
LEFT OUTER JOIN A_CnsldtnFunctionalAreaT AS _CnsldtnFunctionalAreaT ON FunctionalArea = _CnsldtnFunctionalAreaT.FunctionalArea  -- association [0..*]
LEFT OUTER JOIN A_CnsldtnFunctionalAreaHier AS _CnsldtnFunctionalAreaHier ON MDHierType = _CnsldtnFunctionalAreaHier.MDHierType  -- association [0..*]
;