C_CustMatlTextObjectTypeVH

DDL: C_CUSTMATLTEXTOBJECTTYPEVH Type: view_entity CONSUMPTION

Text Type for Customer Material

C_CustMatlTextObjectTypeVH is a Consumption CDS View that provides data about "Text Type for Customer Material" in SAP S/4HANA. It reads from 1 data source (I_TextObjectType) and exposes 5 fields with key fields TextObjectType, TextObjectCategory. It has 1 association to related views.

Data Sources (1)

SourceAliasJoin Type
I_TextObjectType I_TextObjectType from

Associations (1)

CardinalityTargetAliasCondition
[0..1] I_TextObjectTypeText _TextObjectTypeText $projection.TextObjectType = _TextObjectTypeText.TextObjectType and $projection.TextObjectCategory = _TextObjectTypeText.TextObjectCategory and _TextObjectTypeText.Language = $session.system_language

Annotations (11)

NameValueLevelField
EndUserText.label Text Type for Customer Material view
AccessControl.authorizationCheck #NOT_REQUIRED view
VDM.viewType #CONSUMPTION view
ObjectModel.dataCategory #VALUE_HELP view
ObjectModel.representativeKey TextObjectType view
Search.searchable true view
Metadata.ignorePropagatedAnnotations true view
ObjectModel.usageType.dataClass #CUSTOMIZING view
ObjectModel.usageType.sizeCategory #M view
ObjectModel.usageType.serviceQuality #B view
ObjectModel.resultSet.sizeCategory #XS view

Fields (5)

KeyFieldSource TableSource FieldDescription
KEY TextObjectType TextObjectType Text ID
KEY TextObjectCategory TextObjectCategory Text object
TextObjectTypeName _TextObjectTypeText TextObjectTypeName
_TextObjectTypeText _TextObjectTypeText
_TextObjectCategory _TextObjectCategory

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 C_CustMatlTextObjectTypeVH.
-- 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 C_CustMatlTextObjectTypeVH AS
SELECT
  TextObjectType,
  TextObjectCategory,
  _TextObjectTypeText.TextObjectTypeName AS TextObjectTypeName
FROM I_TextObjectType
LEFT OUTER JOIN I_TextObjectTypeText AS _TextObjectTypeText ON TextObjectType = _TextObjectTypeText.TextObjectType AND TextObjectCategory = _TextObjectTypeText.TextObjectCategory AND _TextObjectTypeText.Language = $session.system_language  -- association [0..1]
;