I_EAMProcessSubPhase

DDL: I_EAMPROCESSSUBPHASE SQL: IEAMPROCSP Type: view BASIC

Process Subphase

I_EAMProcessSubPhase (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_EAMProcessSubPhase is a Basic CDS View (Dimension) that provides data about "Process Subphase" in SAP S/4HANA. It reads from 1 data source (eam_ostat_sph) and exposes 2 fields with key field EAMProcessSubPhaseCode. It has 1 association to related views.

SAP Help Documentation

CategoryCDS Views for Maintenance Management
Purpose
This CDS view helps you retrieve the subphases. This CDS view provides the data to answer the following business questions: Which process subphase can you set for a maintenance order? To help you decide which CDS view to use for your purposes, SAP has introduced the annotation ObjectModel.supportedCapabilities that indicates the most appropriate use cases for each CDS view. To find out what use cases are best supported by this CDS view, access the entry of the CDS view in the View Browser app and find the values for this annotation under the Annotation tab. For more information, see Supported Capabilities for CDS Views .

Prerequisites
Authorizations Users who want to use this CDS view don't need any special authorization.

Structure
Important Fields Important fields in this view include the following: Field Name Description EAMProcessSubPhaseCode Process Subphase

View on SAP Help Portal →

SAP API Hub

StateC1
Line of BusinessAsset Management
Application ComponentPM-WOC
CapabilitiesData Source for Defining CDS Entities, Association Target for Defining CDS Entities, Analytical Dimension
PackageAsset Management for SAP S/4HANA Cloud Private Edition

Documentation

Data Sources (1)

SourceAliasJoin Type
eam_ostat_sph eam_ostat_sph from

Associations (1)

CardinalityTargetAliasCondition
[0..*] I_EAMProcessSubPhaseText _EAMProcessSubPhaseText $projection.EAMProcessSubPhaseCode = _EAMProcessSubPhaseText.EAMProcessSubPhaseCode

Annotations (16)

NameValueLevelField
AbapCatalog.sqlViewName IEAMPROCSP view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.preserveKey true view
AccessControl.authorizationCheck #NOT_REQUIRED view
EndUserText.label Process Subphase view
ObjectModel.representativeKey EAMProcessSubPhaseCode view
ObjectModel.usageType.dataClass #META view
ObjectModel.usageType.serviceQuality #C view
ObjectModel.usageType.sizeCategory #L view
VDM.viewType #BASIC view
ClientHandling.algorithm #SESSION_VARIABLE view
ObjectModel.resultSet.sizeCategory #XS view
ObjectModel.modelingPattern #ANALYTICAL_DIMENSION view
Metadata.ignorePropagatedAnnotations true view
Analytics.dataCategory #DIMENSION view
Analytics.internalName #LOCAL view

Fields (2)

KeyFieldSource TableSource FieldDescription
KEY EAMProcessSubPhaseCode eamovrlprocsubphase Process Subphase
_EAMProcessSubPhaseText _EAMProcessSubPhaseText

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_EAMProcessSubPhase.
-- 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: IEAMPROCSP

CREATE VIEW I_EAMProcessSubPhase AS
SELECT
  eamovrlprocsubphase AS EAMProcessSubPhaseCode
FROM eam_ostat_sph
LEFT OUTER JOIN I_EAMProcessSubPhaseText AS _EAMProcessSubPhaseText ON EAMProcessSubPhaseCode = _EAMProcessSubPhaseText.EAMProcessSubPhaseCode  -- association [0..*]
;