CPE_FORMROUNDING

Transparent Table Application Table

CPE Formula Rounding

CPE_FORMROUNDING is an SAP database table in S/4HANA. CPE Formula Rounding. It contains 10 fields. 1 CDS views read from this table.

CDS Views using this table (1)

ViewTypeJoinVDMDescription
I_CmmdtyPrcgCndnFmlaRounding view_entity from BASIC Rounding for Pricing Condition Formula

Fields (10)

KeyField Data ElementDescription DomainTypeLength
KEY client MANDT Client
KEY docitemcond_guid CPET_DOCITEMCOND_GUID Doc. Cond. Item GUID
KEY convplace CPET_CONVPLACE Conv. Place
KEY termgroup CPET_TERMGROUP Term Group
KEY formid CPET_FORMID Formula Key
roundrule CPET_ROUNDRULE Rounding Rule
roundrout CPET_ROUNDROUT Round. Routine
numdecs CPET_NUMDECS Dec. Places Rnd
numtens CPET_NUMTENS Predec. Rndng
formroundin_guid CPET_FORMROUNDIN_GUID Round.Inp. GUID

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.

-- CPE Formula Rounding
-- Category TRANSPARENT · Delivery class A
-- Derived schema, generated from indexed DDIC field metadata (not the verbatim SAP source).
CREATE TABLE CPE_FORMROUNDING (
    CLIENT,            -- Client [MANDT]
    DOCITEMCOND_GUID,  -- Doc. Cond. Item GUID [CPET_DOCITEMCOND_GUID]
    CONVPLACE,         -- Conv. Place [CPET_CONVPLACE]
    TERMGROUP,         -- Term Group [CPET_TERMGROUP]
    FORMID,            -- Formula Key [CPET_FORMID]
    ROUNDRULE,         -- Rounding Rule [CPET_ROUNDRULE]
    ROUNDROUT,         -- Round. Routine [CPET_ROUNDROUT]
    NUMDECS,           -- Dec. Places Rnd [CPET_NUMDECS]
    NUMTENS,           -- Predec. Rndng [CPET_NUMTENS]
    FORMROUNDIN_GUID,  -- Round.Inp. GUID [CPET_FORMROUNDIN_GUID]
    PRIMARY KEY (CLIENT, DOCITEMCOND_GUID, CONVPLACE, TERMGROUP, FORMID)
);