I_CollectionsPaymentTrend

DDL: I_COLLECTIONSPAYMENTTREND Type: view COMPOSITE

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)

SourceAliasJoin Type
P_CollsPaymentTrend P_CollsPaymentTrend from

Annotations (12)

NameValueLevelField
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)

KeyFieldSource TableSource FieldDescription
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":""
}
}*/