rrp_e_StockMard

DDL: RRP_DDL_STOCK_MARD SQL: RRP_V_STOCK_MARD Type: view

RRP: Read Stock Values for MARD from MATDOC

rrp_e_StockMard is a CDS View that provides data about "RRP: Read Stock Values for MARD from MATDOC" in SAP S/4HANA. It reads from 2 data sources (wrrp_ctrl, V_WRF_MARD_MRP) and exposes 3 fields.

Data Sources (2)

SourceAliasJoin Type
wrrp_ctrl ctrl from
V_WRF_MARD_MRP mard inner

Annotations (7)

NameValueLevelField
AbapCatalog.sqlViewName RRP_V_STOCK_MARD view
EndUserText.label RRP: Read Stock Values for MARD from MATDOC 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 wrrp_ctrl process_id Process Instance ID
werks wrrp_ctrl werks Receiving Plant
matnr wrrp_ctrl 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_StockMard.
-- 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_STOCK_MARD

CREATE VIEW rrp_e_StockMard AS
SELECT
  ctrl.process_id AS process_id,
  ctrl.werks AS werks,
  ctrl.matnr AS matnr
FROM wrrp_ctrl AS ctrl
INNER JOIN V_WRF_MARD_MRP AS mard ON /* join condition not captured in parsed metadata */
;