P_ONRNV

DDL: P_ONRNV SQL: PFIONRNV Type: view BASIC

P_ONRNV is a Basic CDS View in SAP S/4HANA. It reads from 2 data sources (P_ONRNV1, tka02) and exposes 8 fields with key field objnr.

Data Sources (2)

SourceAliasJoin Type
P_ONRNV1 P_ONRNV1 from
tka02 tka02 inner

Annotations (8)

NameValueLevelField
AbapCatalog.sqlViewName PFIONRNV view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.preserveKey true view
VDM.viewType #BASIC view
AccessControl.authorizationCheck #NOT_REQUIRED view
VDM.private true view
ClientHandling.algorithm #SESSION_VARIABLE view
AbapCatalog.buffering.status #NOT_ALLOWED view

Fields (8)

KeyFieldSource TableSource FieldDescription
KEY objnr P_ONRNV1 objnr Val. Obj. No.
aufpl P_ONRNV1 aufpl TaskList No.Ops
aplzl P_ONRNV1 aplzl Plan No.f.Oper.
kokrs tka02 kokrs Org. Value
bukrs P_ONRNV1 bukrs Value
aufnr P_ONRNV1 aufnr SettlementOrder
vornr P_ONRNV1 vornr Operation
obart P_ONRNV1 OBART Object type

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 P_ONRNV.
-- 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: PFIONRNV

CREATE VIEW P_ONRNV AS
SELECT
  P_ONRNV1.objnr AS objnr,
  P_ONRNV1.aufpl AS aufpl,
  P_ONRNV1.aplzl AS aplzl,
  tka02.kokrs AS kokrs,
  P_ONRNV1.bukrs AS bukrs,
  P_ONRNV1.aufnr AS aufnr,
  P_ONRNV1.vornr AS vornr,
  P_ONRNV1.OBART AS obart
FROM P_ONRNV1
INNER JOIN tka02 ON /* join condition not captured in parsed metadata */
;