NJIT_D_DCNF_HDR

Transparent Table Application Table

NJIT: Delivery Confirmation Header

NJIT_D_DCNF_HDR is an SAP database table in S/4HANA. NJIT: Delivery Confirmation Header. It contains 19 fields. 1 CDS views read from this table.

CDS Views using this table (1)

ViewTypeJoinVDMDescription
I_JITDelivConfBasic view_entity from BASIC JIT Delivery Confirmation

Fields (19)

KeyField Data ElementDescription DomainTypeLength
KEY mandt MANDT Client
KEY jitdeliveryconfirmationuuid /BOBF/CONF_KEY NodeID
jitdeliveryconfirmationid NJIT_DCNF_ID Deliv Conf ID
jitexternaldelivconfnmbr NJIT_DCNF_EXT_ID Deliv Conf Ext ID
shiptoparty KUNWE Ship-to Party
customerpartnerdescription KNREF Partner desc.
activesupplier LIFNR Supplier
plant WERKS_D Plant
salesorganization VKORG Sales Org.
billingdocument NJIT_BTD_ID BTD ID
jitarchivingstatus /BOFU/ARCHIVING_STATUS_CODE Archiving Stat.
jitdeliveryconfirmationdate NJIT_DCNF_DATE Deliv Conf Date
billingdocumentdate FKDAT Billing Date
jitreleasestatus NJIT_DCNF_RELEASE_STATUS Release Status
jitdelivconfmatchingstatus NJIT_DCNF_MATCHING_STATUS Matching Status
creationdatetime TIMESTAMPL Time Stamp
createdbyuser UNAME User Name
lastchangedatetime TIMESTAMPL Time Stamp
lastchangedbyuser UNAME User Name

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.

-- NJIT: Delivery Confirmation Header
-- Category TRANSPARENT · Delivery class A
-- Derived schema, generated from indexed DDIC field metadata (not the verbatim SAP source).
CREATE TABLE NJIT_D_DCNF_HDR (
    MANDT,                        -- Client [MANDT]
    JITDELIVERYCONFIRMATIONUUID,  -- NodeID [/BOBF/CONF_KEY]
    JITDELIVERYCONFIRMATIONID,    -- Deliv Conf ID [NJIT_DCNF_ID]
    JITEXTERNALDELIVCONFNMBR,     -- Deliv Conf Ext ID [NJIT_DCNF_EXT_ID]
    SHIPTOPARTY,                  -- Ship-to Party [KUNWE]
    CUSTOMERPARTNERDESCRIPTION,   -- Partner desc. [KNREF]
    ACTIVESUPPLIER,               -- Supplier [LIFNR]
    PLANT,                        -- Plant [WERKS_D]
    SALESORGANIZATION,            -- Sales Org. [VKORG]
    BILLINGDOCUMENT,              -- BTD ID [NJIT_BTD_ID]
    JITARCHIVINGSTATUS,           -- Archiving Stat. [/BOFU/ARCHIVING_STATUS_CODE]
    JITDELIVERYCONFIRMATIONDATE,  -- Deliv Conf Date [NJIT_DCNF_DATE]
    BILLINGDOCUMENTDATE,          -- Billing Date [FKDAT]
    JITRELEASESTATUS,             -- Release Status [NJIT_DCNF_RELEASE_STATUS]
    JITDELIVCONFMATCHINGSTATUS,   -- Matching Status [NJIT_DCNF_MATCHING_STATUS]
    CREATIONDATETIME,             -- Time Stamp [TIMESTAMPL]
    CREATEDBYUSER,                -- User Name [UNAME]
    LASTCHANGEDATETIME,           -- Time Stamp [TIMESTAMPL]
    LASTCHANGEDBYUSER,            -- User Name [UNAME]
    PRIMARY KEY (MANDT, JITDELIVERYCONFIRMATIONUUID)
);