BCONT

Transparent Table Application Table

Geschäftspartnerkontakt

BCONT is an SAP database table in S/4HANA. Geschäftspartnerkontakt. It contains 19 fields. 2 CDS views read from this table.

CDS Views using this table (2)

ViewTypeJoinVDMDescription
SHSM_H_BCONTACT view left_outer Data definations of SHSM_H_BCONTACT
SHSM_M_BCONA view from Data definations of SHSM_M_BCONA

Fields (19)

KeyField Data ElementDescription DomainTypeLength
KEY mandt mandt Client
KEY bpcontact ct_contact BP Contact
pcategory ct_pcateg Partner Type
partner bu_partner Busn. Partner
altpartner ct_altpart Contact Person
rltyp bu_rltyp Object part
ctype ct_ctype Type
cclass ct_cclass Class
activity ct_activit Action
f_coming ct_coming In/Outgoing
origin ct_origin Origin
ctdate datum Date
cttime time_ Time
wfid ct_wfid Workflow
addinfo ct_addinfo Add. Info
priority ct_priority Priority
custinfo ct_custinfo Customer Info.
sparte sparte Division
bukrs bukrs Company Code

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.

-- Geschäftspartnerkontakt
-- Category TRANSPARENT · Delivery class A
-- Derived schema, generated from indexed DDIC field metadata (not the verbatim SAP source).
CREATE TABLE BCONT (
    MANDT,       -- Client [mandt]
    BPCONTACT,   -- BP Contact [ct_contact]
    PCATEGORY,   -- Partner Type [ct_pcateg]
    PARTNER,     -- Busn. Partner [bu_partner]
    ALTPARTNER,  -- Contact Person [ct_altpart]
    RLTYP,       -- Object part [bu_rltyp]
    CTYPE,       -- Type [ct_ctype]
    CCLASS,      -- Class [ct_cclass]
    ACTIVITY,    -- Action [ct_activit]
    F_COMING,    -- In/Outgoing [ct_coming]
    ORIGIN,      -- Origin [ct_origin]
    CTDATE,      -- Date [datum]
    CTTIME,      -- Time [time_]
    WFID,        -- Workflow [ct_wfid]
    ADDINFO,     -- Add. Info [ct_addinfo]
    PRIORITY,    -- Priority [ct_priority]
    CUSTINFO,    -- Customer Info. [ct_custinfo]
    SPARTE,      -- Division [sparte]
    BUKRS,       -- Company Code [bukrs]
    PRIMARY KEY (MANDT, BPCONTACT)
);