RRP_E_GRGIPO_ALL

DDL: RRP_DDL_PO_ALL SQL: RRP_V_GRGIPO_ALL Type: view

RRP: Aggregated Goods Receipts and Issues from PO

RRP_E_GRGIPO_ALL is a CDS View that provides data about "RRP: Aggregated Goods Receipts and Issues from PO" in SAP S/4HANA. It reads from 1 data source (rrp_e_GrGiPo) and exposes 3 fields.

Data Sources (1)

SourceAliasJoin Type
rrp_e_GrGiPo rrp_e_GrGiPo from

Annotations (7)

NameValueLevelField
AbapCatalog.sqlViewName RRP_V_GRGIPO_ALL view
EndUserText.label RRP: Aggregated Goods Receipts and Issues from PO 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_GRGIPO_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_GRGIPO_ALL

CREATE VIEW RRP_E_GRGIPO_ALL AS
SELECT
  process_id,
  werks,
  matnr
FROM rrp_e_GrGiPo
;