I_DeliveryPickViewDocFlow
Delivery Pick View
I_DeliveryPickViewDocFlow is a Composite CDS View that provides data about "Delivery Pick View" in SAP S/4HANA. It has 1 association to related views.
Associations (1)
| Cardinality | Target | Alias | Condition |
|---|---|---|---|
| [0..1] | I_DeliveryPickViewItem | _Item | _Item.DeliveryDocument = $projection.PrecedingDocument and _Item.DeliveryDocumentItem = $projection.PrecedingDocumentItem |
Annotations (11)
| Name | Value | Level | Field |
|---|---|---|---|
| AbapCatalog.sqlViewName | IDELIVERYPICKF | view | |
| AbapCatalog.compiler.compareFilter | true | view | |
| AccessControl.authorizationCheck | #CHECK | view | |
| AccessControl.personalData.blocking | #BLOCKED_DATA_EXCLUDED | view | |
| EndUserText.label | Delivery Pick View | view | |
| VDM.viewType | #COMPOSITE | view | |
| ClientHandling.algorithm | #SESSION_VARIABLE | view | |
| Analytics.query | true | view | |
| ObjectModel.usageType.serviceQuality | #B | view | |
| ObjectModel.usageType.sizeCategory | #XL | view | |
| ObjectModel.usageType.dataClass | #MIXED | view |
Fields (11)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| PrecedingDocument | I_SDDocumentProcessFlow | PrecedingDocument | ||
| SubsequentDocumentCategory | I_SDDocumentProcessFlow | SubsequentDocumentCategory | ||
| SDFulfillmentCalculationRule | I_SDDocumentProcessFlow | SDFulfillmentCalculationRule | ||
| QuantityInBaseUnit | I_SDDocumentProcessFlow | QuantityInBaseUnit | ||
| BaseUnitNOTUNIQUE | ||||
| TransferOrderInWrhsMgmtIsConfd | I_SDDocumentProcessFlow | TransferOrderInWrhsMgmtIsConfd | ||
| PrecedingDocumentItem | I_SDDocumentProcessFlow | PrecedingDocumentItem | ||
| DeliveryDocument | _Item | DeliveryDocument | ||
| ShippingPoint | ||||
| _Item | _Item | |||
| _DeliveryDocument | _Item | _DeliveryDocument |
@AbapCatalog.sqlViewName: 'IDELIVERYPICKF'
@AbapCatalog.compiler.compareFilter: true
@AccessControl.authorizationCheck: #CHECK
@AccessControl.personalData.blocking: #BLOCKED_DATA_EXCLUDED
@EndUserText.label: 'Delivery Pick View'
@VDM.viewType: #COMPOSITE
@ClientHandling.algorithm: #SESSION_VARIABLE
--@Analytics.query: true
@ObjectModel.usageType.serviceQuality: #B
@ObjectModel.usageType.sizeCategory: #XL
@ObjectModel.usageType.dataClass: #MIXED
define view I_DeliveryPickViewDocFlow
as select distinct from I_SDDocumentProcessFlow
association [0..1] to I_DeliveryPickViewItem as _Item on _Item.DeliveryDocument = $projection.PrecedingDocument
and _Item.DeliveryDocumentItem = $projection.PrecedingDocumentItem
{
I_SDDocumentProcessFlow.PrecedingDocument,
I_SDDocumentProcessFlow.SubsequentDocumentCategory,
I_SDDocumentProcessFlow.SDFulfillmentCalculationRule,
I_SDDocumentProcessFlow.QuantityInBaseUnit,
--I_SDDocumentProcessFlow.BaseUnit NOT UNIQUE,
I_SDDocumentProcessFlow.TransferOrderInWrhsMgmtIsConfd,
I_SDDocumentProcessFlow.PrecedingDocumentItem,
_Item.DeliveryDocument,
@Consumption.hidden: true
_Item._DeliveryDocument.ShippingPoint,
/* Associations */
_Item,
_Item._DeliveryDocument
}
where
I_SDDocumentProcessFlow.SubsequentDocumentCategory = 'Q'
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