I_EAMProcessPhase

DDL: I_EAMPROCESSPHASE Type: view BASIC

EAM Process Phase

I_EAMProcessPhase (Basic)

Package: Explore, extend and adapt the SAP S/4HANA Cloud Private Edition with built-in and side-by-side extension capabilities.

Asset Management

I_EAMProcessPhase is a Basic CDS View (Dimension) that provides data about "EAM Process Phase" in SAP S/4HANA. It reads from 1 data source (dd07l) and exposes 3 fields with key field EAMProcessPhaseCode. It has 1 association to related views.

SAP API Hub

StateC1
Line of BusinessAsset Management
Application ComponentPM-WOC
CapabilitiesAnalytical Dimension, Association Target for Defining CDS Entities, Data Source for Defining CDS Entities, Data Source for Search, Data Source in SQL Select, Data Provider for Value Help
PackageAsset Management for SAP S/4HANA Cloud Private Edition

Documentation

Data Sources (1)

SourceAliasJoin Type
dd07l dd07l from

Associations (1)

CardinalityTargetAliasCondition
[0..*] I_EAMProcessPhaseText _EAMProcessPhaseText $projection.EAMProcessPhaseCode = _EAMProcessPhaseText.EAMProcessPhaseCode

Annotations (18)

NameValueLevelField
EndUserText.label EAM Process Phase view
ClientHandling.algorithm #SESSION_VARIABLE view
AbapCatalog.sqlViewName IEAMPROPHASE view
AbapCatalog.compiler.compareFilter true view
AccessControl.authorizationCheck #NOT_REQUIRED view
ObjectModel.representativeKey EAMProcessPhaseCode view
ObjectModel.usageType.dataClass #META view
ObjectModel.usageType.serviceQuality #C view
ObjectModel.usageType.sizeCategory #L view
ObjectModel.resultSet.sizeCategory #XS view
VDM.viewType #BASIC view
VDM.lifecycle.contract.type #PUBLIC_LOCAL_API view
Analytics.dataCategory #DIMENSION view
Analytics.internalName #LOCAL view
Search.searchable true view
ObjectModel.modelingPattern #ANALYTICAL_DIMENSION view
ObjectModel.dataCategory #VALUE_HELP view
Metadata.ignorePropagatedAnnotations true view

Fields (3)

KeyFieldSource TableSource FieldDescription
KEY EAMProcessPhaseCode Process Phase
DomainValue dd07l domvalue_l Values for Domains: Single Value/Lower Limit
_EAMProcessPhaseText _EAMProcessPhaseText

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_EAMProcessPhase.
-- 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_EAMProcessPhase AS
SELECT
  cast(dd07l.domvalue_l as eam_ostat_phase) AS EAMProcessPhaseCode,
  dd07l.domvalue_l AS DomainValue
FROM dd07l
LEFT OUTER JOIN I_EAMProcessPhaseText AS _EAMProcessPhaseText ON EAMProcessPhaseCode = _EAMProcessPhaseText.EAMProcessPhaseCode  -- association [0..*]
;