I_StdWBSElementVH

DDL: I_STDWBSELEMENTVH SQL: ISTDWBSVH Type: view BASIC

Standard WBS Element

I_StdWBSElementVH is a Basic CDS View that provides data about "Standard WBS Element" in SAP S/4HANA. It reads from 1 data source (I_Standardwbselement) and exposes 5 fields with key field StdWBSElement.

Data Sources (1)

SourceAliasJoin Type
I_Standardwbselement I_Standardwbselement from

Annotations (12)

NameValueLevelField
AbapCatalog.sqlViewName ISTDWBSVH view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.preserveKey true view
VDM.viewType #BASIC view
ClientHandling.algorithm #SESSION_VARIABLE view
AccessControl.authorizationCheck #CHECK view
ObjectModel.usageType.serviceQuality #C view
ObjectModel.usageType.sizeCategory #L view
ObjectModel.usageType.dataClass #MIXED view
ObjectModel.dataCategory #VALUE_HELP view
Search.searchable true view
EndUserText.label Standard WBS Element view

Fields (5)

KeyFieldSource TableSource FieldDescription
KEY StdWBSElement WBSElementWithCodingMask WBS Element
StdWBSDescription WBSDescription WBS Element Name
StdProject ProjectWithCodingMask
ResponsiblePerson ResponsiblePerson Processor
ResponsiblePersonName ResponsiblePersonName User

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_StdWBSElementVH.
-- 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: ISTDWBSVH

CREATE VIEW I_StdWBSElementVH AS
SELECT
  WBSElementWithCodingMask AS StdWBSElement,
  WBSDescription AS StdWBSDescription,
  ProjectWithCodingMask AS StdProject,
  ResponsiblePerson,
  ResponsiblePersonName
FROM I_Standardwbselement
;