R_CostObjectControllingObject

DDL: R_COSTOBJECTCONTROLLINGOBJECT SQL: RFIONRHP Type: view BASIC

Controlling Object for Cost Object

R_CostObjectControllingObject is a Basic CDS View that provides data about "Controlling Object for Cost Object" in SAP S/4HANA. It reads from 1 data source (P_ONRHP) and exposes 5 fields with key field ControllingObject.

Data Sources (1)

SourceAliasJoin Type
P_ONRHP P_ONRHP from

Annotations (12)

NameValueLevelField
AbapCatalog.sqlViewName RFIONRHP view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.preserveKey true view
AccessControl.authorizationCheck #CHECK view
EndUserText.label Controlling Object for Cost Object 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 #TRANSACTIONAL view
ObjectModel.usageType.serviceQuality #C view
ObjectModel.usageType.sizeCategory #L view

Fields (5)

KeyFieldSource TableSource FieldDescription
KEY ControllingObject P_ONRHP objnr Val. Obj. No.
ControllingArea P_ONRHP kokrs Org. Value
CompanyCode P_ONRHP bukrs Value
AccountAssignmentType P_ONRHP OBART Object type
CostObject P_ONRHP kstrg Cost Objects

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_CostObjectControllingObject.
-- 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: RFIONRHP

CREATE VIEW R_CostObjectControllingObject AS
SELECT
  P_ONRHP.objnr AS ControllingObject,
  P_ONRHP.kokrs AS ControllingArea,
  P_ONRHP.bukrs AS CompanyCode,
  P_ONRHP.OBART AS AccountAssignmentType,
  P_ONRHP.kstrg AS CostObject
FROM P_ONRHP
;