I_CnsldtnWBSElement

DDL: I_CNSLDTNWBSELEMENT SQL: ICSWBSELEMENT Type: view BASIC

Consolidation Combined WBS Element

I_CnsldtnWBSElement is a Basic CDS View (Dimension) that provides data about "Consolidation Combined WBS Element" in SAP S/4HANA. It has 3 associations to related views.

Associations (3)

CardinalityTargetAliasCondition
[1..1] I_CnsldtnProject _Project $projection.Project = _Project.Project
[0..*] I_CnsldtnWBSElementT _Text $projection.WBSElement = _Text.WBSElement and $projection.Project = _Text.Project
[1..1] I_CnsldtnMDSource _MDSource $projection.AdditionalMasterDataSource = _MDSource.AdditionalMasterDataSource

Annotations (12)

NameValueLevelField
EndUserText.label Consolidation Combined WBS Element view
AbapCatalog.sqlViewName ICSWBSELEMENT view
VDM.viewType #BASIC view
Analytics.dataCategory #DIMENSION view
Analytics.dataExtraction.enabled false view
ClientHandling.algorithm #SESSION_VARIABLE view
Metadata.allowExtensions true view
Metadata.ignorePropagatedAnnotations true view
AccessControl.authorizationCheck #CHECK view
ObjectModel.usageType.dataClass #MASTER view
ObjectModel.usageType.serviceQuality #C view
ObjectModel.usageType.sizeCategory #L view

Fields (7)

KeyFieldSource TableSource FieldDescription
KEY WBSElement WBSElement WBS Element
KEY Project Project Project
AdditionalMasterDataSource AdditionalMasterDataSource
_MDSource _MDSource
WBSElementInternalID WBSElementInternalID WBS Internal ID
_Project _Project
_Text _Text

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_CnsldtnWBSElement.
-- 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: ICSWBSELEMENT

CREATE VIEW I_CnsldtnWBSElement AS
SELECT
  WBSElement,
  Project,
  AdditionalMasterDataSource,
  WBSElementInternalID
LEFT OUTER JOIN I_CnsldtnProject AS _Project ON Project = _Project.Project  -- association [1..1]
LEFT OUTER JOIN I_CnsldtnWBSElementT AS _Text ON WBSElement = _Text.WBSElement AND Project = _Text.Project  -- association [0..*]
LEFT OUTER JOIN I_CnsldtnMDSource AS _MDSource ON AdditionalMasterDataSource = _MDSource.AdditionalMasterDataSource  -- association [1..1]
;