ARUN_STOCK_SEGMT

Transparent Table Customizing Table

ARun Stock Type Selection

ARUN_STOCK_SEGMT is an SAP database table in S/4HANA. ARun Stock Type Selection. It contains 6 fields. 5 CDS views read from this table.

CDS Views using this table (5)

ViewTypeJoinVDMDescription
arun_i_batch_lines view left_outer Batch Stock selection at storage level
ARUN_I_STOCK_LINES view left_outer Physical Stock selection aggregation
arun_i_stora_line view left_outer Storage location stock aggregation
Arun_Stock_Lines view left_outer Aggregate stock for Supply Assignment
P_SupDmndStockSelection view from BASIC Basic View for Confirmations

Fields (6)

KeyField Data ElementDescription DomainTypeLength
KEY mandt mandt Client
KEY plant werks_d Plant
transfer_stock arun_tf_stock Stock in Transfer
blocked_stock arun_bl_stock Blocked Stock
restricted_stock arun_rs_stock Restricted-Use stock
quality_stock arun_qi_stock Qty Inspection Stk

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.

-- ARun Stock Type Selection
-- Category TRANSPARENT · Delivery class C
-- Derived schema, generated from indexed DDIC field metadata (not the verbatim SAP source).
CREATE TABLE ARUN_STOCK_SEGMT (
    MANDT,             -- Client [mandt]
    PLANT,             -- Plant [werks_d]
    TRANSFER_STOCK,    -- Stock in Transfer [arun_tf_stock]
    BLOCKED_STOCK,     -- Blocked Stock [arun_bl_stock]
    RESTRICTED_STOCK,  -- Restricted-Use stock [arun_rs_stock]
    QUALITY_STOCK,     -- Qty Inspection Stk [arun_qi_stock]
    PRIMARY KEY (MANDT, PLANT)
);