I_CollectionGroup
Collection Group
I_CollectionGroup is a Basic CDS View (Dimension) that provides data about "Collection Group" in SAP S/4HANA. It reads from 1 data source (udm_coll_grp) and exposes 4 fields with key field CollectionGroup. It has 2 associations to related views.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| udm_coll_grp | udm_coll_grp | from |
Associations (2)
| Cardinality | Target | Alias | Condition |
|---|---|---|---|
| [0..*] | I_CollectionGroupText | _Text | $projection.CollectionGroup = _Text.CollectionGroup |
| [0..1] | I_CollectionsStrategy | _CollectionsStrategy | $projection.CollectionStrategy = _CollectionsStrategy.CollectionStrategy |
Annotations (12)
| Name | Value | Level | Field |
|---|---|---|---|
| EndUserText.label | Collection Group | view | |
| Analytics.dataCategory | #DIMENSION | view | |
| Analytics.dataExtraction.enabled | true | view | |
| VDM.viewType | #BASIC | view | |
| AbapCatalog.sqlViewName | ICOLLGRP | view | |
| AccessControl.authorizationCheck | #NOT_REQUIRED | view | |
| ClientHandling.algorithm | #SESSION_VARIABLE | view | |
| Metadata.ignorePropagatedAnnotations | true | view | |
| ObjectModel.representativeKey | CollectionGroup | view | |
| ObjectModel.usageType.serviceQuality | #D | view | |
| ObjectModel.usageType.sizeCategory | #S | view | |
| ObjectModel.usageType.dataClass | #CUSTOMIZING | view |
Fields (4)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | CollectionGroup | |||
| CollectionStrategy | coll_strategy | |||
| _Text | _Text | |||
| _CollectionsStrategy | _CollectionsStrategy |
@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.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
};
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"UDM_COLL_GRP"
],
"ASSOCIATED":
[
"I_COLLECTIONGROUPTEXT",
"I_COLLECTIONSSTRATEGY"
],
"BASE":
[],
"ANNO_REF":
[],
"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