I_SemanticTag

DDL: I_SEMANTICTAG SQL: IFISEMTAG Type: view BASIC Package: FINS_FI_SEM_TAG

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)

SourceAliasJoin Type
finsc_sem_tag finsc_sem_tag from

Associations (3)

CardinalityTargetAliasCondition
[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)

NameValueLevelField
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)

KeyFieldSource TableSource FieldDescription
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

}