C_PurReqnProcessStatValueHelp

DDL: C_PURREQNPROCESSSTATVALUEHELP SQL: CPURREQPRSSTATVH Type: view CONSUMPTION

Processing status of purchase requisition

C_PurReqnProcessStatValueHelp is a Consumption CDS View that provides data about "Processing status of purchase requisition" in SAP S/4HANA. It reads from 1 data source (I_Processingstatus) and exposes 2 fields with key field ProcessingStatus.

Data Sources (1)

SourceAliasJoin Type
I_Processingstatus I_Processingstatus from

Annotations (15)

NameValueLevelField
AbapCatalog.sqlViewName CPURREQPRSSTATVH view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.preserveKey true view
AccessControl.authorizationCheck #NOT_REQUIRED view
EndUserText.label Processing status of purchase requisition view
VDM.viewType #CONSUMPTION view
Search.searchable true view
ObjectModel.representativeKey ProcessingStatus view
ClientHandling.type #INHERITED view
VDM.lifecycle.contract.type #NONE view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.sizeCategory #L view
ObjectModel.usageType.dataClass #CUSTOMIZING view
ObjectModel.dataCategory #VALUE_HELP view
Consumption.ranked true view

Fields (2)

KeyFieldSource TableSource FieldDescription
KEY ProcessingStatus ProcessingStatus Processing Status
DomainText Processing Status Description

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 C_PurReqnProcessStatValueHelp.
-- 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: CPURREQPRSSTATVH

CREATE VIEW C_PurReqnProcessStatValueHelp AS
SELECT
  ProcessingStatus,
  _Text[1: Language = $session.system_language].ProcessingStatusName AS DomainText
FROM I_Processingstatus
;