I_FinWBSElementHierarchyText

DDL: I_FINWBSELEMENTHIERARCHYTEXT Type: view_entity COMPOSITE

Fin WBS Element Hierarchy - Text

I_FinWBSElementHierarchyText (Composite)

Package: Explore, extend and adapt the SAP S/4HANA Cloud Private Edition with built-in and side-by-side extension capabilities.

FinWBSElementHierarchyText · Accounting and Financial Close

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

SAP API Hub

StateC1
Line of BusinessAccounting and Financial Close
Application ComponentFI-GL-IS
CapabilitiesData Source for Defining CDS Entities, Association Target for Defining CDS Entities, Language-Dependent Text, Data Source for Data Extraction
PackageAccounting and Financial Close for SAP S/4HANA Cloud Private Edition

Documentation

Data Sources (2)

SourceAliasJoin Type
R_FinWBSElementHierarchyText R_FinWBSElementHierarchyText from
R_WBSElementHierarchyText R_WBSElementHierarchyText union_all

Associations (1)

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

Annotations (13)

NameValueLevelField
ObjectModel.representativeKey WBSElementHierarchy view
VDM.viewType #COMPOSITE view
VDM.lifecycle.contract.type #PUBLIC_LOCAL_API view
AccessControl.authorizationCheck #MANDATORY view
Metadata.ignorePropagatedAnnotations true view
EndUserText.label Fin WBS Element Hierarchy - Text view
ObjectModel.usageType.dataClass #MASTER view
ObjectModel.usageType.serviceQuality #C view
ObjectModel.usageType.sizeCategory #XL view
ObjectModel.dataCategory #TEXT view
Analytics.technicalName IFIWBSELEMENTHT view
Analytics.dataExtraction.enabled true view
ObjectModel.modelingPattern #LANGUAGE_DEPENDENT_TEXT view

Fields (11)

KeyFieldSource TableSource FieldDescription
KEY WBSElementHierarchy R_FinWBSElementHierarchyText WBSElementHierarchy Hierarchy ID
KEY Language R_FinWBSElementHierarchyText Language Report Text Language
KEY ValidityEndDate R_FinWBSElementHierarchyText ValidityEndDate Valid To Date
ValidityStartDate R_FinWBSElementHierarchyText ValidityStartDate Validity Start Date
WBSElementHierarchyText R_FinWBSElementHierarchyText WBSElementHierarchyText Hierarchy description
WBSElementHierarchyasWBSElementHierarchy
KEY Language Language Report Text Language
KEY ValidityEndDate ValidityEndDate Valid To Date
ValidityStartDate ValidityStartDate Validity Start Date
WBSElementHierarchyText WBSElementHierarchyText Hierarchy description
_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_FinWBSElementHierarchyText.
-- 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.

CREATE VIEW I_FinWBSElementHierarchyText AS
SELECT
  R_FinWBSElementHierarchyText.WBSElementHierarchy AS WBSElementHierarchy,
  R_FinWBSElementHierarchyText.Language AS Language,
  R_FinWBSElementHierarchyText.ValidityEndDate AS ValidityEndDate,
  R_FinWBSElementHierarchyText.ValidityStartDate AS ValidityStartDate,
  R_FinWBSElementHierarchyText.WBSElementHierarchyText AS WBSElementHierarchyText
FROM R_FinWBSElementHierarchyText
LEFT OUTER JOIN I_Language AS _Language ON Language = _Language.Language  -- association [0..1]
-- UNION ALL with additional select branch(es): R_WBSElementHierarchyText
;