I_RecmddProdnVersMatlBOM

DDL: I_RECMDDPRODNVERSMATLBOM Type: view_entity COMPOSITE Package: VDM_PP_MD_PRV

Material BOM for Recmd Production Vers

I_RecmddProdnVersMatlBOM is a Composite CDS View that provides data about "Material BOM for Recmd Production Vers" in SAP S/4HANA. It reads from 1 data source (I_MaterialBOM) and exposes 11 fields with key fields BillOfMaterialCategory, BillOfMaterial, BillOfMaterialVariant, BillOfMaterialVersion, EngineeringChangeDocument. Part of development package VDM_PP_MD_PRV.

Data Sources (1)

SourceAliasJoin Type
I_MaterialBOM I_MaterialBOM from

Annotations (7)

NameValueLevelField
AccessControl.authorizationCheck #MANDATORY view
EndUserText.label Material BOM for Recmd Production Vers view
Metadata.ignorePropagatedAnnotations true view
ObjectModel.usageType.serviceQuality #X view
ObjectModel.usageType.sizeCategory #S view
ObjectModel.usageType.dataClass #MIXED view
VDM.viewType #COMPOSITE view

Fields (11)

KeyFieldSource TableSource FieldDescription
KEY BillOfMaterialCategory BillOfMaterialCategory
KEY BillOfMaterial
KEY BillOfMaterialVariant BillOfMaterialVariant
KEY BillOfMaterialVersion BillOfMaterialVersion
KEY EngineeringChangeDocument EngineeringChangeDocument
KEY Material Material
KEY Plant Plant
BillOfMaterialVariantUsage BillOfMaterialVariantUsage
BOMHeaderText BOMHeaderText
HeaderValidityEndDate HeaderValidityEndDate
HeaderValidityStartDate HeaderValidityStartDate
@AbapCatalog.viewEnhancementCategory: [#NONE]
@AccessControl.authorizationCheck: #MANDATORY
@EndUserText.label: 'Material BOM for Recmd Production Vers'
@Metadata.ignorePropagatedAnnotations: true
@ObjectModel.usageType:{
  serviceQuality: #X,
  sizeCategory: #S,
  dataClass: #MIXED
}
@VDM.viewType: #COMPOSITE
define view entity I_RecmddProdnVersMatlBOM
  as select from I_MaterialBOM
{
  key BillOfMaterialCategory,
      //using cast to delink the Conversion Routine "NUMCV" on BillOfMaterial

  key cast ( BillOfMaterial as abap.char(8) ) as BillOfMaterial,
  key BillOfMaterialVariant,
  key BillOfMaterialVersion,
  key EngineeringChangeDocument,
  key Material,
  key Plant,
      BillOfMaterialVariantUsage,
      BOMHeaderText,
      @Semantics.businessDate.to: true
      HeaderValidityEndDate,
      @Semantics.businessDate.from: true
      HeaderValidityStartDate
}