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

Derived SQL interpretation, reconstructed from the parsed view metadata (data sources, associations, and field mappings). SAP annotations are omitted and the structure is reformulated as SQL — this is a functional approximation, not the verbatim SAP source.

-- Derived SQL interpretation of CDS view I_MaintenanceJobSelection.
-- Reconstructed from parsed metadata (data sources, associations, fields).
-- SAP annotations are omitted and the structure is reformulated as SQL;
-- this is a functional approximation, not the verbatim SAP source. Some join
-- conditions may be unavailable and a few CDS constructs are kept as-is.
-- SQL view name: IMTJBSELVH

CREATE VIEW I_MaintenanceJobSelection AS
SELECT
  cast( I_DomainFixedValue.DomainValue as eams_ui_myself_myteam ) AS MaintenanceJobSelection
FROM I_DomainFixedValue
LEFT OUTER JOIN I_MaintenanceJobSelectionText AS _Text ON _Text.MaintenanceJobSelection = MaintenanceJobSelection  -- association [0..*]
;