P_CollsInvoiceRelDCCounter
Related Dispute Case Counter
P_CollsInvoiceRelDCCounter is a Composite CDS View that provides data about "Related Dispute Case Counter" in SAP S/4HANA. It reads from 1 data source (I_CollsInvoiceRelatedDsputCase) and exposes 4 fields with key fields LogicalSystem, ObjectType, ObjectKey. Part of development package ODATA_PROCESS_RECEIVABLES.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| I_CollsInvoiceRelatedDsputCase | I_CollsInvoiceRelatedDsputCase | from |
Annotations (11)
| Name | Value | Level | Field |
|---|---|---|---|
| AbapCatalog.sqlViewName | PCOLLINVDCCNT | view | |
| AbapCatalog.compiler.compareFilter | true | view | |
| AbapCatalog.preserveKey | true | view | |
| AccessControl.authorizationCheck | #CHECK | view | |
| VDM.viewType | #COMPOSITE | view | |
| VDM.private | true | view | |
| ClientHandling.algorithm | #SESSION_VARIABLE | view | |
| ObjectModel.usageType.serviceQuality | #X | view | |
| ObjectModel.usageType.sizeCategory | #XL | view | |
| ObjectModel.usageType.dataClass | #TRANSACTIONAL | view | |
| ObjectModel.representativeKey | ObjectKey | view |
Fields (4)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | LogicalSystem | LogicalSystem | ||
| KEY | ObjectType | ObjectType | ||
| KEY | ObjectKey | ObjectKey | ||
| NumberOfDisputeCases |
@AbapCatalog: { sqlViewName: 'PCOLLINVDCCNT',
compiler: { compareFilter: true },
preserveKey: true }
@AccessControl: { authorizationCheck: #CHECK }
@VDM: { viewType: #COMPOSITE,
private: true }
@ClientHandling: { algorithm: #SESSION_VARIABLE }
@ObjectModel: { usageType: { serviceQuality: #X,
sizeCategory: #XL,
dataClass: #TRANSACTIONAL },
representativeKey: 'ObjectKey' }
define view P_CollsInvoiceRelDCCounter
as select from I_CollsInvoiceRelatedDsputCase
{
key LogicalSystem,
key ObjectType,
key ObjectKey,
sum( NumberOfDisputeCases ) as NumberOfDisputeCases
}
group by
LogicalSystem,
ObjectType,
ObjectKey
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