I_JobStatusValueHelp
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)
| Source | Alias | Join Type |
|---|---|---|
| dd07t | dd07t | from |
Annotations (12)
| Name | Value | Level | Field |
|---|---|---|---|
| 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)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| 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
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