C_DeliveryPickSum
Delivery Picking SUM
C_DeliveryPickSum is a Consumption CDS View that provides data about "Delivery Picking SUM" in SAP S/4HANA. It reads from 1 data source (I_SDDocumentProcessFlow) and exposes 4 fields.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| I_SDDocumentProcessFlow | I_SDDocumentProcessFlow | from |
Annotations (11)
| Name | Value | Level | Field |
|---|---|---|---|
| AbapCatalog.sqlViewName | CDELPICKSUM | view | |
| AbapCatalog.compiler.compareFilter | true | view | |
| AccessControl.authorizationCheck | #NOT_REQUIRED | view | |
| EndUserText.label | Delivery Picking SUM | view | |
| ClientHandling.algorithm | #SESSION_VARIABLE | view | |
| VDM.viewType | #CONSUMPTION | view | |
| Search.searchable | true | view | |
| ObjectModel.compositionRoot | true | view | |
| ObjectModel.usageType.serviceQuality | #D | view | |
| ObjectModel.usageType.sizeCategory | #XL | view | |
| ObjectModel.usageType.dataClass | #MIXED | view |
Fields (4)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| PrecedingDocument | PrecedingDocument | |||
| PrecedingDocumentItem | PrecedingDocumentItem | |||
| QuantityInBaseUnit | ||||
| PickQuantityInSalesUoMFlt |
@AbapCatalog.sqlViewName: 'CDELPICKSUM'
@AbapCatalog.compiler.compareFilter: true
@AccessControl.authorizationCheck: #NOT_REQUIRED
@EndUserText.label: 'Delivery Picking SUM'
@ClientHandling.algorithm: #SESSION_VARIABLE
@VDM.viewType: #CONSUMPTION
@Search.searchable: true
@ObjectModel: {
compositionRoot: true,
semanticKey: ['PrecedingDocument','PrecedingDocumentItem'],
usageType.serviceQuality: #D,
usageType.sizeCategory: #XL,
usageType.dataClass: #MIXED
}
define view C_DeliveryPickSum as select from I_SDDocumentProcessFlow
{
@Search.defaultSearchElement: true
@Search.ranking: #HIGH
PrecedingDocument,
PrecedingDocumentItem,
sum( QuantityInBaseUnit ) as QuantityInBaseUnit,
sum( RefQuantityInOrdQtyUnitAsFloat ) as PickQuantityInSalesUoMFlt
} where ( PrecedingDocumentCategory = 'J' or PrecedingDocumentCategory = 'T' or PrecedingDocumentCategory = '7' )
and SubsequentDocumentCategory = 'Q'
and ( SDFulfillmentCalculationRule = ' ' or SDFulfillmentCalculationRule = '+' )
group by PrecedingDocument,
PrecedingDocumentItem
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"I_SDDOCUMENTPROCESSFLOW"
],
"ASSOCIATED":
[],
"BASE":
[],
"ANNO_REF":
[],
"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