I_WBSElementWithCodingMask

DDL: I_WBSELEMENTWITHCODINGMASK SQL: IWBSELECODEMSK Type: view COMPOSITE

WBS Element Data

I_WBSElementWithCodingMask is a Composite CDS View (Dimension) that provides data about "WBS Element Data" 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 (18)

NameValueLevelField
AbapCatalog.sqlViewName IWBSELECODEMSK view
EndUserText.label WBS Element Data view
ClientHandling.algorithm #SESSION_VARIABLE view
AccessControl.personalData.blocking #BLOCKED_DATA_EXCLUDED view
AbapCatalog.compiler.compareFilter true view
AccessControl.authorizationCheck #MANDATORY view
ObjectModel.usageType.serviceQuality #C view
ObjectModel.usageType.sizeCategory #M view
VDM.lifecycle.contract.type #SAP_INTERNAL_API view
ObjectModel.usageType.dataClass #MASTER view
Analytics.dataCategory #DIMENSION view
Metadata.allowExtensions true view
Analytics.internalName #LOCAL view
ObjectModel.representativeKey WBSElementExternalID view
VDM.viewType #COMPOSITE 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
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 I_WBSElementWithCodingMask.
-- 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: IWBSELECODEMSK

CREATE VIEW I_WBSElementWithCodingMask 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]
;