I_CollectionsDueDateGrid

DDL: I_COLLECTIONSDUEDATEGRID Type: view COMPOSITE

Due Date Grid

I_CollectionsDueDateGrid is a Composite CDS View that provides data about "Due Date Grid" in SAP S/4HANA.

Annotations (12)

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

KeyFieldSource TableSource FieldDescription
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' }
// 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
}
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"I_BPCOLLECTIONSSEGMENTASSGMT"
],
"ASSOCIATED":
[
"I_BUSINESSPARTNER",
"I_COLLECTIONSEGMENT"
],
"BASE":
[
"I_BPCOLLECTIONSSEGMENTASSGMT"
],
"ANNO_REF":
[],
"SCALAR_FUNCTION":
[],
"VERSION":0,
"ANNOREF_EVALUATION_ERROR":""
}
}*/