I_PPM_StatusAreaCodeText

DDL: I_PPM_STATUSAREACODETEXT Type: view BASIC

PPM Project Status Area Code Text

I_PPM_StatusAreaCodeText is a Basic CDS View that provides data about "PPM Project Status Area Code Text" in SAP S/4HANA. It reads from 1 data source (/s4ppm/statareat) and exposes 5 fields with key fields Language, StatusArea. It has 2 associations to related views.

Data Sources (1)

SourceAliasJoin Type
/s4ppm/statareat /s4ppm/statareat from

Associations (2)

CardinalityTargetAliasCondition
[0..1] I_PPM_StatusAreaCode _Key $projection.StatusArea = _Key.StatusArea
[0..1] I_Language _Language $projection.Language = _Language.Language

Annotations (13)

NameValueLevelField
EndUserText.label PPM Project Status Area Code Text view
ClientHandling.algorithm #SESSION_VARIABLE view
VDM.viewType #BASIC view
VDM.lifecycle.contract.type #SAP_INTERNAL_API view
AccessControl.authorizationCheck #NOT_REQUIRED view
AbapCatalog.sqlViewName IPPMSTATAREACODT view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.preserveKey true view
ObjectModel.dataCategory #TEXT view
ObjectModel.representativeKey StatusArea view
ObjectModel.usageType.serviceQuality #D view
ObjectModel.usageType.dataClass #CUSTOMIZING view
ObjectModel.usageType.sizeCategory #S view

Fields (5)

KeyFieldSource TableSource FieldDescription
KEY Language language Report Text Language
KEY StatusArea status_area_status Status Area
StatusAreaDescription description Status Area Description
_Key _Key
_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_PPM_StatusAreaCodeText.
-- 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.

CREATE VIEW I_PPM_StatusAreaCodeText AS
SELECT
  Language,
  status_area_status AS StatusArea,
  description AS StatusAreaDescription
FROM /s4ppm/statareat
LEFT OUTER JOIN I_PPM_StatusAreaCode AS _Key ON StatusArea = _Key.StatusArea  -- association [0..1]
LEFT OUTER JOIN I_Language AS _Language ON Language = _Language.Language  -- association [0..1]
;