A_CnsldtnBusinessArea

DDL: A_CNSLDTNBUSINESSAREA Type: view COMPOSITE Package: FIN_CS_MD_API

Combined Business Area

A_CnsldtnBusinessArea is a Composite CDS View that provides data about "Combined Business Area" in SAP S/4HANA. It reads from 1 data source (I_CnsldtnBusinessArea) and exposes 6 fields with key field BusinessArea. 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_CnsldtnBusinessArea I_CnsldtnBusinessArea from

Associations (2)

CardinalityTargetAliasCondition
[0..*] A_CnsldtnBusinessAreaT _CnsldtnBusinessAreaT $projection.BusinessArea = _CnsldtnBusinessAreaT.BusinessArea
[0..*] A_CnsldtnBusinessAreaHier _CnsldtnBusinessAreaHier $projection.MDHierType = _CnsldtnBusinessAreaHier.MDHierType

Annotations (14)

NameValueLevelField
AbapCatalog.sqlViewName ACSBUSINESSAREA 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 #M view
ObjectModel.representativeKey BusinessArea view
VDM.viewType #COMPOSITE view
VDM.lifecycle.contract.type #PUBLIC_REMOTE_API view
EndUserText.label Combined Business Area view
OData.entitySet.name BusinessArea 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 (6)

KeyFieldSource TableSource FieldDescription
KEY BusinessArea BusinessArea Business Area
MDHierType
HierarchyType
AdditionalMasterDataSource AdditionalMasterDataSource
_CnsldtnBusinessAreaHier _CnsldtnBusinessAreaHier
_CnsldtnBusinessAreaT _CnsldtnBusinessAreaT

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_CnsldtnBusinessArea.
-- 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_CnsldtnBusinessArea AS
SELECT
  BusinessArea,
  cast ( 'CS06' as hrytype ) AS MDHierType,
  cast ( 'CS06' as hrytype ) AS HierarchyType,
  AdditionalMasterDataSource
FROM I_CnsldtnBusinessArea
LEFT OUTER JOIN A_CnsldtnBusinessAreaT AS _CnsldtnBusinessAreaT ON BusinessArea = _CnsldtnBusinessAreaT.BusinessArea  -- association [0..*]
LEFT OUTER JOIN A_CnsldtnBusinessAreaHier AS _CnsldtnBusinessAreaHier ON MDHierType = _CnsldtnBusinessAreaHier.MDHierType  -- association [0..*]
;