/IWFND/SU_ERRLOG

Transparent Table Temporary Data

SUTIL Error Log

/IWFND/SU_ERRLOG is an SAP database table in S/4HANA. SUTIL Error Log. It contains 48 fields. 1 CDS views read from this table.

CDS Views using this table (1)

ViewTypeJoinVDMDescription
/IWFND/CDS_I_ERRLOG view from Error Log

Fields (48)

KeyField Data ElementDescription DomainTypeLength
KEY sapclient symandt Client ID
KEY opid abap.char Operation ID
KEY subno abap.int4 Entry number within an operation
username syuname User Name
timestamp timestampl Time Stamp
error_count abap.int4 Error Count
first_tstmp timestampl Time Stamp
expiry_date abap.dats Expiry Date
t100_msgid symsgid Message Class
t100_msgno symsgno Message Number
t100_msgv1 symsgv Message Variable
t100_msgv2 symsgv Message Variable
t100_msgv3 symsgv Message Variable
t100_msgv4 symsgv Message Variable
location /iwfnd/sutil_location Location
channel abap.char Channel
error_text abap.char Error Text
error_component abap.char ABAP Component
error_package abap.char ABAP Package
source_program abap.char Source Program
source_line abap.int4 Source Line
namespace abap.char Service Namespace
service_name abap.char Service Name
transaction_id abap.char EPP Transaction ID
root_context_id abap.char EPP Root Context ID
connection_id abap.char EPP Connection ID
connection_cnt abap.int4 EPP Connection Count
terminal_id abap.char Terminal ID
remote_address abap.char Remote Address
destination abap.char Destination
request_uri abap.char Request URI
balogno balognr Log Number
context_size abap.int4 XML Size of Error Context
callstack_size abap.int4 XML Size of Call Stack
request_size abap.int4 XML Size of Payload Request
response_size abap.int4 XML Size of Payload Response
error_context abap.rawstring Error Context in XML format
html_page abap.string HTML Page (HTTP Client only)
icf_node abap.char ICF Node
request_id abap.char Request ID
service_version abap.numc Service Version
log_level /iwfnd/sutil_log_level Error Log Level
service_repo abap.char OData V4 Service Repository
http_status abap.numc HTTP Status Code
group_id abap.char OData V4 Service Group ID
request_kind /iwfnd/sutil_request_kind Request kind
language sylangu Language Key
user_monitoring_attribute suid_attr_id_monitoring Monitoring

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.

-- SUTIL Error Log
-- Category TRANSPARENT · Delivery class L
-- Derived schema, generated from indexed DDIC field metadata (not the verbatim SAP source).
CREATE TABLE /IWFND/SU_ERRLOG (
    SAPCLIENT,                  -- Client ID [symandt]
    OPID,                       -- Operation ID [abap.char]
    SUBNO,                      -- Entry number within an operation [abap.int4]
    USERNAME,                   -- User Name [syuname]
    TIMESTAMP,                  -- Time Stamp [timestampl]
    ERROR_COUNT,                -- Error Count [abap.int4]
    FIRST_TSTMP,                -- Time Stamp [timestampl]
    EXPIRY_DATE,                -- Expiry Date [abap.dats]
    T100_MSGID,                 -- Message Class [symsgid]
    T100_MSGNO,                 -- Message Number [symsgno]
    T100_MSGV1,                 -- Message Variable [symsgv]
    T100_MSGV2,                 -- Message Variable [symsgv]
    T100_MSGV3,                 -- Message Variable [symsgv]
    T100_MSGV4,                 -- Message Variable [symsgv]
    LOCATION,                   -- Location [/iwfnd/sutil_location]
    CHANNEL,                    -- Channel [abap.char]
    ERROR_TEXT,                 -- Error Text [abap.char]
    ERROR_COMPONENT,            -- ABAP Component [abap.char]
    ERROR_PACKAGE,              -- ABAP Package [abap.char]
    SOURCE_PROGRAM,             -- Source Program [abap.char]
    SOURCE_LINE,                -- Source Line [abap.int4]
    NAMESPACE,                  -- Service Namespace [abap.char]
    SERVICE_NAME,               -- Service Name [abap.char]
    TRANSACTION_ID,             -- EPP Transaction ID [abap.char]
    ROOT_CONTEXT_ID,            -- EPP Root Context ID [abap.char]
    CONNECTION_ID,              -- EPP Connection ID [abap.char]
    CONNECTION_CNT,             -- EPP Connection Count [abap.int4]
    TERMINAL_ID,                -- Terminal ID [abap.char]
    REMOTE_ADDRESS,             -- Remote Address [abap.char]
    DESTINATION,                -- Destination [abap.char]
    REQUEST_URI,                -- Request URI [abap.char]
    BALOGNO,                    -- Log Number [balognr]
    CONTEXT_SIZE,               -- XML Size of Error Context [abap.int4]
    CALLSTACK_SIZE,             -- XML Size of Call Stack [abap.int4]
    REQUEST_SIZE,               -- XML Size of Payload Request [abap.int4]
    RESPONSE_SIZE,              -- XML Size of Payload Response [abap.int4]
    ERROR_CONTEXT,              -- Error Context in XML format [abap.rawstring]
    HTML_PAGE,                  -- HTML Page (HTTP Client only) [abap.string]
    ICF_NODE,                   -- ICF Node [abap.char]
    REQUEST_ID,                 -- Request ID [abap.char]
    SERVICE_VERSION,            -- Service Version [abap.numc]
    LOG_LEVEL,                  -- Error Log Level [/iwfnd/sutil_log_level]
    SERVICE_REPO,               -- OData V4 Service Repository [abap.char]
    HTTP_STATUS,                -- HTTP Status Code [abap.numc]
    GROUP_ID,                   -- OData V4 Service Group ID [abap.char]
    REQUEST_KIND,               -- Request kind [/iwfnd/sutil_request_kind]
    LANGUAGE,                   -- Language Key [sylangu]
    USER_MONITORING_ATTRIBUTE,  -- Monitoring [suid_attr_id_monitoring]
    PRIMARY KEY (SAPCLIENT, OPID, SUBNO)
);