ENTPROBJ_BLKFUNC

Transparent Table Application Table

Block functions of enterprise project artifacts

ENTPROBJ_BLKFUNC is an SAP database table in S/4HANA. Block functions of enterprise project artifacts. It contains 7 fields. 2 CDS views read from this table.

CDS Views using this table (2)

ViewTypeJoinVDMDescription
I_EntProjElmntBlockFunc view from BASIC Block Functions for Enterprise Project Elements
P_WorkPackageFunctionValues view from BASIC

Fields (7)

KeyField Data ElementDescription DomainTypeLength
KEY client MANDT Client
KEY guid /S4PPM/TV_ENTITY_GUID Entity GUID
project_guid /S4PPM/TV_ENTITY_GUID Entity GUID
parent_object_guid /S4PPM/TV_ENTITY_GUID Entity GUID
function_id ENTOBJ_FUNCTION_ID Function ID
is_blocked ENTOBJ_FUNCTION_IS_BLOCKED Func Is Blocked
wbs_element_internal_id PS_S4_PSPNR WBS Internal ID

Derived SQL schema, reconstructed from the indexed DDIC field metadata (field names, types, lengths and key flags) — a functional representation, not the verbatim SAP source.

-- Block functions of enterprise project artifacts
-- Category TRANSPARENT · Delivery class A
-- Derived schema, generated from indexed DDIC field metadata (not the verbatim SAP source).
CREATE TABLE ENTPROBJ_BLKFUNC (
    CLIENT,                   -- Client [MANDT]
    GUID,                     -- Entity GUID [/S4PPM/TV_ENTITY_GUID]
    PROJECT_GUID,             -- Entity GUID [/S4PPM/TV_ENTITY_GUID]
    PARENT_OBJECT_GUID,       -- Entity GUID [/S4PPM/TV_ENTITY_GUID]
    FUNCTION_ID,              -- Function ID [ENTOBJ_FUNCTION_ID]
    IS_BLOCKED,               -- Func Is Blocked [ENTOBJ_FUNCTION_IS_BLOCKED]
    WBS_ELEMENT_INTERNAL_ID,  -- WBS Internal ID [PS_S4_PSPNR]
    PRIMARY KEY (CLIENT, GUID)
);