I_ProcMonProcessStatusText

DDL: I_PROCMONPROCESSSTATUSTEXT SQL: IPOCPROCSTATTEXT Type: view BASIC Package: BS_POC_CDS

Process Observer: ProcessStatusName

I_ProcMonProcessStatusText is a Basic CDS View that provides data about "Process Observer: ProcessStatusName" in SAP S/4HANA. It reads from 1 data source (dd07t) and exposes 5 fields with key fields ProcObsvrProcessStatus, Language. It has 2 associations to related views. It is exposed through 1 OData service (ASQL_F2242). Part of development package BS_POC_CDS.

Data Sources (1)

SourceAliasJoin Type
dd07t dd07t from

Associations (2)

CardinalityTargetAliasCondition
[0..1] I_ProcMonProcessStatus _ProcMonProcessStatus $projection.ProcObsvrProcessStatus = _ProcMonProcessStatus.ProcObsvrProcessStatus
[0..1] I_Language _Language $projection.Language = _Language.Language

Annotations (10)

NameValueLevelField
AbapCatalog.sqlViewName IPOCPROCSTATTEXT view
EndUserText.label Process Observer: ProcessStatusName view
VDM.viewType #BASIC view
ObjectModel.dataCategory #TEXT view
ObjectModel.representativeKey ProcObsvrProcessStatus view
AccessControl.authorizationCheck #NOT_REQUIRED view
ObjectModel.usageType.serviceQuality A view
ObjectModel.usageType.sizeCategory L view
ObjectModel.usageType.dataClass CUSTOMIZING view
ClientHandling.algorithm #SESSION_VARIABLE view

OData Services (1)

ServiceBindingVersionContractRelease
ASQL_F2242 ASQL_F2242 C2 NOT_RELEASED

Fields (5)

KeyFieldSource TableSource FieldDescription
KEY ProcObsvrProcessStatus
KEY Language ddlanguage Lang.
ProcObsvrProcessStatusName Short text
_ProcMonProcessStatus _ProcMonProcessStatus
_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_ProcMonProcessStatusText.
-- 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: IPOCPROCSTATTEXT

CREATE VIEW I_ProcMonProcessStatusText AS
SELECT
  cast ( substring( domvalue_l, 1, 1 ) as poc_process_system_status ) AS ProcObsvrProcessStatus,
  ddlanguage AS Language,
  cast( ddtext as poc_process_sys_status_desc) AS ProcObsvrProcessStatusName
FROM dd07t
LEFT OUTER JOIN I_ProcMonProcessStatus AS _ProcMonProcessStatus ON ProcObsvrProcessStatus = _ProcMonProcessStatus.ProcObsvrProcessStatus  -- association [0..1]
LEFT OUTER JOIN I_Language AS _Language ON Language = _Language.Language  -- association [0..1]
;