A_CnsldtnDivision

DDL: A_CNSLDTNDIVISION Type: view COMPOSITE Package: FIN_CS_MD_API

Combined Division

A_CnsldtnDivision is a Composite CDS View that provides data about "Combined Division" in SAP S/4HANA. It reads from 1 data source (I_CnsldtnDivision) and exposes 3 fields with key field Division. 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_CnsldtnDivision _Source from

Associations (1)

CardinalityTargetAliasCondition
[0..*] A_CnsldtnDivisionT _CnsldtnDivisionT $projection.Division = _CnsldtnDivisionT.Division

Annotations (14)

NameValueLevelField
AbapCatalog.sqlViewName ACSDIVISION 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 Division view
VDM.viewType #COMPOSITE view
VDM.lifecycle.contract.type #PUBLIC_REMOTE_API view
EndUserText.label Combined Division view
OData.entitySet.name OrganizationDivision 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 (3)

KeyFieldSource TableSource FieldDescription
KEY Division I_CnsldtnDivision Division Internal Division ID
AdditionalMasterDataSource I_CnsldtnDivision AdditionalMasterDataSource
_CnsldtnDivisionT _CnsldtnDivisionT

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_CnsldtnDivision.
-- 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_CnsldtnDivision AS
SELECT
  _Source.Division AS Division,
  _Source.AdditionalMasterDataSource AS AdditionalMasterDataSource
FROM I_CnsldtnDivision AS _Source
LEFT OUTER JOIN A_CnsldtnDivisionT AS _CnsldtnDivisionT ON Division = _CnsldtnDivisionT.Division  -- association [0..*]
;