I_COLLECTIONGROUP
Collection Group
I_COLLECTIONGROUP is a CDS View in S/4HANA. Collection Group. It contains 1 fields. 3 CDS views read from this table.
CDS Views using this table (3)
| View | Type | Join | VDM | Description |
|---|---|---|---|---|
| I_CollectionsGroupVH | view | from | COMPOSITE | Collections Group Value Help |
| P_CollMgmtRblsItmForKeyDte3 | view | inner | COMPOSITE | Collection Management Receivables items for key date |
| P_CollsStratPeriod | view | inner | COMPOSITE | Collection Strategy Periods |
Fields (1)
| Key | Field | CDS Fields | Used in Views |
|---|---|---|---|
| CollectionStrategy | CollectionStrategy | 2 |
@EndUserText.label: 'Collection Group'
@Analytics: { dataCategory: #DIMENSION, dataExtraction.enabled: true }
@VDM.viewType: #BASIC
@AbapCatalog.sqlViewName: 'ICOLLGRP'
@AccessControl.authorizationCheck: #NOT_REQUIRED
@ClientHandling.algorithm: #SESSION_VARIABLE
@Metadata.ignorePropagatedAnnotations:true
@ObjectModel.representativeKey: 'CollectionGroup'
@ObjectModel.usageType.serviceQuality: #D
@ObjectModel.usageType.sizeCategory: #S
@ObjectModel.usageType.dataClass: #CUSTOMIZING
@ObjectModel.sapObjectNodeType.name: 'CollectionsGroup'
@ObjectModel.supportedCapabilities: [#SQL_DATA_SOURCE,
#CDS_MODELING_DATA_SOURCE,
#CDS_MODELING_ASSOCIATION_TARGET,
#ANALYTICAL_DIMENSION,
#EXTRACTION_DATA_SOURCE ]
define view I_CollectionGroup
as select from udm_coll_grp
association [0..*] to I_CollectionGroupText as _Text on $projection.CollectionGroup = _Text.CollectionGroup
association [0..1] to I_CollectionsStrategy as _CollectionsStrategy on $projection.CollectionStrategy = _CollectionsStrategy.CollectionStrategy
{
@ObjectModel.text.association: '_Text'
key cast(coll_group as udm_coll_group preserving type) as CollectionGroup,
coll_strategy as CollectionStrategy,
_Text,
_CollectionsStrategy
};