R_ServiceDocControllingObject

DDL: R_SERVICEDOCCONTROLLINGOBJECT SQL: RFIONRSV Type: view BASIC

Controlling Object for Service Document

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

Data Sources (1)

SourceAliasJoin Type
P_ONRSV P_ONRSV from

Annotations (12)

NameValueLevelField
AbapCatalog.sqlViewName RFIONRSV view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.preserveKey true view
AccessControl.authorizationCheck #CHECK view
EndUserText.label Controlling Object for Service Document 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 (7)

KeyFieldSource TableSource FieldDescription
KEY ControllingObject P_ONRSV objnr Val. Obj. No.
ControllingArea P_ONRSV kokrs Org. Value
CompanyCode P_ONRSV bukrs Value
AccountAssignmentType P_ONRSV OBART Object type
ServiceDocumentType P_ONRSV service_doc_type Transaction Type
ServiceDocument P_ONRSV service_doc_id Transaction ID
ServiceDocumentItem P_ONRSV service_doc_item_id Service Doc. Item

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_ServiceDocControllingObject.
-- 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: RFIONRSV

CREATE VIEW R_ServiceDocControllingObject AS
SELECT
  P_ONRSV.objnr AS ControllingObject,
  P_ONRSV.kokrs AS ControllingArea,
  P_ONRSV.bukrs AS CompanyCode,
  P_ONRSV.OBART AS AccountAssignmentType,
  P_ONRSV.service_doc_type AS ServiceDocumentType,
  P_ONRSV.service_doc_id AS ServiceDocument,
  P_ONRSV.service_doc_item_id AS ServiceDocumentItem
FROM P_ONRSV
;