R_ProjNetworkControllingObject

DDL: R_PROJNETWORKCONTROLLINGOBJECT SQL: RFIONRNV Type: view BASIC

Controlling Object for Project Network

R_ProjNetworkControllingObject is a Basic CDS View that provides data about "Controlling Object for Project Network" in SAP S/4HANA. It reads from 1 data source (P_ONRNV) and exposes 7 fields with key field ControllingObject.

Data Sources (1)

SourceAliasJoin Type
P_ONRNV P_ONRNV from

Annotations (12)

NameValueLevelField
AbapCatalog.sqlViewName RFIONRNV view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.preserveKey true view
AccessControl.authorizationCheck #CHECK view
EndUserText.label Controlling Object for Project Network view
VDM.viewType #BASIC view
VDM.lifecycle.contract.type #SAP_INTERNAL_API view
ObjectModel.representativeKey ControllingObject view
ClientHandling.algorithm #SESSION_VARIABLE view
ObjectModel.usageType.dataClass #ORGANIZATIONAL view
ObjectModel.usageType.serviceQuality #C view
ObjectModel.usageType.sizeCategory #L view

Fields (7)

KeyFieldSource TableSource FieldDescription
KEY ControllingObject P_ONRNV objnr Val. Obj. No.
ControllingArea P_ONRNV kokrs Org. Value
CompanyCode P_ONRNV bukrs Value
AccountAssignmentType P_ONRNV obart Object type
OrderInternalID P_ONRNV aufpl TaskList No.Ops
ProjectNetwork P_ONRNV aufnr SettlementOrder
NetworkActivity P_ONRNV vornr Operation

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 R_ProjNetworkControllingObject.
-- 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: RFIONRNV

CREATE VIEW R_ProjNetworkControllingObject AS
SELECT
  P_ONRNV.objnr AS ControllingObject,
  P_ONRNV.kokrs AS ControllingArea,
  P_ONRNV.bukrs AS CompanyCode,
  P_ONRNV.obart AS AccountAssignmentType,
  P_ONRNV.aufpl AS OrderInternalID,
  P_ONRNV.aufnr AS ProjectNetwork,
  P_ONRNV.vornr AS NetworkActivity
FROM P_ONRNV
;