Deprecated
This CDS view is deprecated in S/4HANA. View all deprecated CDS views →

I_WBSElementHierarchyText

DDL: I_WBSELEMENTHIERARCHYTEXT SQL: IWBSHIERT Type: view BASIC

WBS Element Hierarchy Text

I_WBSElementHierarchyText is a Basic CDS View that provides data about "WBS Element Hierarchy Text" in SAP S/4HANA. It reads from 2 data sources (dd04t, hrrp_directoryt) and exposes 11 fields with key fields WBSElementHierarchy, Language, ValidityEndDate, WBSElementHierarchy, Language. It has 1 association to related views.

Data Sources (2)

SourceAliasJoin Type
dd04t dd04t union_all
hrrp_directoryt hrrp_directoryt from

Associations (1)

CardinalityTargetAliasCondition
[0..1] I_Language _Language $projection.Language = _Language.Language

Annotations (12)

NameValueLevelField
AbapCatalog.sqlViewName IWBSHIERT view
AbapCatalog.compiler.compareFilter true view
AccessControl.authorizationCheck #NOT_REQUIRED view
EndUserText.label WBS Element Hierarchy Text view
ClientHandling.algorithm #SESSION_VARIABLE view
ObjectModel.usageType.sizeCategory #L view
ObjectModel.usageType.dataClass #MASTER view
ObjectModel.usageType.serviceQuality #D view
ObjectModel.representativeKey WBSElementHierarchy view
VDM.viewType #BASIC view
ObjectModel.dataCategory #TEXT view
VDM.lifecycle.status #DEPRECATED view

Fields (11)

KeyFieldSource TableSource FieldDescription
KEY WBSElementHierarchy
KEY Language spras Lang.
KEY ValidityEndDate hrrp_directoryt hryvalto Valid To
ValidityStartDate hrrp_directoryt hryvalfrom Valid From
WBSElementHierarchyText hrytxt Short text
KEY WBSElementHierarchy
KEY Language Lang.
KEY ValidityEndDate Valid To
ValidityStartDate Valid From
WBSElementHierarchyText Short text
_Language _Language

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_WBSElementHierarchyText.
-- 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: IWBSHIERT

CREATE VIEW I_WBSElementHierarchyText AS
SELECT
  cast ( hrrp_directoryt.hryid as wbshierarchy preserving type ) AS WBSElementHierarchy,
  spras AS Language,
  hrrp_directoryt.hryvalto AS ValidityEndDate,
  hrrp_directoryt.hryvalfrom AS ValidityStartDate,
  hrytxt AS WBSElementHierarchyText
FROM hrrp_directoryt
LEFT OUTER JOIN I_Language AS _Language ON Language = _Language.Language  -- association [0..1]
-- UNION ALL with additional select branch(es): dd04t
;