I_MaintOrderConfGoodsMovement
Goods Movements for Order Confirmation
I_MaintOrderConfGoodsMovement is a Basic CDS View that provides data about "Goods Movements for Order Confirmation" in SAP S/4HANA. It reads from 1 data source (afwi) and exposes 11 fields. It has 1 association to related views.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| afwi | afwi | from |
Associations (1)
| Cardinality | Target | Alias | Condition |
|---|---|---|---|
| [0..1] | I_MaterialDocumentRecord | _MaterialDocumentRecord | _MaterialDocumentRecord.MaterialDocumentYear = $projection.MaterialDocumentYear and _MaterialDocumentRecord.MaterialDocument = $projection.MaterialDocument and _MaterialDocumentRecord.MaterialDocumentItem = $projection.MaterialDocumentItem |
Annotations (9)
| Name | Value | Level | Field |
|---|---|---|---|
| AbapCatalog.sqlViewName | IMAINTORDCONFGM | view | |
| AbapCatalog.compiler.compareFilter | true | view | |
| AccessControl.authorizationCheck | #NOT_REQUIRED | view | |
| EndUserText.label | Goods Movements for Order Confirmation | view | |
| VDM.viewType | #BASIC | view | |
| ClientHandling.algorithm | #SESSION_VARIABLE | view | |
| ObjectModel.usageType.dataClass | #TRANSACTIONAL | view | |
| ObjectModel.usageType.serviceQuality | #A | view | |
| ObjectModel.usageType.sizeCategory | #XL | view |
Fields (11)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| MaintOrderConf | afwi | rueck | ||
| MaintOrderConfCntrValue | afwi | rmzhl | ||
| MaterialDocument | afwi | mblnr | ||
| MaterialDocumentYear | afwi | mjahr | ||
| MaterialDocumentItem | afwi | mblpo | ||
| Material | _MaterialDocumentRecord | Material | ||
| GoodsMovementType | _MaterialDocumentRecord | GoodsMovementType | ||
| QuantityInBaseUnit | _MaterialDocumentRecord | QuantityInBaseUnit | ||
| MaterialBaseUnit | _MaterialDocumentRecord | MaterialBaseUnit | ||
| Reservation | _MaterialDocumentRecord | Reservation | ||
| ReservationItem | _MaterialDocumentRecord | ReservationItem |
@AbapCatalog.sqlViewName: 'IMAINTORDCONFGM'
@AbapCatalog.compiler.compareFilter: true
@AccessControl.authorizationCheck: #NOT_REQUIRED
@EndUserText.label: 'Goods Movements for Order Confirmation'
@VDM.viewType: #BASIC
@ClientHandling.algorithm: #SESSION_VARIABLE
@ObjectModel.usageType.dataClass: #TRANSACTIONAL
@ObjectModel.usageType.serviceQuality: #A
@ObjectModel.usageType.sizeCategory: #XL
define view I_MaintOrderConfGoodsMovement
as select from afwi
association [0..1] to I_MaterialDocumentRecord as _MaterialDocumentRecord on _MaterialDocumentRecord.MaterialDocumentYear = $projection.MaterialDocumentYear
and _MaterialDocumentRecord.MaterialDocument = $projection.MaterialDocument
and _MaterialDocumentRecord.MaterialDocumentItem = $projection.MaterialDocumentItem
{
afwi.rueck as MaintOrderConf,
afwi.rmzhl as MaintOrderConfCntrValue,
afwi.mblnr as MaterialDocument,
afwi.mjahr as MaterialDocumentYear,
afwi.mblpo as MaterialDocumentItem,
_MaterialDocumentRecord.Material,
_MaterialDocumentRecord.GoodsMovementType,
_MaterialDocumentRecord.QuantityInBaseUnit,
_MaterialDocumentRecord.MaterialBaseUnit,
_MaterialDocumentRecord.Reservation,
_MaterialDocumentRecord.ReservationItem
}
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"I_MATERIALDOCUMENTRECORD",
"AFWI"
],
"ASSOCIATED":
[
"I_MATERIALDOCUMENTRECORD"
],
"BASE":
[],
"ANNO_REF":
[],
"SCALAR_FUNCTION":
[],
"VERSION":0,
"ANNOREF_EVALUATION_ERROR":""
}
}*/
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