I_BOMExplosionDate

DDL: I_BOMEXPLOSIONDATE Type: view_entity BASIC Package: VDM_PP_MRP

BOM Explosion Date

I_BOMExplosionDate is a Basic CDS View (Dimension) that provides data about "BOM Explosion Date" in SAP S/4HANA. It reads from 1 data source (snum) and exposes 10 fields with key field BOMExplosionDateID. It has 3 associations to related views. Part of development package VDM_PP_MRP.

Data Sources (1)

SourceAliasJoin Type
snum s from

Associations (3)

CardinalityTargetAliasCondition
[1..1] I_Material _Material $projection.Material = _Material.Material
[1..1] I_Product _Product $projection.Material = _Product.Product
[1..1] I_Plant _Plant $projection.Plant = _Plant.Plant

Annotations (16)

NameValueLevelField
AccessControl.authorizationCheck #NOT_REQUIRED view
Analytics.dataCategory #DIMENSION view
Analytics.technicalName IPPBOMEXPLDATE view
Analytics.internalName #LOCAL view
Consumption.ranked true view
Metadata.allowExtensions true view
Metadata.ignorePropagatedAnnotations true view
ObjectModel.modelingPattern #ANALYTICAL_DIMENSION view
ObjectModel.representativeKey BOMExplosionDateID view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.sizeCategory #S view
ObjectModel.usageType.dataClass #MASTER view
Search.searchable true view
VDM.lifecycle.contract.type #PUBLIC_LOCAL_API view
VDM.viewType #BASIC view
EndUserText.label BOM Explosion Date view

Fields (10)

KeyFieldSource TableSource FieldDescription
KEY BOMExplosionDateID
BOMExplosionFixedKeyDate snum brutr
Material snum matnr
Plant snum werks
BOMExplosionDateText
IsDeleted snum xloek
EffectivityParameterVariant snum techs
_Material _Material
_Product _Product
_Plant _Plant
@AccessControl.authorizationCheck: #NOT_REQUIRED
@Analytics.dataCategory: #DIMENSION
@Analytics.technicalName: 'IPPBOMEXPLDATE'
@Analytics.internalName: #LOCAL
@Consumption.ranked: true
@Metadata.allowExtensions: true
@Metadata.ignorePropagatedAnnotations: true
@ObjectModel.modelingPattern: #ANALYTICAL_DIMENSION
@ObjectModel.supportedCapabilities: [#ANALYTICAL_DIMENSION, #CDS_MODELING_ASSOCIATION_TARGET, #SQL_DATA_SOURCE, #CDS_MODELING_DATA_SOURCE, #SEARCHABLE_ENTITY]
@ObjectModel.representativeKey: 'BOMExplosionDateID'
@ObjectModel.semanticKey: ['BOMExplosionDateID']
@ObjectModel.usageType: {serviceQuality: #A, sizeCategory: #S, dataClass: #MASTER}
@Search.searchable: true
@VDM.lifecycle.contract.type: #PUBLIC_LOCAL_API
@VDM.viewType: #BASIC
@EndUserText.label: 'BOM Explosion Date'

define view entity I_BOMExplosionDate
  as select from snum as s
  association [1..1] to I_Material    as _Material    on $projection.Material = _Material.Material
  association [1..1] to I_Product     as _Product     on $projection.Material = _Product.Product
  association [1..1] to I_Plant       as _Plant       on $projection.Plant = _Plant.Plant
{
      // Key

      @ObjectModel.text.element: ['BOMExplosionDateText']
      @Search: {defaultSearchElement: true, ranking: #HIGH, fuzzinessThreshold: 0.8}
  key cast(s.sernr as pph_sernr preserving type) as BOMExplosionDateID,

      // Other data

      @Semantics.businessDate.at: true
      s.brutr                                    as BOMExplosionFixedKeyDate,
      @Consumption.valueHelpDefinition: [ { entity: { name: 'I_ProductStdVH', element: 'Product' } } ]
      @ObjectModel.foreignKey.association: '_Product'
      s.matnr                                    as Material,
      @Consumption.valueHelpDefinition: [ { entity: { name: 'I_PlantStdVH', element: 'Plant' } } ]
      @ObjectModel.foreignKey.association: '_Plant'
      s.werks                                    as Plant,
      @Semantics.text: true
      @Search: {defaultSearchElement: true, ranking: #LOW, fuzzinessThreshold: 0.8}
      cast(s.sntxt as pph_sntxt preserving type) as BOMExplosionDateText,
      s.xloek                                    as IsDeleted,
      s.techs                                    as EffectivityParameterVariant,

      // Associations

      _Material,
      _Product,
      _Plant
};