Deprecated
This CDS view is deprecated in S/4HANA. Use I_PurgDocListStatus instead. View all deprecated CDS views →

C_PurgDocListSts

DDL: C_PURGDOCLISTSTS SQL: CPURGDOCLISTSTS Type: view CONSUMPTION Package: ODATA_MM_PUR_MYPURGDOCITEMS

Purchasing Document Status

C_PurgDocListSts is a Consumption CDS View that provides data about "Purchasing Document Status" in SAP S/4HANA. It reads from 1 data source (I_ProcurementDomainValues) and exposes 2 fields with key field PurchasingDocumentStatus. Part of development package ODATA_MM_PUR_MYPURGDOCITEMS.

Data Sources (1)

SourceAliasJoin Type
I_ProcurementDomainValues I_ProcurementDomainValues from

Annotations (15)

NameValueLevelField
AbapCatalog.sqlViewName CPURGDOCLISTSTS view
AbapCatalog.compiler.compareFilter true view
AccessControl.authorizationCheck #NOT_REQUIRED view
EndUserText.label Purchasing Document Status view
ClientHandling.algorithm #SESSION_VARIABLE view
VDM.viewType #CONSUMPTION view
AccessControl.personalData.blocking #NOT_REQUIRED view
Search.searchable true view
ObjectModel.usageType.serviceQuality #C view
ObjectModel.usageType.sizeCategory #L view
ObjectModel.usageType.dataClass #CUSTOMIZING view
ObjectModel.representativeKey PurchasingDocumentStatus view
ObjectModel.dataCategory #VALUE_HELP view
VDM.lifecycle.status #DEPRECATED view
VDM.lifecycle.successor I_PurgDocListStatus view

Fields (2)

KeyFieldSource TableSource FieldDescription
KEY PurchasingDocumentStatus DomainValue Status
PurchasingDocumentStatusName DomainText 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_PurgDocListSts.
-- 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: CPURGDOCLISTSTS

CREATE VIEW C_PurgDocListSts AS
SELECT
  DomainValue AS PurchasingDocumentStatus,
  DomainText AS PurchasingDocumentStatusName
FROM I_ProcurementDomainValues
;