I_CollectionsDueDateGrid
Due Date Grid
I_CollectionsDueDateGrid is a Composite CDS View that provides data about "Due Date Grid" in SAP S/4HANA. Part of development package UDM_COLL_CDS.
Annotations (12)
| Name | Value | Level | Field |
|---|---|---|---|
| AbapCatalog.sqlViewName | ICOLLSDDGR | view | |
| AbapCatalog.compiler.compareFilter | true | view | |
| AbapCatalog.preserveKey | true | view | |
| AccessControl.authorizationCheck | #CHECK | view | |
| AccessControl.personalData.blocking | #BLOCKED_DATA_EXCLUDED | view | |
| EndUserText.label | Due Date Grid | view | |
| VDM.viewType | #COMPOSITE | view | |
| ClientHandling.algorithm | #SESSION_VARIABLE | view | |
| ObjectModel.usageType.serviceQuality | #X | view | |
| ObjectModel.usageType.sizeCategory | #L | view | |
| ObjectModel.usageType.dataClass | #TRANSACTIONAL | view | |
| ObjectModel.representativeKey | AgingPeriod | view |
Fields (9)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | BusinessPartner | BusinessPartner | ||
| KEY | CollectionSegment | CollectionSegment | ||
| KEY | AgingPeriod | |||
| AmountInCollsStrategyCurrency | ||||
| CollStrgyCurrency | ||||
| Criticality | ||||
| IsHeadOffice | ||||
| _BusinessPartner | _BusinessPartner | |||
| _CollectionSegment | _CollectionSegment |
@AbapCatalog: { sqlViewName: 'ICOLLSDDGR',
compiler: { compareFilter: true },
preserveKey: true }
@AccessControl: { authorizationCheck: #CHECK,
personalData: { blocking: #BLOCKED_DATA_EXCLUDED } }
@EndUserText: { label: 'Due Date Grid' }
@VDM: { viewType: #COMPOSITE }
@ClientHandling: { algorithm: #SESSION_VARIABLE }
@ObjectModel: { usageType: { serviceQuality: #X,
sizeCategory: #L,
dataClass: #TRANSACTIONAL },
semanticKey: [ 'BusinessPartner', 'CollectionSegment', 'AgingPeriod' ],
representativeKey: 'AgingPeriod' }
@Consumption: { dbHints: [ 'USE_HEX_PLAN' ] }
// This is a dummy view - The Calculation of the Due Data Grid will be performed via a code exit in ABAP on the
// Consumption View
define root view I_CollectionsDueDateGrid
as select distinct from I_BPCollectionsSegmentAssgmt
{
// VDM Fields
key BusinessPartner,
key CollectionSegment,
key cast( 0 as integer ) as AgingPeriod,
@Semantics: { amount: { currencyCode: 'CollStrgyCurrency' } }
cast( 0 as wertv8 ) as AmountInCollsStrategyCurrency,
@Semantics: { currencyCode: true }
cast( '' as waers ) as CollStrgyCurrency,
cast( '' as char1 ) as Criticality,
cast( '' as boolean ) as IsHeadOffice,
// Exposed Associations
_BusinessPartner,
_CollectionSegment
}
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