I_PubSecCtrlObjCostCenter

DDL: I_PUBSECCTRLOBJCOSTCENTER SQL: IPUBSECCTRLCC Type: view COMPOSITE

Public Sector Control Object for a Cost Center

I_PubSecCtrlObjCostCenter (Composite)

Package: Explore, extend and adapt the SAP S/4HANA Cloud Private Edition with built-in and side-by-side extension capabilities.

Cross Applications

I_PubSecCtrlObjCostCenter is a Composite CDS View that provides data about "Public Sector Control Object for a Cost Center" in SAP S/4HANA. It has 3 associations to related views.

SAP API Hub

StateC1
Line of BusinessCross Applications
Application ComponentPSM-FM-BU-AC
CapabilitiesAnalytical Dimension
PackageCross Applications for SAP S/4HANA Cloud Private Edition

Documentation

Associations (3)

CardinalityTargetAliasCondition
[0..1] I_PubSecHierarchy _HierarchyDirectory $projection.HierarchyIDForCostCenter = _HierarchyDirectory.HierarchyID
[0..*] I_CostCenterText _CostCenterText $projection.HierarchyIDForCostCenter = _CostCenterText.ControllingArea and $projection.CtrlObjForCostCenter = _CostCenterText.CostCenter
[0..*] I_CostCenterHierarchyNodeT _CostCenterHierarchyNodeT $projection.HierarchyIDForCostCenter = _CostCenterHierarchyNodeT.CostCenterHierarchy and $projection.CtrlObjForCostCenter = _CostCenterHierarchyNodeT.HierarchyNode

Annotations (13)

NameValueLevelField
AbapCatalog.sqlViewName IPUBSECCTRLCC view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.preserveKey true view
AccessControl.authorizationCheck #CHECK view
EndUserText.label Public Sector Control Object for a Cost Center view
ClientHandling.type #CLIENT_DEPENDENT view
ClientHandling.algorithm #SESSION_VARIABLE view
ObjectModel.representativeKey CtrlObjForCostCenter view
ObjectModel.usageType.serviceQuality #C view
ObjectModel.usageType.sizeCategory #L view
ObjectModel.usageType.dataClass #MASTER view
VDM.viewType #COMPOSITE view
Metadata.ignorePropagatedAnnotations true view

Fields (3)

KeyFieldSource TableSource FieldDescription
KEY HierarchyIDForCostCenter Map HierarchyIDForCostCenter Hierarchy ID for Cost Center
KEY CtrlObjForCostCenter Map CtrlObjForCostCenter Control Object for a Cost Center
_HierarchyDirectory _HierarchyDirectory

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 I_PubSecCtrlObjCostCenter.
-- 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: IPUBSECCTRLCC

CREATE VIEW I_PubSecCtrlObjCostCenter AS
SELECT
  Map.HierarchyIDForCostCenter AS HierarchyIDForCostCenter,
  Map.CtrlObjForCostCenter AS CtrlObjForCostCenter
LEFT OUTER JOIN I_PubSecHierarchy AS _HierarchyDirectory ON HierarchyIDForCostCenter = _HierarchyDirectory.HierarchyID  -- association [0..1]
LEFT OUTER JOIN I_CostCenterText AS _CostCenterText ON HierarchyIDForCostCenter = _CostCenterText.ControllingArea AND CtrlObjForCostCenter = _CostCenterText.CostCenter  -- association [0..*]
LEFT OUTER JOIN I_CostCenterHierarchyNodeT AS _CostCenterHierarchyNodeT ON HierarchyIDForCostCenter = _CostCenterHierarchyNodeT.CostCenterHierarchy AND CtrlObjForCostCenter = _CostCenterHierarchyNodeT.HierarchyNode  -- association [0..*]
;