I_FldLogsNonEvalMatConfig

DDL: I_FLDLOGSNONEVALMATCONFIG Type: view_entity BASIC

Non Evaluated materials config

I_FldLogsNonEvalMatConfig is a Basic CDS View that provides data about "Non Evaluated materials config" in SAP S/4HANA. It reads from 2 data sources (t134m, t001w) and exposes 5 fields with key fields Plant, MaterialType.

Data Sources (2)

SourceAliasJoin Type
t134m _cntrl inner
t001w _plant from

Annotations (7)

NameValueLevelField
AccessControl.authorizationCheck #NOT_REQUIRED view
EndUserText.label Non Evaluated materials config view
Metadata.ignorePropagatedAnnotations true view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.sizeCategory #S view
ObjectModel.usageType.dataClass #MIXED view
VDM.viewType #BASIC view

Fields (5)

KeyFieldSource TableSource FieldDescription
KEY Plant t001w werks
KEY MaterialType t134m mtart
ValuationArea t001w bwkey
QuantityUpdateIsActive t134m mengu
ValueUpdateIsActive t134m wertu
@AbapCatalog.viewEnhancementCategory: [#NONE]
@AccessControl.authorizationCheck: #NOT_REQUIRED
@EndUserText.label: 'Non Evaluated materials config'
@Metadata.ignorePropagatedAnnotations: true
@ObjectModel.usageType:{
  serviceQuality: #A,
  sizeCategory: #S,
  dataClass: #MIXED
}
@VDM.viewType: #BASIC
define view entity I_FldLogsNonEvalMatConfig as select from
        t001w as _plant inner join t134m as _cntrl
          on _plant.bwkey = _cntrl.bwkey
{
  key _plant.werks as Plant,
   key _cntrl.mtart as MaterialType,
   _plant.bwkey as ValuationArea,
   _cntrl.mengu as QuantityUpdateIsActive,
   _cntrl.wertu as ValueUpdateIsActive
}
where
_cntrl.mengu = 'X'
and _cntrl.wertu = ''