I_CnsldtnWBSElement

DDL: I_CNSLDTNWBSELEMENT SQL: ICSWBSELEMENT Type: view COMPOSITE

Consolidation Combined WBS Element

I_CnsldtnWBSElement is a Composite 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 #COMPOSITE 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 (8)

KeyFieldSource TableSource FieldDescription
KEY WBSElement
KEY Project
AdditionalMasterDataSource
CnsldtnIsAdditionalMasterData
WBSElementInternalID
_Project _Project
_Text _Text
_MDSource _MDSource

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
  cast( _Source.WBSElement as fincs_wbselement preserving type ) AS WBSElement,
  cast( _Source.Project as fincs_project preserving type ) AS Project,
  cast( max ( _Source.AdditionalMasterDataSource ) as fincs_masterdatasource preserving type ) AS AdditionalMasterDataSource,
  cast( max ( _Source.CnsldtnIsAdditionalMasterData ) as fincs_isadditionalmasterdata preserving type ) AS CnsldtnIsAdditionalMasterData,
  cast( max ( _Source.WBSElementInternalID ) as ps_posnr preserving type ) AS 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]
;