C_SemanticTagValueHelp

DDL: C_SEMANTICTAGVALUEHELP SQL: CSEMTAGVH Type: view CONSUMPTION Package: ODATA_PS_COS_PROJCOSTLINEITEM

Semantic Tag Value Help

C_SemanticTagValueHelp is a Consumption CDS View that provides data about "Semantic Tag Value Help" in SAP S/4HANA. It reads from 1 data source (I_SemanticTag) and exposes 2 fields with key field SemanticTag. It is used in 1 Fiori application: Project Cost Report - Overview. Part of development package ODATA_PS_COS_PROJCOSTLINEITEM.

Data Sources (1)

SourceAliasJoin Type
I_SemanticTag I_SemanticTag from

Annotations (13)

NameValueLevelField
EndUserText.label Semantic Tag Value Help view
AbapCatalog.sqlViewName CSEMTAGVH view
VDM.viewType #CONSUMPTION view
AccessControl.authorizationCheck #NOT_REQUIRED view
AbapCatalog.compiler.compareFilter true view
ObjectModel.representativeKey SemanticTag view
ObjectModel.usageType.sizeCategory #S view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.dataClass #MASTER view
ClientHandling.algorithm #SESSION_VARIABLE view
OData.publish true view
Search.searchable true view
AbapCatalog.preserveKey true view

Fiori Apps (1)

App IDApp NameTypeDescription
F2513 Project Cost Report - Overview Analytical An application to compare the plan versus actual costs of a project.

Project Cost Report - Overview

Business Role: Project Financial Controller

This feature enables you to easily monitor aggregated and non-aggregated project costs by allowing you to compare plan costs with actual costs. You can also monitor the variance and costs at individual line item level, configure two cost planning categories and use one category for calculation of variance. You can also enter the level to which a project tree has to be expanded, and view cost details of multiple projects or WBS elements from different projects and hierarchies.

Fields (2)

KeyFieldSource TableSource FieldDescription
KEY SemanticTag SemanticTag Cost Component
SemanticTagName Cost Component Name
@EndUserText.label: 'Semantic Tag Value Help'
@AbapCatalog.sqlViewName: 'CSEMTAGVH'
@VDM.viewType: #CONSUMPTION
@AccessControl.authorizationCheck: #NOT_REQUIRED
@AbapCatalog.compiler.compareFilter: true
@ObjectModel.representativeKey: 'SemanticTag'
@ObjectModel.usageType.sizeCategory: #S
@ObjectModel.usageType.serviceQuality: #A
@ObjectModel.usageType.dataClass: #MASTER
@ClientHandling.algorithm: #SESSION_VARIABLE
@OData.publish: true
@Search.searchable: true
@AbapCatalog.preserveKey:true

define view C_SemanticTagValueHelp
  as select from I_SemanticTag
{
      @ObjectModel.text.element:  [ 'SemanticTagName' ]
      @EndUserText.label: 'Cost Component'
      @EndUserText.quickInfo: 'Cost Component'
      @Search: { defaultSearchElement: true, ranking: #LOW }
  key SemanticTag,
      @Semantics.text: true
      @EndUserText.label: 'Cost Component Name'
      @EndUserText.quickInfo: 'Cost Component Name'
      @Search: { defaultSearchElement: true, ranking: #HIGH }
      @Search.fuzzinessThreshold: 0.8 
      _Text[1:Language =  $session.system_language].SemanticTagName as SemanticTagName
}