I_MaintEventConsequenceText

DDL: I_MAINTEVENTCONSEQUENCETEXT SQL: IMAINTEVTCNSQNCT Type: view BASIC

Text Consequence of Maintenance Event

I_MaintEventConsequenceText is a Basic CDS View that provides data about "Text Consequence of Maintenance Event" in SAP S/4HANA. It reads from 1 data source (eam_svrty_t) and exposes 6 fields with key fields Language, MaintEventCnsqncCategoryCode, MaintEventConsequenceCode. It has 2 associations to related views.

Data Sources (1)

SourceAliasJoin Type
eam_svrty_t eam_svrty_t from

Associations (2)

CardinalityTargetAliasCondition
[0..1] I_Language _Language $projection.Language = _Language.Language
[0..1] I_MaintEventCnsqncCategoryMap _MaintEventCnsqncCategoryMap $projection.MaintEventCnsqncCategoryCode = _MaintEventCnsqncCategoryMap.MaintEventCnsqncCategoryCode and $projection.MaintEventConsequenceCode = _MaintEventCnsqncCategoryMap.MaintEventConsequenceCode

Annotations (12)

NameValueLevelField
AbapCatalog.sqlViewName IMAINTEVTCNSQNCT view
AbapCatalog.compiler.compareFilter true view
AccessControl.authorizationCheck #CHECK view
EndUserText.label Text Consequence of Maintenance Event view
ObjectModel.representativeKey MaintEventConsequenceCode 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 (6)

KeyFieldSource TableSource FieldDescription
KEY Language language Report Text Language
KEY MaintEventCnsqncCategoryCode mainteventcnsqnccode Category ID
KEY MaintEventConsequenceCode mainteventsvrtycode Consequence ID
MaintEvtConsequenceDescription mainteventsvrtydescription Description
_Language _Language
_MaintEventCnsqncCategoryMap _MaintEventCnsqncCategoryMap

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_MaintEventConsequenceText.
-- 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: IMAINTEVTCNSQNCT

CREATE VIEW I_MaintEventConsequenceText AS
SELECT
  Language,
  mainteventcnsqnccode AS MaintEventCnsqncCategoryCode,
  mainteventsvrtycode AS MaintEventConsequenceCode,
  mainteventsvrtydescription AS MaintEvtConsequenceDescription
FROM eam_svrty_t
LEFT OUTER JOIN I_Language AS _Language ON Language = _Language.Language  -- association [0..1]
LEFT OUTER JOIN I_MaintEventCnsqncCategoryMap AS _MaintEventCnsqncCategoryMap ON MaintEventCnsqncCategoryCode = _MaintEventCnsqncCategoryMap.MaintEventCnsqncCategoryCode AND MaintEventConsequenceCode = _MaintEventCnsqncCategoryMap.MaintEventConsequenceCode  -- association [0..1]
;