I_PubSecCtrlObjFund

DDL: I_PUBSECCTRLOBJFUND SQL: IPUBSECCTRLFU Type: view COMPOSITE

Public Sector Control Object for a Fund

I_PubSecCtrlObjFund (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_PubSecCtrlObjFund is a Composite CDS View that provides data about "Public Sector Control Object for a Fund" 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.HierarchyIDForFund = _HierarchyDirectory.HierarchyID
[0..*] I_FundHierarchyNodeText _FundHierarchyNodeText $projection.HierarchyIDForFund = _FundHierarchyNodeText.FundHierarchy and $projection.CtrlObjForFund = _FundHierarchyNodeText.HierarchyNode
[0..*] I_FundText _FundText $projection.HierarchyIDForFund = _FundText.FinancialManagementArea and $projection.CtrlObjForFund = _FundText.Fund

Annotations (13)

NameValueLevelField
AbapCatalog.sqlViewName IPUBSECCTRLFU view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.preserveKey true view
AccessControl.authorizationCheck #CHECK view
EndUserText.label Public Sector Control Object for a Fund view
ClientHandling.type #CLIENT_DEPENDENT view
ClientHandling.algorithm #SESSION_VARIABLE view
ObjectModel.representativeKey CtrlObjForFund 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 HierarchyIDForFund Map HierarchyIDForFund Hierarchy ID for Fund
KEY CtrlObjForFund Map CtrlObjForFund Control Object for a Fund
_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_PubSecCtrlObjFund.
-- 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: IPUBSECCTRLFU

CREATE VIEW I_PubSecCtrlObjFund AS
SELECT
  Map.HierarchyIDForFund AS HierarchyIDForFund,
  Map.CtrlObjForFund AS CtrlObjForFund
LEFT OUTER JOIN I_PubSecHierarchy AS _HierarchyDirectory ON HierarchyIDForFund = _HierarchyDirectory.HierarchyID  -- association [0..1]
LEFT OUTER JOIN I_FundHierarchyNodeText AS _FundHierarchyNodeText ON HierarchyIDForFund = _FundHierarchyNodeText.FundHierarchy AND CtrlObjForFund = _FundHierarchyNodeText.HierarchyNode  -- association [0..*]
LEFT OUTER JOIN I_FundText AS _FundText ON HierarchyIDForFund = _FundText.FinancialManagementArea AND CtrlObjForFund = _FundText.Fund  -- association [0..*]
;