I_CollectionSegment
Collection Segment
I_CollectionSegment is a Basic CDS View (Dimension) that provides data about "Collection Segment" in SAP S/4HANA. It reads from 1 data source (udm_coll_sgmt) and exposes 3 fields with key field CollectionSegment. It has 1 association to related views.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| udm_coll_sgmt | udm_coll_sgmt | from |
Associations (1)
| Cardinality | Target | Alias | Condition |
|---|---|---|---|
| [0..*] | I_CollectionSegmentText | _Text | $projection.CollectionSegment = _Text.CollectionSegment |
Annotations (13)
| Name | Value | Level | Field |
|---|---|---|---|
| EndUserText.label | Collection Segment | view | |
| Analytics.dataCategory | #DIMENSION | view | |
| Analytics.dataExtraction.enabled | true | view | |
| VDM.viewType | #BASIC | view | |
| AbapCatalog.sqlViewName | ICOLLSGMT | view | |
| AccessControl.authorizationCheck | #NOT_REQUIRED | view | |
| ClientHandling.algorithm | #SESSION_VARIABLE | view | |
| Metadata.ignorePropagatedAnnotations | true | view | |
| ObjectModel.representativeKey | CollectionSegment | view | |
| ObjectModel.usageType.serviceQuality | #D | view | |
| ObjectModel.usageType.sizeCategory | #S | view | |
| ObjectModel.usageType.dataClass | #CUSTOMIZING | view | |
| Metadata.allowExtensions | true | view |
Fields (3)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | CollectionSegment | |||
| IsReleased | xreleased | |||
| _Text | _Text |
@EndUserText.label: 'Collection Segment'
@Analytics: { dataCategory: #DIMENSION, dataExtraction.enabled: true }
@VDM.viewType: #BASIC
@AbapCatalog.sqlViewName: 'ICOLLSGMT'
@AccessControl.authorizationCheck: #NOT_REQUIRED
@ClientHandling.algorithm: #SESSION_VARIABLE
@Metadata.ignorePropagatedAnnotations:true
@ObjectModel.representativeKey: 'CollectionSegment'
@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 ]
@Metadata.allowExtensions:true
define view I_CollectionSegment
as select from udm_coll_sgmt
association [0..*] to I_CollectionSegmentText as _Text on $projection.CollectionSegment = _Text.CollectionSegment
{
@ObjectModel.text.association: '_Text'
key cast(coll_segment as farp_collection_segment preserving type) as CollectionSegment,
xreleased as IsReleased,
_Text
};
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"UDM_COLL_SGMT"
],
"ASSOCIATED":
[
"I_COLLECTIONSEGMENTTEXT"
],
"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