SDSOR_AE_SRCIMG

Transparent Table Application Table

Source Image of the Uploaded File

SDSOR_AE_SRCIMG is an SAP database table in S/4HANA. Source Image of the Uploaded File. It contains 5 fields. 1 CDS views read from this table.

CDS Views using this table (1)

ViewTypeJoinVDMDescription
I_SalesOrderRequestSourceImage view from BASIC Source Image of Sales Order Request

Fields (5)

KeyField Data ElementDescription DomainTypeLength
KEY mandt abap.clnt
KEY salesorderrequest sd_sales_order_request Sales Order Request
KEY slsordreqsourceimagepagenumber int4 INT4
slsordreqsourceimagemimetype dd_fti_mime_type MIME Type
slsordreqsrceimgcontentbinary abap.rawstring

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.

-- Source Image of the Uploaded File
-- Category TRANSPARENT · Delivery class A
-- Derived schema, generated from indexed DDIC field metadata (not the verbatim SAP source).
CREATE TABLE SDSOR_AE_SRCIMG (
    MANDT,                           -- abap.clnt
    SALESORDERREQUEST,               -- Sales Order Request [sd_sales_order_request]
    SLSORDREQSOURCEIMAGEPAGENUMBER,  -- INT4 [int4]
    SLSORDREQSOURCEIMAGEMIMETYPE,    -- MIME Type [dd_fti_mime_type]
    SLSORDREQSRCEIMGCONTENTBINARY,   -- abap.rawstring
    PRIMARY KEY (MANDT, SALESORDERREQUEST, SLSORDREQSOURCEIMAGEPAGENUMBER)
);