ARUN_PROD_REQMT

DDL: ARUN_PROD_REQMT SQL: V_ARUN_PRD_REQMT Type: view

Production order components

ARUN_PROD_REQMT is a CDS View that provides data about "Production order components" in SAP S/4HANA. It reads from 4 data sources (Arun_Com_Ralloc, aufk, nsdm_e_marc, resb) and exposes 13 fields.

Data Sources (4)

SourceAliasJoin Type
Arun_Com_Ralloc ar left_outer
aufk au from
nsdm_e_marc mr left_outer
resb re inner

Annotations (8)

NameValueLevelField
AbapCatalog.sqlViewName V_ARUN_PRD_REQMT view
AbapCatalog.compiler.compareFilter true view
AccessControl.authorizationCheck #NOT_REQUIRED view
ObjectModel.usageType.sizeCategory #XXL view
ObjectModel.usageType.serviceQuality #X view
ObjectModel.usageType.dataClass #TRANSACTIONAL view
AccessControl.personalData.blocking #REQUIRED view
EndUserText.label Production order components view

Fields (13)

KeyFieldSource TableSource FieldDescription
mandt resb mandt Editing Client
rsnum resb rsnum Reservation
rspos resb rspos Item no.
aufnr resb aufnr SettlementOrder
matnr resb matnr Vehicle Model
werks resb werks Receiving Plant
meins resb meins Valuation Unit
enmng resb enmng Withdrawal Qty
webaz resb webaz GR Proc. Time
sgt_scat resb sgt_scat Stock Segment
sgt_rcat resb sgt_rcat Req. Segment
alloc_qty
charg resb charg Chargeable Proc.

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 ARUN_PROD_REQMT.
-- 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: V_ARUN_PRD_REQMT

CREATE VIEW ARUN_PROD_REQMT AS
SELECT
  re.mandt AS mandt,
  re.rsnum AS rsnum,
  re.rspos AS rspos,
  re.aufnr AS aufnr,
  re.matnr AS matnr,
  re.werks AS werks,
  re.meins AS meins,
  re.enmng AS enmng,
  re.webaz AS webaz,
  re.sgt_scat AS sgt_scat,
  re.sgt_rcat AS sgt_rcat,
  case when ar.alloc_qty > 0 then ar.alloc_qty else 0 end AS alloc_qty,
  re.charg AS charg
FROM aufk AS au
INNER JOIN resb AS re ON /* join condition not captured in parsed metadata */
LEFT OUTER JOIN Arun_Com_Ralloc AS ar ON /* join condition not captured in parsed metadata */
LEFT OUTER JOIN nsdm_e_marc AS mr ON /* join condition not captured in parsed metadata */
;