I_MaintenanceJobSelectionText
Maintenance Job Selection Values
I_MaintenanceJobSelectionText is a Basic CDS View (Text) that provides data about "Maintenance Job Selection Values" in SAP S/4HANA. It reads from 1 data source (I_DomainFixedValueText) and exposes 5 fields with key fields MaintenanceJobSelection, Language. It has 2 associations to related views.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| I_DomainFixedValueText | I_DomainFixedValueText | from |
Associations (2)
| Cardinality | Target | Alias | Condition |
|---|---|---|---|
| [0..1] | I_Language | _Language | $projection.Language = _Language.Language |
| [1..1] | I_MaintenanceJobSelection | _MaintenanceJobSelection | $projection.MaintenanceJobSelection = _MaintenanceJobSelection.MaintenanceJobSelection |
Annotations (10)
| Name | Value | Level | Field |
|---|---|---|---|
| EndUserText.label | Maintenance Job Selection Values | view | |
| Analytics.dataCategory | #TEXT | view | |
| VDM.viewType | #BASIC | view | |
| AccessControl.authorizationCheck | #NOT_REQUIRED | view | |
| AbapCatalog.sqlViewName | IMTJOBSELT | view | |
| ClientHandling.algorithm | #SESSION_VARIABLE | view | |
| ObjectModel.usageType.serviceQuality | #A | view | |
| ObjectModel.usageType.sizeCategory | #S | view | |
| ObjectModel.usageType.dataClass | #CUSTOMIZING | view | |
| ObjectModel.representativeKey | MaintenanceJobSelection | view |
Fields (5)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | MaintenanceJobSelection | DomainValue | ||
| KEY | Language | Language | ||
| MaintenanceJobSelectionText | DomainText | |||
| _MaintenanceJobSelection | _MaintenanceJobSelection | |||
| _Language | _Language |
@EndUserText.label: 'Maintenance Job Selection Values'
@Analytics.dataCategory: #TEXT
@VDM.viewType: #BASIC
@AccessControl.authorizationCheck: #NOT_REQUIRED
@AbapCatalog.sqlViewName: 'IMTJOBSELT'
@ClientHandling.algorithm: #SESSION_VARIABLE
@ObjectModel: {
usageType: {
serviceQuality: #A,
sizeCategory: #S,
dataClass: #CUSTOMIZING
},
representativeKey: 'MaintenanceJobSelection'
}
define view I_MaintenanceJobSelectionText
as select from I_DomainFixedValueText
association [0..1] to I_Language as _Language on $projection.Language = _Language.Language
association [1..1] to I_MaintenanceJobSelection as _MaintenanceJobSelection on $projection.MaintenanceJobSelection = _MaintenanceJobSelection.MaintenanceJobSelection
{
@ObjectModel.text.element: [ 'MaintenanceJobSelectionText' ]
key DomainValue as MaintenanceJobSelection,
@Semantics.language: true
key Language as Language,
@Semantics.text: true
DomainText as MaintenanceJobSelectionText,
_MaintenanceJobSelection,
_Language
}
where
SAPDataDictionaryDomain = 'EAMS_UI_MYSELF_MYTEAM'
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"I_DOMAINFIXEDVALUETEXT"
],
"ASSOCIATED":
[
"I_LANGUAGE",
"I_MAINTENANCEJOBSELECTION"
],
"BASE":
[],
"VERSION":0
}
}*/
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