COLLECTION

COLLECTION is an SAP database table in S/4HANA. It contains 6 fields.

Fields (6)

KeyField CDS FieldsUsed in Views
KEY project_id name 1
category category,collection_category 2
description_text CollectionDescription,MergedCollectionDescription 2
devclass package_name 1
original_systname original_system 1
project_description description 1

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.

-- Derived schema, generated from indexed DDIC field metadata (not the verbatim SAP source).
CREATE TABLE COLLECTION (
    PROJECT_ID,
    CATEGORY,
    DESCRIPTION_TEXT,
    DEVCLASS,
    ORIGINAL_SYSTNAME,
    PROJECT_DESCRIPTION,
    PRIMARY KEY (PROJECT_ID)
);