MOM052

Transparent Table Application Table

Arbeitsplatzadressen

MOM052 is an SAP database table in S/4HANA. Arbeitsplatzadressen. It contains 7 fields. 5 CDS views read from this table.

CDS Views using this table (5)

ViewTypeJoinVDMDescription
FNDEI_MOM052_BLOCKINGINFO view from Blocking View for table mom052
FNDEI_mom052_FILTER view from Filter View for table mom052
I_BPEmployeeWorkplaceAddr view from BASIC Business Partner Employee Workplace address
I_WorkplaceAddress view from BASIC Employee Workplace Address
ICM_EMPLOYEE_CONTACT view from Employee

Fields (7)

KeyField Data ElementDescription DomainTypeLength
KEY client mandt Client
KEY partner_guid bu_partner_guid BP GUID
KEY address_guid bu_wp_address_guid GUID of a Business Partner Workplace Address
org_addr_number ad_addrnum Address Number
org_addr_origin bu_org_addr_origin Org.Addr.Origin
from_timestamp tzntstmps Time Stamp
to_timestamp tzntstmps Time Stamp

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.

-- Arbeitsplatzadressen
-- Category TRANSPARENT · Delivery class A
-- Derived schema, generated from indexed DDIC field metadata (not the verbatim SAP source).
CREATE TABLE MOM052 (
    CLIENT,           -- Client [mandt]
    PARTNER_GUID,     -- BP GUID [bu_partner_guid]
    ADDRESS_GUID,     -- GUID of a Business Partner Workplace Address [bu_wp_address_guid]
    ORG_ADDR_NUMBER,  -- Address Number [ad_addrnum]
    ORG_ADDR_ORIGIN,  -- Org.Addr.Origin [bu_org_addr_origin]
    FROM_TIMESTAMP,   -- Time Stamp [tzntstmps]
    TO_TIMESTAMP,     -- Time Stamp [tzntstmps]
    PRIMARY KEY (CLIENT, PARTNER_GUID, ADDRESS_GUID)
);