P_POITEMGOODSRECEIPTCALC
P_POITEMGOODSRECEIPTCALC is a CDS View in S/4HANA. 1 CDS views read from this table.
CDS Views using this table (1)
| View | Type | Join | VDM | Description |
|---|---|---|---|---|
| R_PurgDocGoodsReceiptCalc | view | from | COMPOSITE | R view for Goods Receipt Calculation |
@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":""
}
}*/