I_MaintEventLikelihoodText

DDL: I_MAINTEVENTLIKELIHOODTEXT SQL: IMAINTEVTLKLIHDT Type: view BASIC

Text Likelihood of Maintenance Event

I_MaintEventLikelihoodText is a Basic CDS View that provides data about "Text Likelihood of Maintenance Event" in SAP S/4HANA. It reads from 1 data source (eam_occren_t) and exposes 5 fields with key fields Language, MaintEventLikelihoodCode. It has 2 associations to related views.

Data Sources (1)

SourceAliasJoin Type
eam_occren_t eam_occren_t from

Associations (2)

CardinalityTargetAliasCondition
[0..1] I_Language _Language $projection.Language = _Language.Language
[0..1] I_MaintenanceEventLikelihood _MaintenanceEventLikelihood $projection.MaintEventLikelihoodCode = _MaintenanceEventLikelihood.MaintEventLikelihoodCode

Annotations (12)

NameValueLevelField
AbapCatalog.sqlViewName IMAINTEVTLKLIHDT view
AbapCatalog.compiler.compareFilter true view
AccessControl.authorizationCheck #CHECK view
EndUserText.label Text Likelihood of Maintenance Event view
ObjectModel.representativeKey MaintEventLikelihoodCode view
VDM.viewType #BASIC view
AbapCatalog.preserveKey true view
ClientHandling.algorithm #SESSION_VARIABLE view
ObjectModel.usageType.dataClass #CUSTOMIZING view
ObjectModel.usageType.serviceQuality #X view
ObjectModel.usageType.sizeCategory #S view
ObjectModel.dataCategory #TEXT view

Fields (5)

KeyFieldSource TableSource FieldDescription
KEY Language language Report Text Language
KEY MaintEventLikelihoodCode mainteventoccrencode Likelihood ID
MaintEvtLikelihoodDescription mainteventoccrendescription Description
_Language _Language
_MaintenanceEventLikelihood _MaintenanceEventLikelihood

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_MaintEventLikelihoodText.
-- 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: IMAINTEVTLKLIHDT

CREATE VIEW I_MaintEventLikelihoodText AS
SELECT
  Language,
  mainteventoccrencode AS MaintEventLikelihoodCode,
  mainteventoccrendescription AS MaintEvtLikelihoodDescription
FROM eam_occren_t
LEFT OUTER JOIN I_Language AS _Language ON Language = _Language.Language  -- association [0..1]
LEFT OUTER JOIN I_MaintenanceEventLikelihood AS _MaintenanceEventLikelihood ON MaintEventLikelihoodCode = _MaintenanceEventLikelihood.MaintEventLikelihoodCode  -- association [0..1]
;