ALLOC_RUN_REFMAP

Transparent Table Application Table

Allocation run receiver/reference mapping

ALLOC_RUN_REFMAP is an SAP database table in S/4HANA. Allocation run receiver/reference mapping. It contains 7 fields. 1 CDS views read from this table.

CDS Views using this table (1)

ViewTypeJoinVDMDescription
I_AllocRunReferenceMapping view from BASIC Allocation Run Reference Mapping

Fields (7)

KeyField Data ElementDescription DomainTypeLength
KEY mandt mandt Client
KEY run_id alloc_run_id Run ID
KEY cycle cycle Cycle
KEY sdate sdate Valid From
KEY segment sqnr Segment number
KEY receiver_pos alloc_run_result_pos Result Pos.
KEY reference_pos alloc_run_result_pos Result Pos.

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.

-- Allocation run receiver/reference mapping
-- Category TRANSPARENT · Delivery class A
-- Derived schema, generated from indexed DDIC field metadata (not the verbatim SAP source).
CREATE TABLE ALLOC_RUN_REFMAP (
    MANDT,          -- Client [mandt]
    RUN_ID,         -- Run ID [alloc_run_id]
    CYCLE,          -- Cycle [cycle]
    SDATE,          -- Valid From [sdate]
    SEGMENT,        -- Segment number [sqnr]
    RECEIVER_POS,   -- Result Pos. [alloc_run_result_pos]
    REFERENCE_POS,  -- Result Pos. [alloc_run_result_pos]
    PRIMARY KEY (MANDT, RUN_ID, CYCLE, SDATE, SEGMENT, RECEIVER_POS, REFERENCE_POS)
);