P_POItemGoodsReceiptCalc
P_POItemGoodsReceiptCalc is a Composite CDS View in SAP S/4HANA. It reads from 1 data source (I_PurchaseOrderScheduleLine) and exposes 3 fields with key fields PurchaseOrder, PurchaseOrderItem.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| I_PurchaseOrderScheduleLine | I_PurchaseOrderScheduleLine | from |
Annotations (8)
| Name | Value | Level | Field |
|---|---|---|---|
| AbapCatalog.sqlViewName | PPOGRCALC | view | |
| AbapCatalog.compiler.compareFilter | true | view | |
| AbapCatalog.preserveKey | true | view | |
| ClientHandling.algorithm | #SESSION_VARIABLE | view | |
| AccessControl.authorizationCheck | #NOT_REQUIRED | view | |
| ObjectModel.usageType.serviceQuality | #P | view | |
| VDM.private | true | view | |
| VDM.viewType | #COMPOSITE | view |
Fields (3)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | PurchaseOrder | PurchaseOrder | ||
| KEY | PurchaseOrderItem | PurchaseOrderItem | ||
| GoodsReceiptQuantity |
@AbapCatalog.sqlViewName: 'PPOGRCALC'
@AbapCatalog.compiler.compareFilter: true
@AbapCatalog.preserveKey: true
@ClientHandling.algorithm: #SESSION_VARIABLE
@AccessControl.authorizationCheck: #NOT_REQUIRED
@ObjectModel.usageType.serviceQuality: #P
@VDM.private:true
@VDM.viewType: #COMPOSITE
define view P_POItemGoodsReceiptCalc
as select from I_PurchaseOrderScheduleLine
{
key PurchaseOrder,
key PurchaseOrderItem,
sum(RoughGoodsReceiptQty) as GoodsReceiptQuantity
}
where
ScheduleLineOrderQuantity <> 0
group by
PurchaseOrder,
PurchaseOrderItem
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"I_PURCHASEORDERSCHEDULELINE"
],
"ASSOCIATED":
[],
"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