I_MatlCompProvisionTypeText

DDL: I_MATLCOMPPROVISIONTYPETEXT Type: view_entity BASIC

Material Component Provision Type - Text

I_MatlCompProvisionTypeText is a Basic CDS View that provides data about "Material Component Provision Type - Text" in SAP S/4HANA. It reads from 1 data source (t417t) and exposes 5 fields with key fields Language, MaterialProvisionType. It has 2 associations to related views.

Data Sources (1)

SourceAliasJoin Type
t417t text from

Associations (2)

CardinalityTargetAliasCondition
[1..1] I_MatlCompProvisionType _ProvisionType $projection.MaterialProvisionType = _ProvisionType.MaterialProvisionType
[0..1] I_Language _Language $projection.Language = _Language.Language

Annotations (12)

NameValueLevelField
AccessControl.authorizationCheck #NOT_REQUIRED view
Metadata.ignorePropagatedAnnotations true view
ObjectModel.dataCategory #TEXT view
ObjectModel.representativeKey MaterialProvisionType view
ObjectModel.modelingPattern #LANGUAGE_DEPENDENT_TEXT view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.sizeCategory #L view
ObjectModel.usageType.dataClass #CUSTOMIZING view
Search.searchable true view
VDM.lifecycle.contract.type #PUBLIC_LOCAL_API view
VDM.viewType #BASIC view
EndUserText.label Material Component Provision Type - Text view

Fields (5)

KeyFieldSource TableSource FieldDescription
KEY Language t417t spras Off. Language
KEY MaterialProvisionType
MaterialProvisionTypeName
_ProvisionType _ProvisionType
_Language _Language

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 I_MatlCompProvisionTypeText.
-- 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 I_MatlCompProvisionTypeText AS
SELECT
  text.spras AS Language,
  cast(text.beikz as vdm_beikz preserving type) AS MaterialProvisionType,
  cast(text.btext as vdm_btkkt preserving type) AS MaterialProvisionTypeName
FROM t417t AS text
LEFT OUTER JOIN I_MatlCompProvisionType AS _ProvisionType ON MaterialProvisionType = _ProvisionType.MaterialProvisionType  -- association [1..1]
LEFT OUTER JOIN I_Language AS _Language ON Language = _Language.Language  -- association [0..1]
;