A_EntProjProcessingStatusText

DDL: A_ENTPROJPROCESSINGSTATUSTEXT Type: view_entity BASIC

Project Processing Status Description

A_EntProjProcessingStatusText is a Basic CDS View that provides data about "Project Processing Status Description" in SAP S/4HANA. It reads from 1 data source (I_EntProjProcessingStatusText) and exposes 3 fields with key fields Language, ProcessingStatus.

Data Sources (1)

SourceAliasJoin Type
I_EntProjProcessingStatusText I_EntProjProcessingStatusText projection

Annotations (9)

NameValueLevelField
EndUserText.label Project Processing Status Description view
AccessControl.authorizationCheck #NOT_REQUIRED view
Metadata.ignorePropagatedAnnotations true view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.dataClass #CUSTOMIZING view
ObjectModel.usageType.sizeCategory #S view
Search.searchable true view
VDM.lifecycle.contract.type #PUBLIC_REMOTE_API view
VDM.viewType #BASIC view

Fields (3)

KeyFieldSource TableSource FieldDescription
KEY Language Language Report Text Language
KEY ProcessingStatus ProcessingStatus Worklist Status
ProcessingStatusText ProcessingStatusText

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 A_EntProjProcessingStatusText.
-- 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 A_EntProjProcessingStatusText AS
SELECT
  Language,
  ProcessingStatus,
  ProcessingStatusText
FROM I_EntProjProcessingStatusText
;