A_CnsldtnDivisionT

DDL: A_CNSLDTNDIVISIONT SQL: ACSDIVISIONTEXT Type: view COMPOSITE

Combined Division Text

A_CnsldtnDivisionT is a Composite CDS View that provides data about "Combined Division Text" in SAP S/4HANA. It reads from 1 data source (I_CnsldtnDivisionT) and exposes 4 fields with key fields Language, Division. It has 1 association to related views.

Data Sources (1)

SourceAliasJoin Type
I_CnsldtnDivisionT _Source from

Associations (1)

CardinalityTargetAliasCondition
[0..1] A_CnsldtnDivision _CnsldtnDivision $projection.Division = _CnsldtnDivision.Division

Annotations (14)

NameValueLevelField
AbapCatalog.sqlViewName ACSDIVISIONTEXT view
AbapCatalog.compiler.compareFilter true view
AccessControl.authorizationCheck #CHECK view
EndUserText.label Combined Division Text view
VDM.viewType #COMPOSITE 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
OData.entitySet.name OrganizationDivisionText view
VDM.lifecycle.contract.type #PUBLIC_REMOTE_API view
ObjectModel.dataCategory #TEXT view
ObjectModel.representativeKey Division view

Fields (4)

KeyFieldSource TableSource FieldDescription
KEY Language I_CnsldtnDivisionT Language Report Text Language
KEY Division I_CnsldtnDivisionT Division Internal Division ID
OrganizationDivisionText
_CnsldtnDivision _CnsldtnDivision

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_CnsldtnDivisionT.
-- 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.
-- SQL view name: ACSDIVISIONTEXT

CREATE VIEW A_CnsldtnDivisionT AS
SELECT
  _Source.Language AS Language,
  _Source.Division AS Division,
  cast(_Source.AdditionalMasterDataText as fincs_spart_t preserving type) AS OrganizationDivisionText
FROM I_CnsldtnDivisionT AS _Source
LEFT OUTER JOIN A_CnsldtnDivision AS _CnsldtnDivision ON Division = _CnsldtnDivision.Division  -- association [0..1]
;