I_CollectionsPaymentTrend
Payment Trend
I_CollectionsPaymentTrend is a Composite CDS View that provides data about "Payment Trend" in SAP S/4HANA. It reads from 1 data source (P_CollsPaymentTrend) and exposes 7 fields with key fields Customer, CollectionSegment, FiscalPeriod.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| P_CollsPaymentTrend | P_CollsPaymentTrend | from |
Annotations (12)
| Name | Value | Level | Field |
|---|---|---|---|
| AbapCatalog.sqlViewName | ICOLLSPAYMTREND | view | |
| AbapCatalog.compiler.compareFilter | true | view | |
| AbapCatalog.preserveKey | true | view | |
| AccessControl.authorizationCheck | #CHECK | view | |
| AccessControl.personalData.blocking | #BLOCKED_DATA_EXCLUDED | view | |
| EndUserText.label | Payment Trend | view | |
| VDM.viewType | #COMPOSITE | view | |
| ClientHandling.algorithm | #SESSION_VARIABLE | view | |
| ObjectModel.usageType.serviceQuality | #C | view | |
| ObjectModel.usageType.sizeCategory | #L | view | |
| ObjectModel.usageType.dataClass | #TRANSACTIONAL | view | |
| ObjectModel.representativeKey | Customer | view |
Fields (7)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | Customer | Customer | ||
| KEY | CollectionSegment | CollectionSegment | ||
| KEY | FiscalPeriod | FiscalPeriod | ||
| NetDueArrearsDays | NetDueArrearsDays | |||
| IsHeadOffice | ||||
| _CollectionSegment | _CollectionSegment | |||
| _Customer | _Customer |
@AbapCatalog: { sqlViewName: 'ICOLLSPAYMTREND',
compiler: { compareFilter: true },
preserveKey: true }
@AccessControl: { authorizationCheck: #CHECK,
personalData: { blocking: #BLOCKED_DATA_EXCLUDED } }
@EndUserText: { label: 'Payment Trend' }
@VDM: { viewType: #COMPOSITE }
@ClientHandling: { algorithm: #SESSION_VARIABLE }
@ObjectModel: { usageType: { serviceQuality: #C,
sizeCategory: #L,
dataClass: #TRANSACTIONAL },
semanticKey: [ 'Customer',
'CollectionSegment',
'FiscalPeriod' ],
representativeKey: 'Customer' }
define root view I_CollectionsPaymentTrend
as select from P_CollsPaymentTrend
{
// VDM Fields
key Customer,
key CollectionSegment,
key FiscalPeriod,
NetDueArrearsDays,
cast( '' as boolean ) as IsHeadOffice,
// Exposed Associations
_CollectionSegment,
_Customer
}
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"P_COLLSPAYMENTTREND"
],
"ASSOCIATED":
[
"I_COLLECTIONSEGMENT",
"I_CUSTOMER"
],
"BASE":
[
"P_COLLSPAYMENTTREND"
],
"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