I_EAMProcessPhase

DDL: I_EAMPROCESSPHASE Type: view_entity BASIC Package: EAM_OVRL_STS

EAM Process Phase

I_EAMProcessPhase is a Basic CDS View that provides data about "EAM Process Phase" in SAP S/4HANA. It reads from 1 data source (dd07l) and exposes 2 fields with key field EAMProcessPhaseCode. It has 1 association to related views. It is exposed through 3 OData services (ASQL_F3423, ASQL_F5105, ASQL_F8725). Part of development package EAM_OVRL_STS.

Data Sources (1)

SourceAliasJoin Type
dd07l dd07l from

Associations (1)

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

Annotations (9)

NameValueLevelField
EndUserText.label EAM Process Phase view
AccessControl.authorizationCheck #NOT_REQUIRED view
ObjectModel.representativeKey EAMProcessPhaseCode view
ObjectModel.usageType.dataClass #META view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.sizeCategory #L view
ObjectModel.resultSet.sizeCategory #XS view
Analytics.technicalName IEAMPROPHASE view
VDM.viewType #BASIC view

OData Services (3)

ServiceBindingVersionContractRelease
ASQL_F3423 ASQL_F3423 C2 NOT_RELEASED
ASQL_F5105 ASQL_F5105 C2 NOT_RELEASED
ASQL_F8725 ASQL_F8725 C2 NOT_RELEASED

Fields (2)

KeyFieldSource TableSource FieldDescription
KEY EAMProcessPhaseCode
_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
FROM dd07l
LEFT OUTER JOIN I_EAMProcessPhaseText AS _EAMProcessPhaseText ON EAMProcessPhaseCode = _EAMProcessPhaseText.EAMProcessPhaseCode  -- association [0..*]
;