I_MaintenanceJobSelection

DDL: I_MAINTENANCEJOBSELECTION SQL: IMTJBSELVH Type: view BASIC

Maintenance Job Selection Values

I_MaintenanceJobSelection is a Basic CDS View that provides data about "Maintenance Job Selection Values" in SAP S/4HANA. It reads from 1 data source (I_DomainFixedValue) and exposes 2 fields with key field MaintenanceJobSelection. It has 1 association to related views.

Data Sources (1)

SourceAliasJoin Type
I_DomainFixedValue I_DomainFixedValue from

Associations (1)

CardinalityTargetAliasCondition
[0..*] I_MaintenanceJobSelectionText _Text _Text.MaintenanceJobSelection = $projection.MaintenanceJobSelection

Annotations (10)

NameValueLevelField
EndUserText.label Maintenance Job Selection Values view
VDM.viewType #BASIC view
AccessControl.authorizationCheck #NOT_REQUIRED view
AbapCatalog.sqlViewName IMTJBSELVH view
ClientHandling.algorithm #SESSION_VARIABLE view
ObjectModel.representativeKey MaintenanceJobSelection view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.sizeCategory #S view
ObjectModel.usageType.dataClass #CUSTOMIZING view
ObjectModel.resultSet.sizeCategory #XS view

Fields (2)

KeyFieldSource TableSource FieldDescription
KEY MaintenanceJobSelection
_Text _Text
@EndUserText.label: 'Maintenance Job Selection Values' //same as DDL description

@VDM.viewType: #BASIC
@AccessControl.authorizationCheck: #NOT_REQUIRED //or #CHECK

@AbapCatalog.sqlViewName: 'IMTJBSELVH'
@ClientHandling.algorithm:           #SESSION_VARIABLE

@ObjectModel: {
  representativeKey: 'MaintenanceJobSelection',
  usageType: {
    serviceQuality: #A,
    sizeCategory:   #S,
    dataClass:      #CUSTOMIZING
  },
  resultSet:{sizeCategory: #XS}
}
define view I_MaintenanceJobSelection
  as select from I_DomainFixedValue
  association [0..*] to I_MaintenanceJobSelectionText as _Text on _Text.MaintenanceJobSelection = $projection.MaintenanceJobSelection
{
      @ObjectModel.text.association: '_Text'
  key cast( I_DomainFixedValue.DomainValue as eams_ui_myself_myteam ) as MaintenanceJobSelection,

      _Text
}
where
      SAPDataDictionaryDomain =  'EAMS_UI_MYSELF_MYTEAM'
      and DomainValue <> '0'