C_ProjSchedWBSElementForDetail

DDL: C_PROJSCHEDWBSELEMENTFORDETAIL Type: view_entity CONSUMPTION

Proj Sched WBS Elmnt for Object Details

C_ProjSchedWBSElementForDetail is a Consumption CDS View that provides data about "Proj Sched WBS Elmnt for Object Details" in SAP S/4HANA. It reads from 1 data source (R_WBSElementForGraphTP) and exposes 22 fields with key field WBSElementInternalID.

Data Sources (1)

SourceAliasJoin Type
R_WBSElementForGraphTP R_WBSElementForGraphTP projection

Annotations (7)

NameValueLevelField
AccessControl.authorizationCheck #MANDATORY view
AccessControl.personalData.blocking #BLOCKED_DATA_EXCLUDED view
VDM.viewType #CONSUMPTION view
ObjectModel.usageType.serviceQuality #C view
ObjectModel.usageType.sizeCategory #XL view
ObjectModel.usageType.dataClass #MIXED view
EndUserText.label Proj Sched WBS Elmnt for Object Details view

Fields (22)

KeyFieldSource TableSource FieldDescription
KEY WBSElementInternalID WBSElementInternalID WBS Internal ID
WBSElementExternalID WBSElementExternalID WBS Element External ID
WBSDescription WBSDescription WBS Element Name
CompanyCodeName CompanyCodeName Company Name
ResponsiblePersonName ResponsiblePersonName Person Responsible Name
BasicStartDate BasicStartDate
BasicEndDate BasicEndDate
IsMarkedForDeletion IsMarkedForDeletion Purch.org. data
ProjectType ProjectType Project Type
ControllingArea ControllingArea Controlling Area
ProfitCenter ProfitCenter Profit Center
ApplicantCode ApplicantCode
ResponsibleCostCenter ResponsibleCostCenter Responsible Cost Center
RespCostCenterControllingArea RespCostCenterControllingArea
ResponsiblePerson ResponsiblePerson Processor
ProjectInternalID ProjectInternalID Project Def.
ObjBasedAuthorizationIsActive ObjBasedAuthorizationIsActive
WBSElementObject WBSElementObject Object number
_Project _Project
_ResponsiblePerson _ResponsiblePerson
ProjectObject ProjectObject 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 C_ProjSchedWBSElementForDetail.
-- 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 C_ProjSchedWBSElementForDetail AS
SELECT
  WBSElementInternalID,
  WBSElementExternalID,
  WBSDescription,
  CompanyCodeName,
  ResponsiblePersonName,
  BasicStartDate,
  BasicEndDate,
  IsMarkedForDeletion,
  ProjectType,
  ControllingArea,
  ProfitCenter,
  ApplicantCode,
  ResponsibleCostCenter,
  RespCostCenterControllingArea,
  ResponsiblePerson,
  ProjectInternalID,
  ObjBasedAuthorizationIsActive,
  WBSElementObject,
  ProjectObject
FROM R_WBSElementForGraphTP
;