C_WBSElementDataStdByExtIDVH

DDL: C_WBSELEMENTDATASTDBYEXTIDVH SQL: CWBSDATSTDEXTVH Type: view CONSUMPTION

WBSElement By ExternalID

C_WBSElementDataStdByExtIDVH is a Consumption CDS View that provides data about "WBSElement By ExternalID" in SAP S/4HANA. It reads from 1 data source (I_WBSElementData_2) and exposes 28 fields with key field WBSElementExternalID. 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 CWBSDATSTDEXTVH view
EndUserText.label WBSElement By ExternalID view
ClientHandling.algorithm #SESSION_VARIABLE view
AccessControl.personalData.blocking #BLOCKED_DATA_EXCLUDED 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 WBSElementExternalID view
ObjectModel.dataCategory #VALUE_HELP view
VDM.viewType #CONSUMPTION view
Search.searchable true view
Consumption.ranked true view
AbapCatalog.preserveKey true view

Fields (28)

KeyFieldSource TableSource FieldDescription
KEY WBSElementExternalID WBSElementExternalID WBS Element External ID
WBSElementInternalID WBSElementInternalID WBS Internal ID
WBSDescription WBSDescription WBS Element Name
WBSElementLangBsdDescription WBS Element Language-Dependent Short Text
ProjectExternalID _Project ProjectExternalID Project def.
ProjectDescription _Project ProjectDescription Project Name
ResponsiblePerson ResponsiblePerson Processor
ResponsiblePersonName ResponsiblePersonName User
WBSElementIsBillingElement WBSElementIsBillingElement Billing elem.
WBSIsAccountAssignmentElement WBSIsAccountAssignmentElement
WBSElementIsPlanningElement WBSElementIsPlanningElement
WBSElementHierarchyLevel WBSElementHierarchyLevel Level Number
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
ApplicantCode ApplicantCode
WBSElementObject WBSElementObject Object number
ProjectObject _Project ProjectObject Object number
_ResponsiblePerson _ResponsiblePerson
_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 C_WBSElementDataStdByExtIDVH.
-- 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: CWBSDATSTDEXTVH

CREATE VIEW C_WBSElementDataStdByExtIDVH AS
SELECT
  WBSElementExternalID,
  WBSElementInternalID,
  WBSDescription,
  I_WBSElementData_2._WBSElementShortText.LanguageBasedShortText AS WBSElementLangBsdDescription,
  _Project.ProjectExternalID AS ProjectExternalID,
  _Project.ProjectDescription AS ProjectDescription,
  ResponsiblePerson,
  ResponsiblePersonName,
  WBSElementIsBillingElement,
  WBSIsAccountAssignmentElement,
  WBSElementIsPlanningElement,
  WBSElementHierarchyLevel,
  ProjectType,
  ControllingArea,
  RespCostCenterControllingArea,
  ResponsibleCostCenter,
  ProfitCenter,
  FreeDefinedAttribute01,
  FreeDefinedAttribute02,
  FreeDefinedAttribute03,
  FreeDefinedAttribute04,
  FreeDefinedIndicator1,
  FreeDefinedIndicator2,
  ApplicantCode,
  WBSElementObject,
  _Project.ProjectObject AS ProjectObject
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]
;