I_ControlOfQuantityValueUpdate
Control of quantity and value update
I_ControlOfQuantityValueUpdate is a Basic CDS View that provides data about "Control of quantity and value update" in SAP S/4HANA. It reads from 1 data source (t134m) and exposes 8 fields with key fields ValuationArea, ProductType. It has 2 associations to related views.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| t134m | t134m | from |
Associations (2)
| Cardinality | Target | Alias | Condition |
|---|---|---|---|
| [1..1] | I_ValuationArea | _ValuationArea | $projection.ValuationArea = _ValuationArea.ValuationArea |
| [1..1] | I_ProductType_2 | _ProductType | $projection.ProductType = _ProductType.ProductType |
Annotations (10)
| Name | Value | Level | Field |
|---|---|---|---|
| AccessControl.authorizationCheck | #NOT_REQUIRED | view | |
| EndUserText.label | Control of quantity and value update | view | |
| ObjectModel.usageType.sizeCategory | #S | view | |
| ObjectModel.usageType.serviceQuality | #A | view | |
| ObjectModel.usageType.dataClass | #CUSTOMIZING | view | |
| ObjectModel.modelingPattern | #NONE | view | |
| VDM.viewType | #BASIC | view | |
| VDM.lifecycle.contract.type | #PUBLIC_LOCAL_API | view | |
| Metadata.ignorePropagatedAnnotations | true | view | |
| Consumption.ranked | true | view |
Fields (8)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | ValuationArea | bwkey | ||
| KEY | ProductType | |||
| QuantityUpdateIsActive | mengu | |||
| ValueUpdateIsActive | wertu | |||
| PipelineHndlgIsMand | kzpip | |||
| PipelineHndlgIsAllowed | xpizu | |||
| _ValuationArea | _ValuationArea | |||
| _ProductType | _ProductType |
@AbapCatalog: {
viewEnhancementCategory: [#NONE]
}
@AccessControl.authorizationCheck: #NOT_REQUIRED
@EndUserText.label: 'Control of quantity and value update'
@ObjectModel: {
usageType: {
sizeCategory: #S,
serviceQuality: #A,
dataClass:#CUSTOMIZING
},
modelingPattern: #NONE,
supportedCapabilities: [#SQL_DATA_SOURCE, #CDS_MODELING_DATA_SOURCE]
}
@VDM: {
viewType: #BASIC,
lifecycle.contract.type: #PUBLIC_LOCAL_API
}
@Metadata: {
ignorePropagatedAnnotations: true
}
@Consumption.ranked: true
define view entity I_ControlOfQuantityValueUpdate
as select from t134m
association [1..1] to I_ValuationArea as _ValuationArea on $projection.ValuationArea = _ValuationArea.ValuationArea
association [1..1] to I_ProductType_2 as _ProductType on $projection.ProductType = _ProductType.ProductType
{
key bwkey as ValuationArea,
key cast(mtart as producttype preserving type ) as ProductType,
mengu as QuantityUpdateIsActive,
wertu as ValueUpdateIsActive,
kzpip as PipelineHndlgIsMand,
xpizu as PipelineHndlgIsAllowed,
_ValuationArea,
_ProductType
}
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