A_CnsldtnMaterialT

DDL: A_CNSLDTNMATERIALT Type: view COMPOSITE

Combined Material - Text

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

Data Sources (1)

SourceAliasJoin Type
I_CnsldtnMaterialT I_CnsldtnMaterialT from

Associations (1)

CardinalityTargetAliasCondition
[0..1] A_CnsldtnMaterial _CnsldtnMaterial $projection.Material = _CnsldtnMaterial.Material

Annotations (15)

NameValueLevelField
AbapCatalog.sqlViewName ACSMATERIALT 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 #D view
ObjectModel.usageType.sizeCategory #L view
ObjectModel.representativeKey Material view
ObjectModel.dataCategory #TEXT view
VDM.viewType #COMPOSITE view
VDM.lifecycle.contract.type #PUBLIC_REMOTE_API view
EndUserText.label Combined Material - Text view
OData.entitySet.name MaterialText view

Fields (4)

KeyFieldSource TableSource FieldDescription
KEY Language Language Report Text Language
KEY Material Material Vehicle Model
CnsldtnMaterialText Material Description
_CnsldtnMaterial _CnsldtnMaterial

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_CnsldtnMaterialT.
-- 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_CnsldtnMaterialT AS
SELECT
  Language,
  Material,
  cast(MaterialName as fincs_matnr_t preserving type) AS CnsldtnMaterialText
FROM I_CnsldtnMaterialT
LEFT OUTER JOIN A_CnsldtnMaterial AS _CnsldtnMaterial ON Material = _CnsldtnMaterial.Material  -- association [0..1]
;