/UI2/PGHEAD

Transparent Table System Table (transport)

FLP Page: Page Template

/UI2/PGHEAD is an SAP database table in S/4HANA. FLP Page: Page Template. It contains 10 fields. 2 CDS views read from this table.

CDS Views using this table (2)

ViewTypeJoinVDMDescription
SUI_LANG_VRS_OBJ_ACTIVE_UIPG view_entity from
SUI_LANG_VRS_OBJ_EDIT_UIPG view_entity from

Fields (10)

KeyField Data ElementDescription DomainTypeLength
KEY id /UI2/PAGE_ENTITY_ID Page ID
KEY version R3STATE Program Status
parent_page_id /UI2/PAGE_ENTITY_ID Page ID
created_by /UI2/ADMIN_CREATED_BY Created By
created_on /UI2/ADMIN_CREATED_ON Created On
modified_by /UI2/ADMIN_MODIFIED_BY Last Modified By
modified_on /UI2/ADMIN_MODIFIED_ON Last modified on
base_id /UI2/BASE_PAGE_ENTITY_ID Base Page ID
merge_id /UI2/PAGE_MERGE_ID Page Merge ID
abap_language_version ABAP_LANGUAGE_VERSION Language Version

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.

-- FLP Page: Page Template
-- Category TRANSPARENT · Delivery class W
-- Derived schema, generated from indexed DDIC field metadata (not the verbatim SAP source).
CREATE TABLE /UI2/PGHEAD (
    ID,                     -- Page ID [/UI2/PAGE_ENTITY_ID]
    VERSION,                -- Program Status [R3STATE]
    PARENT_PAGE_ID,         -- Page ID [/UI2/PAGE_ENTITY_ID]
    CREATED_BY,             -- Created By [/UI2/ADMIN_CREATED_BY]
    CREATED_ON,             -- Created On [/UI2/ADMIN_CREATED_ON]
    MODIFIED_BY,            -- Last Modified By [/UI2/ADMIN_MODIFIED_BY]
    MODIFIED_ON,            -- Last modified on [/UI2/ADMIN_MODIFIED_ON]
    BASE_ID,                -- Base Page ID [/UI2/BASE_PAGE_ENTITY_ID]
    MERGE_ID,               -- Page Merge ID [/UI2/PAGE_MERGE_ID]
    ABAP_LANGUAGE_VERSION,  -- Language Version [ABAP_LANGUAGE_VERSION]
    PRIMARY KEY (ID, VERSION)
);