SMBATCH

Transparent Table Application Table

Batch Information for an Entry in the Monitor

SMBATCH is an SAP database table in S/4HANA. Batch Information for an Entry in the Monitor. It contains 9 fields. 1 CDS views read from this table.

CDS Views using this table (1)

ViewTypeJoinVDMDescription
P_SM_BasicBatchData view from Schedule Manager main batch data

Fields (9)

KeyField Data ElementDescription DomainTypeLength
KEY mandt MANDT Client
KEY id SCHEDMAN_ID ID
logsys LOGSYS Logical system
idtype SCHEDMAN_TYPE Type
jobname BTCJOB Job Name
jobcount BTCJOBCNT Job No.
stepcount BTCSTEPCNT Step no.
status BTCSTATUS Job status
lstflg SM_LSTFLG Spool list

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.

-- Batch Information for an Entry in the Monitor
-- Category TRANSPARENT · Delivery class A
-- Derived schema, generated from indexed DDIC field metadata (not the verbatim SAP source).
CREATE TABLE SMBATCH (
    MANDT,      -- Client [MANDT]
    ID,         -- ID [SCHEDMAN_ID]
    LOGSYS,     -- Logical system [LOGSYS]
    IDTYPE,     -- Type [SCHEDMAN_TYPE]
    JOBNAME,    -- Job Name [BTCJOB]
    JOBCOUNT,   -- Job No. [BTCJOBCNT]
    STEPCOUNT,  -- Step no. [BTCSTEPCNT]
    STATUS,     -- Job status [BTCSTATUS]
    LSTFLG,     -- Spool list [SM_LSTFLG]
    PRIMARY KEY (MANDT, ID)
);