I_PurReqnReleaseStatus

DDL: I_PURREQNRELEASESTATUS SQL: IPURREQNRELSTS Type: view BASIC

Release Status of Purchase Requisition

I_PurReqnReleaseStatus (Basic)

Package: Explore, extend and adapt the SAP S/4HANA Cloud Private Edition with built-in and side-by-side extension capabilities.

Sourcing & Procurement

I_PurReqnReleaseStatus is a Basic CDS View (Dimension) that provides data about "Release Status of Purchase Requisition" in SAP S/4HANA. It reads from 1 data source (dd07l) and exposes 2 fields with key field PurReqnReleaseStatus. It has 1 association to related views.

SAP Help Documentation

CategoryCDS Views for Purchase Requisitions
Data CategoryBasic
StatusReleased
Purpose
This view provides supported values for PURREQNRELEASESTATUS. The values and their meanings are: Purchase Requisition Release Status Release Status Description 01 Version in Process 02 Active 03 In Release 04 For Overall Release 05 Release Completed 08 Release Refused

View on SAP Help Portal →

SAP API Hub

StateC1
Line of BusinessSourcing & Procurement
Application ComponentMM-PUR-REQ
CapabilitiesData Source for Defining CDS Entities, Analytical Dimension, Association Target for Defining CDS Entities, Data Source in SQL Select
PackageSourcing & Procurement for SAP S/4HANA Cloud Private Edition
Description This view provides supported values for PURREQNRELEASESTATUS. The values and their meanings are:Purchase Requisition Release Status <p>Release Status</p> <p>Description</p> <p>01</p> <p>Version in Process</p> <p>02</p> <p>Active</p> <p>03</p> <p>In Release</p> <p>04</p> <p>For Overall Release</p> <p>05</p> <p>Release Completed</p> <p>08</p> <p>Release Refused</p>

Documentation

Data Sources (1)

SourceAliasJoin Type
dd07l dd07l from

Associations (1)

CardinalityTargetAliasCondition
[0..*] I_PurReqnReleaseStatusText _Text $projection.PurReqnReleaseStatus = _Text.PurReqnReleaseStatus

Annotations (12)

NameValueLevelField
AbapCatalog.sqlViewName IPURREQNRELSTS view
AbapCatalog.compiler.compareFilter true view
Analytics.dataCategory #DIMENSION view
VDM.viewType #BASIC view
AccessControl.authorizationCheck #NOT_REQUIRED view
EndUserText.label Release Status of Purchase Requisition view
ObjectModel.representativeKey PurReqnReleaseStatus view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.sizeCategory #S view
ObjectModel.usageType.dataClass #CUSTOMIZING view
ClientHandling.algorithm #SESSION_VARIABLE view
Metadata.ignorePropagatedAnnotations true view

Fields (2)

KeyFieldSource TableSource FieldDescription
KEY PurReqnReleaseStatus Requisition Processing State
_Text _Text

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_PurReqnReleaseStatus.
-- 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: IPURREQNRELSTS

CREATE VIEW I_PurReqnReleaseStatus AS
SELECT
  cast(domvalue_l as banpr) AS PurReqnReleaseStatus
FROM dd07l
LEFT OUTER JOIN I_PurReqnReleaseStatusText AS _Text ON PurReqnReleaseStatus = _Text.PurReqnReleaseStatus  -- association [0..*]
;