I_FldLogsNonEvalMatConfig
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.
Annotations (7)
| Name | Value | Level | Field |
|---|---|---|---|
| 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 |
@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 = ''
Learn More
- What Is a CDS View in SAP S/4HANA?
- Types of CDS Views: Basic, Composite, Consumption, and Transactional
- SAP Tables vs CDS Views — Key Differences
- Understanding Data Lineage in SAP S/4HANA
- VDM (Virtual Data Model) in SAP S/4HANA Explained
- CDS View Annotations — A Complete Guide
- CDS View Field Mapping and Associations
- Understanding the SAP S/4HANA Data Model
- CDS View Extensions and Custom Fields in SAP S/4HANA
- Released APIs and Stability Contracts in SAP S/4HANA