ENGCOLLABN

Transparent Table Application Table

Engineering Collaboration

ENGCOLLABN is an SAP database table in S/4HANA. Engineering Collaboration. It contains 14 fields. 1 CDS views read from this table.

CDS Views using this table (1)

ViewTypeJoinVDMDescription
I_EngCollaboration view_entity from BASIC Engineering Collaboration

Fields (14)

KeyField Data ElementDescription DomainTypeLength
KEY client abap.clnt
KEY uuid sysuuid_x16 UUID
collabnuuid engcollabn_uuid Collaboration UUID
changerecorduuid change_record_uuid Change Record UUID
name engcollabn_name Collaboration Name
type engcollabn_type Collaboration Type
text engcollabn_text Collaboration Text
status engcollabn_status Collaboration Status
supplier lifnr Supplier
personresponsible engcollabn_person_resp Engineering Collaboration Person Responsible
createdby abp_creation_user Created By
createdat abp_creation_tstmpl Created On
lastchangedby abp_locinst_lastchange_user Changed By
lastchangedat abp_locinst_lastchange_tstmpl Changed On

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.

-- Engineering Collaboration
-- Category TRANSPARENT · Delivery class A
-- Derived schema, generated from indexed DDIC field metadata (not the verbatim SAP source).
CREATE TABLE ENGCOLLABN (
    CLIENT,             -- abap.clnt
    UUID,               -- UUID [sysuuid_x16]
    COLLABNUUID,        -- Collaboration UUID [engcollabn_uuid]
    CHANGERECORDUUID,   -- Change Record UUID [change_record_uuid]
    NAME,               -- Collaboration Name [engcollabn_name]
    TYPE,               -- Collaboration Type [engcollabn_type]
    TEXT,               -- Collaboration Text [engcollabn_text]
    STATUS,             -- Collaboration Status [engcollabn_status]
    SUPPLIER,           -- Supplier [lifnr]
    PERSONRESPONSIBLE,  -- Engineering Collaboration Person Responsible [engcollabn_person_resp]
    CREATEDBY,          -- Created By [abp_creation_user]
    CREATEDAT,          -- Created On [abp_creation_tstmpl]
    LASTCHANGEDBY,      -- Changed By [abp_locinst_lastchange_user]
    LASTCHANGEDAT,      -- Changed On [abp_locinst_lastchange_tstmpl]
    PRIMARY KEY (CLIENT, UUID)
);