I_SemanticTag
Semantic Tag
I_SemanticTag is a Basic CDS View (Dimension) that provides data about "Semantic Tag" in SAP S/4HANA. It reads from 1 data source (finsc_sem_tag) and exposes 6 fields with key field SemanticTag. It has 3 associations to related views. Part of development package FINS_FI_SEM_TAG.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| finsc_sem_tag | finsc_sem_tag | from |
Associations (3)
| Cardinality | Target | Alias | Condition |
|---|---|---|---|
| [0..*] | I_SemanticTagText | _Text | $projection.SemanticTag = _Text.SemanticTag |
| [0..1] | I_SemanticTag | _ParentSemanticTag | $projection.ParentSemanticTag = _ParentSemanticTag.SemanticTag |
| [0..1] | I_SemanticTagGroup | _SemanticTagGroup | $projection.SemanticTagGroup = _SemanticTagGroup.SemanticTagGroup |
Annotations (15)
| Name | Value | Level | Field |
|---|---|---|---|
| EndUserText.label | Semantic Tag | view | |
| AbapCatalog.sqlViewName | IFISEMTAG | view | |
| AbapCatalog.preserveKey | true | view | |
| VDM.viewType | #BASIC | view | |
| AccessControl.authorizationCheck | #NOT_REQUIRED | view | |
| Analytics.dataCategory | #DIMENSION | view | |
| Analytics.dataExtraction.enabled | true | view | |
| ObjectModel.representativeKey | SemanticTag | view | |
| ObjectModel.usageType.sizeCategory | #S | view | |
| ObjectModel.usageType.serviceQuality | #D | view | |
| ObjectModel.usageType.dataClass | #MASTER | view | |
| ObjectModel.modelingPattern | #ANALYTICAL_DIMENSION | view | |
| ClientHandling.algorithm | #SESSION_VARIABLE | view | |
| Metadata.ignorePropagatedAnnotations | true | view | |
| ObjectModel.sapObjectNodeType.name | SemanticTag | view |
Fields (6)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | SemanticTag | fins_sem_tag | ||
| ParentSemanticTag | fins_sem_tag_parent | |||
| SemanticTagGroup | fins_sem_tag_group | |||
| _Text | _Text | |||
| _SemanticTagGroup | _SemanticTagGroup | |||
| _ParentSemanticTag | _ParentSemanticTag |
@EndUserText.label: 'Semantic Tag'
@AbapCatalog.sqlViewName: 'IFISEMTAG'
@AbapCatalog.preserveKey:true
@VDM.viewType: #BASIC
@AccessControl.authorizationCheck: #NOT_REQUIRED
@Analytics: {dataCategory: #DIMENSION, dataExtraction.enabled: true}
@ObjectModel.representativeKey: 'SemanticTag'
@ObjectModel.usageType.sizeCategory: #S
@ObjectModel.usageType.serviceQuality: #D
@ObjectModel.usageType.dataClass: #MASTER
@ObjectModel.modelingPattern: #ANALYTICAL_DIMENSION
@ObjectModel.supportedCapabilities: [ #ANALYTICAL_DIMENSION,
#SQL_DATA_SOURCE,
#CDS_MODELING_DATA_SOURCE,
#CDS_MODELING_ASSOCIATION_TARGET,
#EXTRACTION_DATA_SOURCE ]
@ClientHandling.algorithm: #SESSION_VARIABLE
@Metadata.ignorePropagatedAnnotations:true
@ObjectModel.sapObjectNodeType.name: 'SemanticTag'
define view I_SemanticTag
as select from finsc_sem_tag
association [0..*] to I_SemanticTagText as _Text on $projection.SemanticTag = _Text.SemanticTag
association [0..1] to I_SemanticTag as _ParentSemanticTag on $projection.ParentSemanticTag = _ParentSemanticTag.SemanticTag
association [0..1] to I_SemanticTagGroup as _SemanticTagGroup on $projection.SemanticTagGroup = _SemanticTagGroup.SemanticTagGroup
{
@ObjectModel.text.association: '_Text'
key fins_sem_tag as SemanticTag,
@ObjectModel.foreignKey.association: '_ParentSemanticTag'
fins_sem_tag_parent as ParentSemanticTag,
@ObjectModel.foreignKey.association: '_SemanticTagGroup'
fins_sem_tag_group as SemanticTagGroup,
_Text,
_SemanticTagGroup,
_ParentSemanticTag
}
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