I_CollectionsStrategyText
Collections Strategy Text
I_CollectionsStrategyText is a Basic CDS View that provides data about "Collections Strategy Text" in SAP S/4HANA. It reads from 1 data source (udm_strategyt) and exposes 4 fields with key fields Language, CollectionStrategy. It has 1 association to related views. Part of development package UDM_COLL_CDS.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| udm_strategyt | udm_strategyt | from |
Associations (1)
| Cardinality | Target | Alias | Condition |
|---|---|---|---|
| [0..1] | I_Language | _Language | $projection.Language = _Language.Language |
Annotations (13)
| Name | Value | Level | Field |
|---|---|---|---|
| AbapCatalog.sqlViewName | ICOLLSSTRATTX | view | |
| AbapCatalog.compiler.compareFilter | true | view | |
| AbapCatalog.preserveKey | true | view | |
| AccessControl.authorizationCheck | #CHECK | view | |
| AccessControl.personalData.blocking | #BLOCKED_DATA_EXCLUDED | view | |
| EndUserText.label | Collections Strategy Text | view | |
| VDM.viewType | #BASIC | view | |
| VDM.lifecycle.contract.type | #PUBLIC_LOCAL_API | view | |
| ClientHandling.algorithm | #SESSION_VARIABLE | view | |
| ObjectModel.usageType.serviceQuality | #A | view | |
| ObjectModel.usageType.sizeCategory | #L | view | |
| ObjectModel.usageType.dataClass | #CUSTOMIZING | view | |
| ObjectModel.representativeKey | CollectionStrategy | view |
Fields (4)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | Language | language | ||
| KEY | CollectionStrategy | coll_strategy | ||
| CollStrgyName | strategy_txt | |||
| _Language | _Language |
@AbapCatalog: { sqlViewName: 'ICOLLSSTRATTX',
compiler: { compareFilter: true },
preserveKey: true }
@AccessControl: { authorizationCheck: #CHECK,
personalData: { blocking: #BLOCKED_DATA_EXCLUDED } }
@EndUserText: { label: 'Collections Strategy Text' }
@VDM: { viewType: #BASIC,
lifecycle: { contract: { type: #PUBLIC_LOCAL_API } } }
@ClientHandling: { algorithm: #SESSION_VARIABLE }
@ObjectModel: { usageType: { serviceQuality: #A,
sizeCategory: #L,
dataClass: #CUSTOMIZING },
semanticKey: [ 'CollectionStrategy' ],
representativeKey: 'CollectionStrategy' }
define view I_CollectionsStrategyText
as select from udm_strategyt
// VDM Associations
// Language
association [0..1] to I_Language as _Language on $projection.Language = _Language.Language
{
// VDM Fields
@Semantics: { language: true }
@ObjectModel: { foreignKey: { association: '_Language' } }
key language as Language,
key coll_strategy as CollectionStrategy,
@Semantics: { text: true }
strategy_txt as CollStrgyName,
// Exposed Associations
_Language
}
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