C_EntProjWrkPckgBlkFunctionTP

DDL: C_ENTPROJWRKPCKGBLKFUNCTIONTP SQL: CENTPRJWPBLTP Type: view CONSUMPTION

Enterprise Project WBS Element Block Functions

C_EntProjWrkPckgBlkFunctionTP is a Consumption CDS View that provides data about "Enterprise Project WBS Element Block Functions" in SAP S/4HANA. It reads from 1 data source (I_EntProjElmntBlockFuncTP) and exposes 9 fields with key field TaskUUID. It has 2 associations to related views.

Data Sources (1)

SourceAliasJoin Type
I_EntProjElmntBlockFuncTP I_EntProjElmntBlockFuncTP from

Associations (2)

CardinalityTargetAliasCondition
[1..1] C_EnterpriseProjWrkPckgDataTP _Task $projection.TaskUUID = _Task.TaskUUID
[1..1] C_EnterpriseProjWrkPckgRootTP _Root $projection.ProjectUUID = _Root.ProjectUUID

Annotations (16)

NameValueLevelField
AbapCatalog.sqlViewName CENTPRJWPBLTP view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.preserveKey true view
AccessControl.authorizationCheck #CHECK view
AccessControl.personalData.blocking #REQUIRED view
ClientHandling.algorithm #SESSION_VARIABLE view
ObjectModel.transactionalProcessingDelegated true view
ObjectModel.createEnabled true view
ObjectModel.updateEnabled true view
ObjectModel.deleteEnabled true view
ObjectModel.representativeKey TaskUUID view
ObjectModel.usageType.serviceQuality #C view
ObjectModel.usageType.dataClass #MIXED view
ObjectModel.usageType.sizeCategory #L view
VDM.viewType #CONSUMPTION view
EndUserText.label Enterprise Project WBS Element Block Functions view

Fields (9)

KeyFieldSource TableSource FieldDescription
KEY TaskUUID TaskUUID
ProjectUUID ProjectUUID Project UUID
EntProjTimeRecgIsBlkd EntProjTimeRecgIsBlkd Boolean Variable (X = True, - = False, Space = Unknown)
EntProjStaffExpensePostgIsBlkd EntProjStaffExpensePostgIsBlkd Boolean Variable (X = True, - = False, Space = Unknown)
EntProjServicePostingIsBlkd EntProjServicePostingIsBlkd Boolean Variable (X = True, - = False, Space = Unknown)
EntProjOtherExpensePostgIsBlkd EntProjOtherExpensePostgIsBlkd Boolean Variable (X = True, - = False, Space = Unknown)
EntProjPurchasingIsBlkd EntProjPurchasingIsBlkd Boolean Variable (X = True, - = False, Space = Unknown)
_Task _Task
_Root _Root

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_EntProjWrkPckgBlkFunctionTP.
-- 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: CENTPRJWPBLTP

CREATE VIEW C_EntProjWrkPckgBlkFunctionTP AS
SELECT
  TaskUUID,
  ProjectUUID,
  EntProjTimeRecgIsBlkd,
  EntProjStaffExpensePostgIsBlkd,
  EntProjServicePostingIsBlkd,
  EntProjOtherExpensePostgIsBlkd,
  EntProjPurchasingIsBlkd
FROM I_EntProjElmntBlockFuncTP
LEFT OUTER JOIN C_EnterpriseProjWrkPckgDataTP AS _Task ON TaskUUID = _Task.TaskUUID  -- association [1..1]
LEFT OUTER JOIN C_EnterpriseProjWrkPckgRootTP AS _Root ON ProjectUUID = _Root.ProjectUUID  -- association [1..1]
;