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
@AccessControl.authorizationCheck: #NOT_REQUIRED
@Analytics.dataCategory: #DIMENSION
@Analytics.internalName: #LOCAL
@Consumption.ranked: true
@Metadata.ignorePropagatedAnnotations: true
@ObjectModel.compositionRoot: true
@ObjectModel.modelingPattern: #ANALYTICAL_DIMENSION
@ObjectModel.supportedCapabilities: [#ANALYTICAL_DIMENSION, #CDS_MODELING_ASSOCIATION_TARGET, #CDS_MODELING_DATA_SOURCE, #SQL_DATA_SOURCE, #SEARCHABLE_ENTITY]
@ObjectModel.representativeKey: 'MaterialProvisionType'
@ObjectModel.resultSet.sizeCategory: #XS
@ObjectModel.usageType: {serviceQuality: #A, sizeCategory: #L, dataClass: #CUSTOMIZING}
@Search.searchable: true
@VDM.lifecycle.contract.type: #PUBLIC_LOCAL_API
@VDM.viewType: #BASIC
@EndUserText.label: 'Material Component Provision Type'

define view entity I_MatlCompProvisionType
  as select from t417 as type
    association [0..*] to I_MatlCompProvisionTypeText as _Text on $projection.MaterialProvisionType = _Text.MaterialProvisionType
{ 
      @ObjectModel.text.association: '_Text'
      @Search: {defaultSearchElement: true, ranking: #HIGH, fuzzinessThreshold: 0.8}
  key 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,

      // Associations

      @ObjectModel.association.type: [#TO_COMPOSITION_CHILD]
      _Text
  };