PSRRBPIDS

Transparent Table Application Table

RRB Processing IDs for Mass Release

PSRRBPIDS is an SAP database table in S/4HANA. RRB Processing IDs for Mass Release. It contains 9 fields. 1 CDS views read from this table.

CDS Views using this table (1)

ViewTypeJoinVDMDescription
I_RRBMassReleaseJob view from BASIC Mass Release Job Details

Fields (9)

KeyField Data ElementDescription DomainTypeLength
KEY mandt MANDT Client
KEY billing_plan_item_key abap.char
sale_order_id VBELN SD Document
sale_order_item_id POSNR Item
billing_plan_id FPLNR Bill. Plan No.
billing_plan_item_id FPLTR Item
jobname BTCJOB Job Name
jobcount BTCJOBCNT Job No.
is_in_process BOOLEAN Boolean Variable (X = True, - = False, Space = Unknown)

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.

-- RRB Processing IDs for Mass Release
-- Category TRANSPARENT · Delivery class A
-- Derived schema, generated from indexed DDIC field metadata (not the verbatim SAP source).
CREATE TABLE PSRRBPIDS (
    MANDT,                  -- Client [MANDT]
    BILLING_PLAN_ITEM_KEY,  -- abap.char
    SALE_ORDER_ID,          -- SD Document [VBELN]
    SALE_ORDER_ITEM_ID,     -- Item [POSNR]
    BILLING_PLAN_ID,        -- Bill. Plan No. [FPLNR]
    BILLING_PLAN_ITEM_ID,   -- Item [FPLTR]
    JOBNAME,                -- Job Name [BTCJOB]
    JOBCOUNT,               -- Job No. [BTCJOBCNT]
    IS_IN_PROCESS,          -- Boolean Variable (X = True, - = False, Space = Unknown) [BOOLEAN]
    PRIMARY KEY (MANDT, BILLING_PLAN_ITEM_KEY)
);