RRP_E_GRGIPOOC_ALL

DDL: RRP_DDL_PO_OC_ALL SQL: RRP_V_PO_OC_ALL Type: view

Purchase Orders and Order Confirmations

RRP_E_GRGIPOOC_ALL is a CDS View that provides data about "Purchase Orders and Order Confirmations" in SAP S/4HANA. It reads from 1 data source (rrp_e_GrGiPoOc) and exposes 3 fields.

Data Sources (1)

SourceAliasJoin Type
rrp_e_GrGiPoOc rrp_e_GrGiPoOc from

Annotations (8)

NameValueLevelField
AbapCatalog.sqlViewName RRP_V_PO_OC_ALL view
EndUserText.label Purchase Orders and Order Confirmations view
AbapCatalog.compiler.compareFilter true view
AccessControl.authorizationCheck #NOT_REQUIRED view
ObjectModel.usageType.serviceQuality #X view
ObjectModel.usageType.sizeCategory #XL view
ObjectModel.usageType.dataClass #MIXED view
ClientHandling.algorithm #SESSION_VARIABLE view

Fields (3)

KeyFieldSource TableSource FieldDescription
process_id process_id Process Instance ID
werks werks Receiving Plant
matnr matnr Vehicle Model

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 RRP_E_GRGIPOOC_ALL.
-- 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: RRP_V_PO_OC_ALL

CREATE VIEW RRP_E_GRGIPOOC_ALL AS
SELECT
  process_id,
  werks,
  matnr
FROM rrp_e_GrGiPoOc
;