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. 3 CDS views read from this table.

CDS Views using this table (3)

ViewTypeJoinVDMDescription
I_EntProjElmntBlockFunc view from BASIC Block Functions for Enterprise Project Elements
I_EntProjElmntBlockFunc_2 view_entity from BASIC Blocked Function of Ent Project Element
P_WorkPackageFunctionValues view from BASIC Work Package Function Values

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)
);