NJIT_C_REPL_STRT

Transparent Table Customizing Table

Just-In Time replenishment strategy for stock transfer

NJIT_C_REPL_STRT is an SAP database table in S/4HANA. Just-In Time replenishment strategy for stock transfer. It contains 7 fields. 1 CDS views read from this table.

CDS Views using this table (1)

ViewTypeJoinVDMDescription
I_JITOutbReplnmtStrgy view from BASIC Basic view for Replenishment strategy

Fields (7)

KeyField Data ElementDescription DomainTypeLength
KEY mandt MANDT Client
KEY werks WERKS_D Plant
KEY jit_stck_transfer_repl_strat NJIT_STCK_TRANSFER_REPL_STRAT JIT Stock Transfer
jit_control_type NJIT_CONTROL_TYPE Control Type
bwart BWART Movement Type
bwark BWARK Foll-on mvtType
jit_packing_instr NJIT_PACKING_INSTR Use PIs

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.

-- Just-In Time replenishment strategy for stock transfer
-- Category TRANSPARENT · Delivery class C
-- Derived schema, generated from indexed DDIC field metadata (not the verbatim SAP source).
CREATE TABLE NJIT_C_REPL_STRT (
    MANDT,                         -- Client [MANDT]
    WERKS,                         -- Plant [WERKS_D]
    JIT_STCK_TRANSFER_REPL_STRAT,  -- JIT Stock Transfer [NJIT_STCK_TRANSFER_REPL_STRAT]
    JIT_CONTROL_TYPE,              -- Control Type [NJIT_CONTROL_TYPE]
    BWART,                         -- Movement Type [BWART]
    BWARK,                         -- Foll-on mvtType [BWARK]
    JIT_PACKING_INSTR,             -- Use PIs [NJIT_PACKING_INSTR]
    PRIMARY KEY (MANDT, WERKS, JIT_STCK_TRANSFER_REPL_STRAT)
);