I_ProcessOrderStatus

DDL: I_PROCESSORDERSTATUS Type: view_entity BASIC

Process Orders Status Management

I_ProcessOrderStatus is a Basic CDS View that provides data about "Process Orders Status Management" in SAP S/4HANA. It reads from 1 data source (jest) and exposes 2 fields with key fields StatusObject, StatusCode.

Data Sources (1)

SourceAliasJoin Type
jest jest from

Annotations (7)

NameValueLevelField
AccessControl.authorizationCheck #NOT_REQUIRED view
EndUserText.label Process Orders Status Management view
Metadata.ignorePropagatedAnnotations true view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.sizeCategory #XL view
ObjectModel.usageType.dataClass #TRANSACTIONAL view
VDM.viewType #BASIC view

Fields (2)

KeyFieldSource TableSource FieldDescription
KEY StatusObject objnr Val. Obj. No.
KEY StatusCode stat Status of Time-Dependent Document Linkage

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_ProcessOrderStatus.
-- 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 I_ProcessOrderStatus AS
SELECT
  objnr AS StatusObject,
  stat AS StatusCode
FROM jest
;