R_PurgDocGoodsReceiptCalc
R view for Goods Receipt Calculation
R_PurgDocGoodsReceiptCalc is a Composite CDS View that provides data about "R view for Goods Receipt Calculation" in SAP S/4HANA. It reads from 1 data source (P_POItemGoodsReceiptCalc) and exposes 3 fields with key fields PurchaseOrder, PurchaseOrderItem.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| P_POItemGoodsReceiptCalc | P_POItemGoodsReceiptCalc | from |
Annotations (12)
| Name | Value | Level | Field |
|---|---|---|---|
| AbapCatalog.sqlViewName | RPURDOCGRCALC | view | |
| AbapCatalog.compiler.compareFilter | true | view | |
| AbapCatalog.preserveKey | true | view | |
| ClientHandling.algorithm | #SESSION_VARIABLE | view | |
| AccessControl.authorizationCheck | #PRIVILEGED_ONLY | view | |
| AccessControl.personalData.blocking | #NOT_REQUIRED | view | |
| ObjectModel.usageType.serviceQuality | #B | view | |
| ObjectModel.usageType.sizeCategory | #L | view | |
| ObjectModel.usageType.dataClass | #TRANSACTIONAL | view | |
| VDM.viewType | #COMPOSITE | view | |
| VDM.lifecycle.contract.type | #SAP_INTERNAL_API | view | |
| EndUserText.label | R view for Goods Receipt Calculation | view |
Fields (3)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | PurchaseOrder | PurchaseOrder | ||
| KEY | PurchaseOrderItem | PurchaseOrderItem | ||
| GoodsReceiptQuantity | GoodsReceiptQuantity |
@AbapCatalog.sqlViewName: 'RPURDOCGRCALC'
@AbapCatalog.compiler.compareFilter: true
@AbapCatalog.preserveKey: true
@ClientHandling.algorithm: #SESSION_VARIABLE
@AccessControl.authorizationCheck: #PRIVILEGED_ONLY
@AccessControl.personalData.blocking: #NOT_REQUIRED
@ObjectModel.usageType.serviceQuality: #B
@ObjectModel.usageType.sizeCategory: #L
@ObjectModel.usageType.dataClass: #TRANSACTIONAL
@VDM.viewType: #COMPOSITE
@VDM.lifecycle.contract.type: #SAP_INTERNAL_API
@EndUserText.label: 'R view for Goods Receipt Calculation'
/* Reusable view created for calculation of GoodsReceipt calculation fields .
The view fetches the Goods Receipt Quantity from I_PurchaseOrderScheduleLine(table: EKET) for all the open Schedule Lines.
Intermediate P-view P_POItemGoodsReceiptCalc is created as the interface view I_PurchaseOrderScheduleLine: table - EKET is classified as BIG table and
the resultant View should not aggregate a huge number of table rows for direct access on a BIG table */
define view R_PurgDocGoodsReceiptCalc
as select from P_POItemGoodsReceiptCalc
{
key PurchaseOrder,
key PurchaseOrderItem,
GoodsReceiptQuantity
}
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"P_POITEMGOODSRECEIPTCALC"
],
"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