I_MPStatusColour

DDL: I_MPSTATUSCOLOUR SQL: IMPSTATUSCLR Type: view BASIC Package: VDM_CPM_WS

Master Project Stattus Colour

I_MPStatusColour is a Basic CDS View that provides data about "Master Project Stattus Colour" in SAP S/4HANA. It reads from 1 data source (dd07t) and exposes 3 fields with key fields DomainValue, Language. Part of development package VDM_CPM_WS.

Data Sources (1)

SourceAliasJoin Type
dd07t _Text from

Annotations (10)

NameValueLevelField
AbapCatalog.sqlViewName IMPSTATUSCLR view
ClientHandling.algorithm #SESSION_VARIABLE view
VDM.viewType #BASIC view
AbapCatalog.compiler.compareFilter true view
ObjectModel.usageType.dataClass #META view
ObjectModel.usageType.serviceQuality #D view
ObjectModel.usageType.sizeCategory #L view
AccessControl.authorizationCheck #NOT_REQUIRED view
EndUserText.label Master Project Stattus Colour view
AbapCatalog.buffering.status #SWITCHED_OFF view

Fields (3)

KeyFieldSource TableSource FieldDescription
KEY DomainValue dd07t domvalue_l Lower Value
KEY Language dd07t ddlanguage Lang.
DomainText dd07t ddtext Short 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_MPStatusColour.
-- 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: IMPSTATUSCLR

CREATE VIEW I_MPStatusColour AS
SELECT
  _Text.domvalue_l AS DomainValue,
  _Text.ddlanguage AS Language,
  _Text.ddtext AS DomainText
FROM dd07t AS _Text
;