I_MatlCompProvisionType

DDL: I_MATLCOMPPROVISIONTYPE Type: view_entity BASIC

Material Component Provision Type

I_MatlCompProvisionType is a Basic CDS View (Dimension) that provides data about "Material Component Provision Type" in SAP S/4HANA. It reads from 1 data source (t417) and exposes 4 fields with key field MaterialProvisionType. It has 1 association to related views.

Data Sources (1)

SourceAliasJoin Type
t417 type from

Associations (1)

CardinalityTargetAliasCondition
[0..*] I_MatlCompProvisionTypeText _Text $projection.MaterialProvisionType = _Text.MaterialProvisionType

Annotations (16)

NameValueLevelField
AccessControl.authorizationCheck #NOT_REQUIRED view
Analytics.dataCategory #DIMENSION view
Analytics.internalName #LOCAL view
Consumption.ranked true view
Metadata.ignorePropagatedAnnotations true view
ObjectModel.compositionRoot true view
ObjectModel.modelingPattern #ANALYTICAL_DIMENSION view
ObjectModel.representativeKey MaterialProvisionType view
ObjectModel.resultSet.sizeCategory #XS 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 view

Fields (4)

KeyFieldSource TableSource FieldDescription
KEY MaterialProvisionType
MaterialIsProvidedByCustomer
MaterialIsProvidedBySupplier
_Text _Text

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_MatlCompProvisionType.
-- 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_MatlCompProvisionType AS
SELECT
  cast(type.beikz as vdm_beikz preserving type) AS MaterialProvisionType,
  cast(type.kzbkd as vdm_kzbkd preserving type) AS MaterialIsProvidedByCustomer,
  cast(type.kzblf as vdm_kzblf preserving type) AS MaterialIsProvidedBySupplier
FROM t417 AS type
LEFT OUTER JOIN I_MatlCompProvisionTypeText AS _Text ON MaterialProvisionType = _Text.MaterialProvisionType  -- association [0..*]
;