P_ContractItemRelQuan
Private view for Purchase Contract Item Released Quantity
P_ContractItemRelQuan is a Consumption CDS View that provides data about "Private view for Purchase Contract Item Released Quantity" in SAP S/4HANA. It reads from 1 data source (I_PurchaseContractItem) and exposes 3 fields with key fields PurchaseContract, PurchaseContractItem.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| I_PurchaseContractItem | I_PurchaseContractItem | from |
Annotations (7)
| Name | Value | Level | Field |
|---|---|---|---|
| VDM.viewType | #CONSUMPTION | view | |
| AbapCatalog.sqlViewName | PCTRITMRELQUAN | view | |
| ClientDependent | true | view | |
| AbapCatalog.compiler.compareFilter | true | view | |
| AccessControl.authorizationCheck | #NOT_REQUIRED | view | |
| VDM.private | true | view | |
| EndUserText.label | Private view for Purchase Contract Item Released Quantity | view |
Fields (3)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | PurchaseContract | I_PurchaseContractItem | PurchaseContract | |
| KEY | PurchaseContractItem | I_PurchaseContractItem | PurchaseContractItem | |
| ReleasedQuantity |
@VDM.viewType: #CONSUMPTION
@AbapCatalog.sqlViewName: 'PCTRITMRELQUAN'
@ClientDependent: true
@AbapCatalog.compiler.compareFilter: true
@AccessControl.authorizationCheck: #NOT_REQUIRED
@VDM.private:true
@EndUserText.label: 'Private view for Purchase Contract Item Released Quantity'
define view P_ContractItemRelQuan as select from I_PurchaseContractItem
{
key I_PurchaseContractItem.PurchaseContract,
key I_PurchaseContractItem.PurchaseContractItem,
sum (_PurchaseContractHistory.ReleaseOrderItemOrderQuantity) as ReleasedQuantity
}
group by
PurchaseContract,
PurchaseContractItem
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"I_PURCHASECONTRACTHISTORY",
"I_PURCHASECONTRACTITEM"
],
"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