I_PubSecCtrlObjWBSElement

DDL: I_PUBSECCTRLOBJWBSELEMENT SQL: IPUBSECCTRLWB Type: view COMPOSITE

Public Sector Control Object for a WBS Element

I_PubSecCtrlObjWBSElement (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_PubSecCtrlObjWBSElement is a Composite CDS View that provides data about "Public Sector Control Object for a WBS Element" 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.HierarchyIDForWBSElement = _HierarchyDirectory.HierarchyID
[0..1] I_WBSElementByExternalID _WBSElement $projection.CtrlObjForWBSElement = _WBSElement.WBSElementExternalID
[0..*] I_WBSElementHierarchyNodeText _WBSElementHierarchyNodeText $projection.HierarchyIDForWBSElement = _WBSElementHierarchyNodeText.WBSElementHierarchy and $projection.CtrlObjForWBSElement = _WBSElementHierarchyNodeText.HierarchyNode

Annotations (13)

NameValueLevelField
AbapCatalog.sqlViewName IPUBSECCTRLWB view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.preserveKey true view
AccessControl.authorizationCheck #CHECK view
EndUserText.label Public Sector Control Object for a WBS Element view
ClientHandling.type #CLIENT_DEPENDENT view
ClientHandling.algorithm #SESSION_VARIABLE view
ObjectModel.representativeKey CtrlObjForWBSElement 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 HierarchyIDForWBSElement Map HierarchyIDForWBSElement Hierarchy ID for WBS Element
KEY CtrlObjForWBSElement Map CtrlObjForWBSElement Control Object for a WBS Element
_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_PubSecCtrlObjWBSElement.
-- 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: IPUBSECCTRLWB

CREATE VIEW I_PubSecCtrlObjWBSElement AS
SELECT
  Map.HierarchyIDForWBSElement AS HierarchyIDForWBSElement,
  Map.CtrlObjForWBSElement AS CtrlObjForWBSElement
LEFT OUTER JOIN I_PubSecHierarchy AS _HierarchyDirectory ON HierarchyIDForWBSElement = _HierarchyDirectory.HierarchyID  -- association [0..1]
LEFT OUTER JOIN I_WBSElementByExternalID AS _WBSElement ON CtrlObjForWBSElement = _WBSElement.WBSElementExternalID  -- association [0..1]
LEFT OUTER JOIN I_WBSElementHierarchyNodeText AS _WBSElementHierarchyNodeText ON HierarchyIDForWBSElement = _WBSElementHierarchyNodeText.WBSElementHierarchy AND CtrlObjForWBSElement = _WBSElementHierarchyNodeText.HierarchyNode  -- association [0..*]
;