RDPT_SET

Transparent Table Application Table

Quantity of Redemption Schedules

RDPT_SET is an SAP database table in S/4HANA. Quantity of Redemption Schedules. It contains 33 fields. 1 CDS views read from this table.

CDS Views using this table (1)

ViewTypeJoinVDMDescription
P_RdptSet view from BASIC

Fields (33)

KeyField Data ElementDescription DomainTypeLength
KEY mandt MANDT Client
KEY set_key TBSK_SYSTEM_KEY Key
security_id VVRANLW Security Class
gsart VVSART Product Type
set_name RDPT_SET_NAME Redem.Sched. Set
set_text RDPT_SET_TEXT RS set long txt
first_redemption RDPT_FIRST_REDEMPTION 1st Redemption
last_redemption RDPT_LAST_REDEMPTION Last Redemption
period_length RDPT_SET_TFMARHY Cycle
period_type DATTP Period Ind.
rounding_rule RDPT_RDMHD Rounding Rule
period_length_pb TFMARHY Frequency
period_type_pb DATTP Period Ind.
rounding_rule_pb RDPT_RDMHD Rounding Rule
set_type RDPT_SET_TYPE RS Set Class
calendar SKALID Calendar
due_calenda_rule VVSFWERK Calendar Rule
calc_inclusive VVSINCL Inclusive Ind.
round_type TFM_SROUND Rounding Cat.
enter_mode RDPT_ENTER_MODE Entry Type
num_of_dec RDPT_NUM_OF_DEC No. Dec. Places
avtage RDPT_SET_TFMATAGE2 Number of Days
avtagevz RDPT_SET_TFMSPLUSMI Operator
repayment_curr RDPT_SET_PAYMENT_CURR Payment Crcy
wac_orig RDPT_SET_WAC_ORIG WAC Orig.
net_orig RDPT_SET_NET_ORIG Net Orig.
wam_orig RDPT_SET_WAM_ORIG WAM Orig.
curr_value RDPT_SET_CURR_VALUE Curr. Face Amnt
calc_method RDPT_SET_CALC_METHOD Calc. Method
calc_start RDPT_SET_CALC_START Start Date
fai RDPT_SET_FAI Prep. Speed Int.
use_ict RDPT_INT_TEMP Int.Cond.Template
dfaell DFAELL Due Date

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.

-- Quantity of Redemption Schedules
-- Category TRANSPARENT · Delivery class A
-- Derived schema, generated from indexed DDIC field metadata (not the verbatim SAP source).
CREATE TABLE RDPT_SET (
    MANDT,             -- Client [MANDT]
    SET_KEY,           -- Key [TBSK_SYSTEM_KEY]
    SECURITY_ID,       -- Security Class [VVRANLW]
    GSART,             -- Product Type [VVSART]
    SET_NAME,          -- Redem.Sched. Set [RDPT_SET_NAME]
    SET_TEXT,          -- RS set long txt [RDPT_SET_TEXT]
    FIRST_REDEMPTION,  -- 1st Redemption [RDPT_FIRST_REDEMPTION]
    LAST_REDEMPTION,   -- Last Redemption [RDPT_LAST_REDEMPTION]
    PERIOD_LENGTH,     -- Cycle [RDPT_SET_TFMARHY]
    PERIOD_TYPE,       -- Period Ind. [DATTP]
    ROUNDING_RULE,     -- Rounding Rule [RDPT_RDMHD]
    PERIOD_LENGTH_PB,  -- Frequency [TFMARHY]
    PERIOD_TYPE_PB,    -- Period Ind. [DATTP]
    ROUNDING_RULE_PB,  -- Rounding Rule [RDPT_RDMHD]
    SET_TYPE,          -- RS Set Class [RDPT_SET_TYPE]
    CALENDAR,          -- Calendar [SKALID]
    DUE_CALENDA_RULE,  -- Calendar Rule [VVSFWERK]
    CALC_INCLUSIVE,    -- Inclusive Ind. [VVSINCL]
    ROUND_TYPE,        -- Rounding Cat. [TFM_SROUND]
    ENTER_MODE,        -- Entry Type [RDPT_ENTER_MODE]
    NUM_OF_DEC,        -- No. Dec. Places [RDPT_NUM_OF_DEC]
    AVTAGE,            -- Number of Days [RDPT_SET_TFMATAGE2]
    AVTAGEVZ,          -- Operator [RDPT_SET_TFMSPLUSMI]
    REPAYMENT_CURR,    -- Payment Crcy [RDPT_SET_PAYMENT_CURR]
    WAC_ORIG,          -- WAC Orig. [RDPT_SET_WAC_ORIG]
    NET_ORIG,          -- Net Orig. [RDPT_SET_NET_ORIG]
    WAM_ORIG,          -- WAM Orig. [RDPT_SET_WAM_ORIG]
    CURR_VALUE,        -- Curr. Face Amnt [RDPT_SET_CURR_VALUE]
    CALC_METHOD,       -- Calc. Method [RDPT_SET_CALC_METHOD]
    CALC_START,        -- Start Date [RDPT_SET_CALC_START]
    FAI,               -- Prep. Speed Int. [RDPT_SET_FAI]
    USE_ICT,           -- Int.Cond.Template [RDPT_INT_TEMP]
    DFAELL,            -- Due Date [DFAELL]
    PRIMARY KEY (MANDT, SET_KEY)
);