VBSS

Transparent Table Application Table

Collective Processing: Sales Documents

VBSS is an SAP database table in S/4HANA. Collective Processing: Sales Documents. It contains 4 fields. 1 CDS views read from this table.

CDS Views using this table (1)

ViewTypeJoinVDMDescription
I_CollectiveProcessingDocument view from BASIC Collective Processing Sales Documents

Fields (4)

KeyField Data ElementDescription DomainTypeLength
KEY mandt mandt Client
KEY sammg sammg Group
KEY vbeln vbeln SD Document
sortf sortf4 Sort sequence

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.

-- Collective Processing: Sales Documents
-- Category TRANSPARENT · Delivery class A
-- Derived schema, generated from indexed DDIC field metadata (not the verbatim SAP source).
CREATE TABLE VBSS (
    MANDT,  -- Client [mandt]
    SAMMG,  -- Group [sammg]
    VBELN,  -- SD Document [vbeln]
    SORTF,  -- Sort sequence [sortf4]
    PRIMARY KEY (MANDT, SAMMG, VBELN)
);