I_MDChangeProcStatusT

DDL: I_MDCHANGEPROCSTATUST SQL: IMDCPROCSTATUST Type: view BASIC

MD Change Process Status Text

I_MDChangeProcStatusT is a Basic CDS View that provides data about "MD Change Process Status Text" in SAP S/4HANA. It reads from 1 data source (dd07t) and exposes 5 fields with key fields MDChgProcessStatus, Language. It has 2 associations to related views.

Data Sources (1)

SourceAliasJoin Type
dd07t dd07t from

Associations (2)

CardinalityTargetAliasCondition
[0..1] I_MDChangeProcStatus _MDChangeProcStatus $projection.MDChgProcessStatus = _MDChangeProcStatus.MDChgProcessStatus
[0..1] I_Language _Language $projection.Language = _Language.Language

Annotations (12)

NameValueLevelField
AbapCatalog.sqlViewName IMDCPROCSTATUST view
AbapCatalog.compiler.compareFilter true view
AccessControl.authorizationCheck #NOT_REQUIRED view
ClientHandling.algorithm #SESSION_VARIABLE view
ObjectModel.usageType.sizeCategory #S view
ObjectModel.usageType.dataClass #CUSTOMIZING view
ObjectModel.usageType.serviceQuality #C view
ObjectModel.representativeKey MDChgProcessStatus view
ObjectModel.dataCategory #TEXT view
VDM.viewType #BASIC view
EndUserText.label MD Change Process Status Text view
Search.searchable true view

Fields (5)

KeyFieldSource TableSource FieldDescription
KEY MDChgProcessStatus
KEY Language ddlanguage Lang.
MDChgProcessStatusName ddtext Change Process Status
_MDChangeProcStatus _MDChangeProcStatus
_Language _Language

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_MDChangeProcStatusT.
-- 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: IMDCPROCSTATUST

CREATE VIEW I_MDChangeProcStatusT AS
SELECT
  cast( left(domvalue_l, 1) as mdc_process_status preserving type ) AS MDChgProcessStatus,
  ddlanguage AS Language,
  ddtext AS MDChgProcessStatusName
FROM dd07t
LEFT OUTER JOIN I_MDChangeProcStatus AS _MDChangeProcStatus ON MDChgProcessStatus = _MDChangeProcStatus.MDChgProcessStatus  -- association [0..1]
LEFT OUTER JOIN I_Language AS _Language ON Language = _Language.Language  -- association [0..1]
;