I_WBSElementDataStdVH

DDL: I_WBSELEMENTDATASTDVH SQL: IWBSDATSTDVH Type: view COMPOSITE

WBSElement Data

I_WBSElementDataStdVH is a Composite CDS View that provides data about "WBSElement Data" in SAP S/4HANA. It reads from 1 data source (I_WBSElementData_2) and exposes 25 fields with key field WBSElementInternalID. It has 2 associations to related views.

Data Sources (1)

SourceAliasJoin Type
I_WBSElementData_2 I_WBSElementData_2 from

Associations (2)

CardinalityTargetAliasCondition
[0..1] I_ProjectResponsiblePerson _ResponsiblePerson $projection.ResponsiblePerson = _ResponsiblePerson.ResponsiblePerson
[0..1] I_ProjectApplicant _ProjectApplicant $projection.ApplicantCode = _ProjectApplicant.ApplicantCode

Annotations (15)

NameValueLevelField
AbapCatalog.sqlViewName IWBSDATSTDVH view
ClientHandling.algorithm #SESSION_VARIABLE view
AccessControl.personalData.blocking #BLOCKED_DATA_EXCLUDED view
AbapCatalog.preserveKey true view
AbapCatalog.compiler.compareFilter true view
AccessControl.authorizationCheck #CHECK view
ObjectModel.usageType.serviceQuality #C view
ObjectModel.usageType.sizeCategory #M view
ObjectModel.usageType.dataClass #MASTER view
ObjectModel.representativeKey WBSElementInternalID view
ObjectModel.dataCategory #VALUE_HELP view
VDM.viewType #COMPOSITE view
VDM.lifecycle.contract.type #SAP_INTERNAL_API view
Search.searchable true view
EndUserText.label WBSElement Data view

Fields (25)

KeyFieldSource TableSource FieldDescription
KEY WBSElementInternalID WBSElementInternalID WBS Internal ID
WBSElementExternalID WBSElementExternalID WBS Element External ID
WBSDescription WBSDescription WBS Element Name
ProjectExternalID _Project ProjectExternalID Project def.
ProjectDescription _Project ProjectDescription Project Name
ResponsiblePerson ResponsiblePerson Processor
ResponsiblePersonName ResponsiblePersonName User
WBSElementIsBillingElement WBSElementIsBillingElement Billing elem.
WBSIsAccountAssignmentElement WBSIsAccountAssignmentElement
WBSElementIsPlanningElement WBSElementIsPlanningElement
ProjectType ProjectType Project Type
ControllingArea ControllingArea Controlling Area
RespCostCenterControllingArea RespCostCenterControllingArea CA (resp.)
ResponsibleCostCenter ResponsibleCostCenter Responsible Cost Center
ProfitCenter ProfitCenter Profit Center
FreeDefinedAttribute01 FreeDefinedAttribute01 Attribute 1
FreeDefinedAttribute02 FreeDefinedAttribute02 Attribute 2
FreeDefinedAttribute03 FreeDefinedAttribute03 Attribute 3
FreeDefinedAttribute04 FreeDefinedAttribute04 Attribute 4
FreeDefinedIndicator1 FreeDefinedIndicator1
FreeDefinedIndicator2 FreeDefinedIndicator2
_ResponsiblePerson _ResponsiblePerson
ApplicantCode ApplicantCode
WBSElementObject WBSElementObject Object number
_ProjectApplicant _ProjectApplicant

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_WBSElementDataStdVH.
-- 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: IWBSDATSTDVH

CREATE VIEW I_WBSElementDataStdVH AS
SELECT
  WBSElementInternalID,
  WBSElementExternalID,
  WBSDescription,
  _Project.ProjectExternalID AS ProjectExternalID,
  _Project.ProjectDescription AS ProjectDescription,
  ResponsiblePerson,
  ResponsiblePersonName,
  WBSElementIsBillingElement,
  WBSIsAccountAssignmentElement,
  WBSElementIsPlanningElement,
  ProjectType,
  ControllingArea,
  RespCostCenterControllingArea,
  ResponsibleCostCenter,
  ProfitCenter,
  FreeDefinedAttribute01,
  FreeDefinedAttribute02,
  FreeDefinedAttribute03,
  FreeDefinedAttribute04,
  FreeDefinedIndicator1,
  FreeDefinedIndicator2,
  ApplicantCode,
  WBSElementObject
FROM I_WBSElementData_2
LEFT OUTER JOIN I_ProjectResponsiblePerson AS _ResponsiblePerson ON ResponsiblePerson = _ResponsiblePerson.ResponsiblePerson  -- association [0..1]
LEFT OUTER JOIN I_ProjectApplicant AS _ProjectApplicant ON ApplicantCode = _ProjectApplicant.ApplicantCode  -- association [0..1]
;