P_EntProjElmntBlockFunc

DDL: P_ENTPROJELMNTBLOCKFUNC SQL: PBLOCKFUNC Type: view COMPOSITE

P_EntProjElmntBlockFunc is a Composite CDS View in SAP S/4HANA. It reads from 1 data source (I_PPM_ProjectTask) and exposes 7 fields with key field TaskUUID.

Data Sources (1)

SourceAliasJoin Type
I_PPM_ProjectTask ProjectElement from

Annotations (10)

NameValueLevelField
AbapCatalog.sqlViewName PBLOCKFUNC view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.preserveKey true view
AccessControl.authorizationCheck #CHECK view
VDM.viewType #COMPOSITE view
VDM.private true view
ObjectModel.usageType.serviceQuality #D view
ObjectModel.usageType.dataClass #MIXED view
ObjectModel.usageType.sizeCategory #L view
ClientHandling.algorithm #SESSION_VARIABLE view

Fields (7)

KeyFieldSource TableSource FieldDescription
KEY TaskUUID I_PPM_ProjectTask TaskUUID
ProjectUUID I_PPM_ProjectTask ProjectUUID Project UUID
EntProjElmntTimeRecgIsBlkd EntProjElmntTimeRecgIsBlkd EntProjElementFunctionIsBlkd
EntProjStaffExpnpostgIsBlkd EntProjStaffExpnpostgIsBlkd EntProjElementFunctionIsBlkd
EntProjSrvcPostgIsBlkd EntProjSrvcPostgIsBlkd EntProjElementFunctionIsBlkd
EntProjOthExpnPostgIsBlkd EntProjOthExpnPostgIsBlkd EntProjElementFunctionIsBlkd
_ProjectRoot _ProjectRoot

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 P_EntProjElmntBlockFunc.
-- 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: PBLOCKFUNC

CREATE VIEW P_EntProjElmntBlockFunc AS
SELECT
  ProjectElement.TaskUUID AS TaskUUID,
  ProjectElement.ProjectUUID AS ProjectUUID,
  EntProjElmntTimeRecgIsBlkd.EntProjElementFunctionIsBlkd AS EntProjElmntTimeRecgIsBlkd,
  EntProjStaffExpnpostgIsBlkd.EntProjElementFunctionIsBlkd AS EntProjStaffExpnpostgIsBlkd,
  EntProjSrvcPostgIsBlkd.EntProjElementFunctionIsBlkd AS EntProjSrvcPostgIsBlkd,
  EntProjOthExpnPostgIsBlkd.EntProjElementFunctionIsBlkd AS EntProjOthExpnPostgIsBlkd
FROM I_PPM_ProjectTask AS ProjectElement
;