RFM_SEASONS

Transparent Table Application Table

Season Master

RFM_SEASONS is an SAP database table in S/4HANA. Season Master. It contains 13 fields. 18 CDS views read from this table.

CDS Views using this table (18)

ViewTypeJoinVDMDescription
I_Season view_entity from BASIC Season
I_SeasonBasic view from BASIC Season basic view
RFM_E_COL view from FSH_COLLECTIONS Compatibility view
RFM_E_COL_T view from FSH_COLLECTIONS_TCompatibility view
RFM_E_SEA view from FSH_SEASONS Compatibility view
RFM_E_SEA_T view from FSH_SEASONS_TCompatibility view
RFM_E_THEME view from FSH_THEMES Compatibility view
RFM_E_theme_T view from FSH_COLLECTIONS_TCompatibility view
RFM_MM_PERIODS_V view inner FSH_MM_PERIODS enh. with RFM_PRIORITY
RFM_PP_PERIODS_V view inner FSH_PP_PERIODS enh. with RFM_PRIORITY
rfm_scc_sd_season_assign view inner RFM Manage Season Completeness SD Assign
RFM_SCC_SEASNID_KEYITM_ART_V view inner CDS view for key item assigned to season
rfm_scc_season_concat_V view from View for season concatenation
rfm_scc_season_data view from get season data and season Text
rfm_Scc_season_text view from Season Text
RFM_SCC_SEASONID_ARTICLE_V view inner CDS view for article assigned to season
rfm_scc_sto_sea_assign view inner RFM Season Complete Check STO Assignment
RFM_SD_PERIODS_V view inner FSH_SD_PERIODS enh. with RFM_PRIORITY

Fields (13)

KeyField Data ElementDescription DomainTypeLength
KEY mandt mandt Client
KEY rfm_suid rfm_suid Sea Int. Identifier
fsh_season_year fsh_saisj Season Year
fsh_season fsh_saiso Season
fsh_collection fsh_collection Collection
fsh_theme fsh_theme Theme
fsh_validity_frm fsh_sea_valid_from Validity From
fsh_validity_to fsh_sea_valid_to Validity To
rfm_seasonlevel rfm_seasonlevel Season Level
rfm_seasonyearparent rfm_seasonyearparent Season Year Par
rfm_seasonparent rfm_seasonparent Season Parent
rfm_collectionparent rfm_collectionparent Collection Par
rfm_themeparent rfm_themeparent Theme Parent

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.

-- Season Master
-- Category TRANSPARENT · Delivery class A
-- Derived schema, generated from indexed DDIC field metadata (not the verbatim SAP source).
CREATE TABLE RFM_SEASONS (
    MANDT,                 -- Client [mandt]
    RFM_SUID,              -- Sea Int. Identifier [rfm_suid]
    FSH_SEASON_YEAR,       -- Season Year [fsh_saisj]
    FSH_SEASON,            -- Season [fsh_saiso]
    FSH_COLLECTION,        -- Collection [fsh_collection]
    FSH_THEME,             -- Theme [fsh_theme]
    FSH_VALIDITY_FRM,      -- Validity From [fsh_sea_valid_from]
    FSH_VALIDITY_TO,       -- Validity To [fsh_sea_valid_to]
    RFM_SEASONLEVEL,       -- Season Level [rfm_seasonlevel]
    RFM_SEASONYEARPARENT,  -- Season Year Par [rfm_seasonyearparent]
    RFM_SEASONPARENT,      -- Season Parent [rfm_seasonparent]
    RFM_COLLECTIONPARENT,  -- Collection Par [rfm_collectionparent]
    RFM_THEMEPARENT,       -- Theme Parent [rfm_themeparent]
    PRIMARY KEY (MANDT, RFM_SUID)
);