C_EntProjElmntBlkdFunc

DDL: C_ENTPROJELMNTBLKDFUNC Type: view_entity CONSUMPTION Package: ODATA_PPM_PRO_CTRL_PROFNL_SRVC

Project Element Block Functions

C_EntProjElmntBlkdFunc is a Consumption CDS View that provides data about "Project Element Block Functions" in SAP S/4HANA. It reads from 1 data source (I_BlockFuncForEntProjElmnt) and exposes 8 fields with key field TaskUUID. It has 1 association to related views. It is exposed through 2 OData services (ASQL_F6869, UI_ENTPROJCTRLPROFNLSRVC). Part of development package ODATA_PPM_PRO_CTRL_PROFNL_SRVC.

Data Sources (1)

SourceAliasJoin Type
I_BlockFuncForEntProjElmnt I_BlockFuncForEntProjElmnt from

Associations (1)

CardinalityTargetAliasCondition
[1..1] I_EnterpriseProject _EnterpriseProject $projection.ProjectUUID = _EnterpriseProject.ProjectUUID

Annotations (9)

NameValueLevelField
AccessControl.authorizationCheck #MANDATORY view
EndUserText.label Project Element Block Functions view
Metadata.ignorePropagatedAnnotations true view
ObjectModel.usageType.serviceQuality #D view
ObjectModel.usageType.dataClass #MIXED view
ObjectModel.usageType.sizeCategory #L view
Metadata.allowExtensions true view
VDM.viewType #CONSUMPTION view
AccessControl.personalData.blocking #BLOCKED_DATA_EXCLUDED view

OData Services (2)

ServiceBindingVersionContractRelease
ASQL_F6869 ASQL_F6869 C2 NOT_RELEASED
UI_ENTPROJCTRLPROFNLSRVC UI_ENTPROJCTRLPROFNLSRVC V4 C1 NOT_TO_BE_RELEASED_STABLE

Fields (8)

KeyFieldSource TableSource FieldDescription
KEY TaskUUID TaskUUID Obj Link Entity GUID
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)
_EnterpriseProject _EnterpriseProject

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_EntProjElmntBlkdFunc.
-- 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_EntProjElmntBlkdFunc AS
SELECT
  TaskUUID,
  ProjectUUID,
  EntProjTimeRecgIsBlkd,
  EntProjStaffExpensePostgIsBlkd,
  EntProjServicePostingIsBlkd,
  EntProjOtherExpensePostgIsBlkd,
  EntProjPurchasingIsBlkd
FROM I_BlockFuncForEntProjElmnt
LEFT OUTER JOIN I_EnterpriseProject AS _EnterpriseProject ON ProjectUUID = _EnterpriseProject.ProjectUUID  -- association [1..1]
;