I_ChgImpactOrderEffectivity

DDL: I_CHGIMPACTORDEREFFECTIVITY SQL: ICHGIMPORDEFF Type: view BASIC

Order Effectivity

I_ChgImpactOrderEffectivity is a Basic CDS View that provides data about "Order Effectivity" in SAP S/4HANA. It reads from 1 data source (mpe_bom_ps_rel) and exposes 3 fields with key field OrderID.

Data Sources (1)

SourceAliasJoin Type
mpe_bom_ps_rel ChgImpactParameffec from

Annotations (10)

NameValueLevelField
AbapCatalog.sqlViewName ICHGIMPORDEFF view
AbapCatalog.compiler.compareFilter true view
VDM.viewType #BASIC view
AccessControl.authorizationCheck #NOT_REQUIRED view
ObjectModel.usageType.serviceQuality #C view
ObjectModel.usageType.sizeCategory #XL view
ObjectModel.usageType.dataClass #MASTER view
ClientHandling.algorithm #SESSION_VARIABLE view
EndUserText.label Order Effectivity view
ObjectModel.representativeKey OrderID view

Fields (3)

KeyFieldSource TableSource FieldDescription
KEY OrderID mpe_bom_ps_rel aufnr
Material mpe_bom_ps_rel matnr
EffectivityParameterVariant mpe_bom_ps_rel techs
@AbapCatalog.sqlViewName: 'ICHGIMPORDEFF'
@AbapCatalog.compiler.compareFilter: true
@VDM.viewType: #BASIC
@AccessControl.authorizationCheck: #NOT_REQUIRED
@ObjectModel.usageType: {serviceQuality: #C, sizeCategory: #XL, dataClass: #MASTER}
@ClientHandling.algorithm: #SESSION_VARIABLE
@EndUserText.label: 'Order Effectivity'
@ObjectModel.representativeKey: 'OrderID'
define view I_ChgImpactOrderEffectivity as select from  mpe_bom_ps_rel
        as ChgImpactParameffec
{
  key ChgImpactParameffec.aufnr as OrderID,
      ChgImpactParameffec.matnr as Material,
      ChgImpactParameffec.techs as EffectivityParameterVariant

} where ChgImpactParameffec.aufnr is not initial;