I_JobStatusValueHelp

DDL: I_JOBSTATUSVALUEHELP Type: view_entity BASIC Package: FCLM_REUSE

Job Status - Text

I_JobStatusValueHelp is a Basic CDS View that provides data about "Job Status - Text" in SAP S/4HANA. It reads from 1 data source (dd07t) and exposes 4 fields with key fields Language, ApplicationJobStatus. Part of development package FCLM_REUSE.

Data Sources (1)

SourceAliasJoin Type
dd07t dd07t from

Annotations (12)

NameValueLevelField
AccessControl.authorizationCheck #NOT_REQUIRED view
EndUserText.label Job Status - Text view
Metadata.ignorePropagatedAnnotations true view
Search.searchable true view
Consumption.ranked true view
ObjectModel.dataCategory #VALUE_HELP view
ObjectModel.representativeKey ApplicationJobStatus view
ObjectModel.usageType.dataClass #MASTER view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.sizeCategory #M view
ObjectModel.resultSet.sizeCategory #XS view
VDM.viewType #BASIC view

Fields (4)

KeyFieldSource TableSource FieldDescription
KEY Language
KEY ApplicationJobStatus
DomainValue dd07t domvalue_l
ApplicationJobStatusText
@AbapCatalog.viewEnhancementCategory: [#NONE]
@AccessControl.authorizationCheck: #NOT_REQUIRED
@EndUserText.label: 'Job Status - Text'
@Metadata.ignorePropagatedAnnotations: true
@Search.searchable: true
@Consumption.ranked: true
@ObjectModel: {
  dataCategory: #VALUE_HELP,
  representativeKey: 'ApplicationJobStatus',
  usageType: { dataClass: #MASTER,
               serviceQuality: #A,
               sizeCategory: #M
  },
  resultSet.sizeCategory:#XS
}
@VDM.viewType: #BASIC
define view entity I_JobStatusValueHelp 
as select from dd07t
{
      @UI.hidden: true
      @Semantics.language: true
  key cast( dd07t.ddlanguage as spras preserving type ) as Language,
      @ObjectModel.text.element: ['ApplicationJobStatusText']
  key cast( dd07t.domvalue_l as fclm_jobstatus )   as ApplicationJobStatus,
      
      @Analytics.hidden: true
      @Consumption.hidden: true
      dd07t.domvalue_l                                  as DomainValue,
      
      @Search.defaultSearchElement: true
      @Search.fuzzinessThreshold: 0.8
      @Search.ranking: #HIGH
      @Semantics.text: true
      cast( dd07t.ddtext as val_text preserving type )  as ApplicationJobStatusText

}
where
      dd07t.domname  = 'FCLM_JOBSTATUS'
  and dd07t.as4local = 'A'
  and dd07t.as4vers  = '0000'
  and dd07t.ddlanguage = $session.system_language