C_EntProjWrkPckgProjectStatus

DDL: C_ENTPROJWRKPCKGPROJECTSTATUS SQL: CENTPREPRJWPSTAT Type: view CONSUMPTION

WBS Element object page processing status

C_EntProjWrkPckgProjectStatus is a Consumption CDS View that provides data about "WBS Element object page processing status" in SAP S/4HANA. It reads from 1 data source (I_PPM_ProjectTask) and exposes 17 fields with key field TaskUUID. It has 1 association to related views.

Data Sources (1)

SourceAliasJoin Type
I_PPM_ProjectTask Task from

Associations (1)

CardinalityTargetAliasCondition
[1..1] I_PPM_ProcessingStatusText _StatText $projection.ProcessingStatus = _StatText.ProcessingStatus

Annotations (11)

NameValueLevelField
AbapCatalog.sqlViewName CENTPREPRJWPSTAT view
ClientDependent true view
Metadata.allowExtensions true view
AbapCatalog.compiler.compareFilter true view
AccessControl.authorizationCheck #CHECK view
ObjectModel.representativeKey TaskUUID view
ObjectModel.usageType.serviceQuality #D view
ObjectModel.usageType.dataClass #MIXED view
ObjectModel.usageType.sizeCategory #L view
VDM.viewType #CONSUMPTION view
EndUserText.label WBS Element object page processing status view

Fields (17)

KeyFieldSource TableSource FieldDescription
KEY TaskUUID TaskUUID
ProcessingStatus ProcessingStatus Worklist Status
ProcessingStatusText _StatText ProcessingStatusText
WBSElementInternalID
SystemStatus
_AuthUser I_PPM_ProjectTask _AuthUser
_AuthSubst I_PPM_ProjectTask _AuthSubst
_AuthRole I_PPM_ProjectTask _AuthRole
_AuthGroup I_PPM_ProjectTask _AuthGroup
ControllingArea I_PPM_ProjectTask ControllingArea Controlling Area
ProfitCenter I_PPM_ProjectTask ProfitCenter Profit Center
CompanyCode I_PPM_ProjectTask CompanyCode Receiver Company Code
FunctionalArea I_PPM_ProjectTask FunctionalArea Sendr Fctl Area
Plant I_PPM_ProjectTask Plant Valuation Area
ResponsibleCostCenter I_PPM_ProjectTask ResponsibleCostCenter Responsible Cost Center
EnterpriseProjectType _Root EnterpriseProjectType Proj.type
ProjectProfileCode _Root ProjectProfileCode Project Profile

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_EntProjWrkPckgProjectStatus.
-- 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: CENTPREPRJWPSTAT

CREATE VIEW C_EntProjWrkPckgProjectStatus AS
SELECT
  TaskUUID,
  ProcessingStatus,
  _StatText.ProcessingStatusText AS ProcessingStatusText,
  cast(concat('PR', WBSElementInternalID) as j_objnr) AS WBSElementInternalID,
  cast('' as text1000) AS SystemStatus,
  Task._AuthUser AS _AuthUser,
  Task._AuthSubst AS _AuthSubst,
  Task._AuthRole AS _AuthRole,
  Task._AuthGroup AS _AuthGroup,
  Task.ControllingArea AS ControllingArea,
  Task.ProfitCenter AS ProfitCenter,
  Task.CompanyCode AS CompanyCode,
  Task.FunctionalArea AS FunctionalArea,
  Task.Plant AS Plant,
  Task.ResponsibleCostCenter AS ResponsibleCostCenter,
  _Root.EnterpriseProjectType AS EnterpriseProjectType,
  _Root.ProjectProfileCode AS ProjectProfileCode
FROM I_PPM_ProjectTask AS Task
LEFT OUTER JOIN I_PPM_ProcessingStatusText AS _StatText ON ProcessingStatus = _StatText.ProcessingStatus  -- association [1..1]
;