START_S_PR_STEPS

Transparent Table System Table (SAP only)

Process Step

START_S_PR_STEPS is an SAP database table in S/4HANA. Process Step. It contains 26 fields. 1 CDS views read from this table.

CDS Views using this table (1)

ViewTypeJoinVDMDescription
I_TestAutomateProcessStep view_entity from BASIC Test Automate Steps

Fields (26)

KeyField Data ElementDescription DomainTypeLength
KEY step_id start_step_id
step_name start_step_name
version start_step_version
country start_country
step_desc start_step_desc
ui_technology start_ui_technology
software_comp dlvunit Softw. Comp.
rel saprelease SAP Release
application start_application_area
pkg devclass Package
tagname start_app_tag
created_on start_created_on
created_by start_created_by
step_xml start_step_xml
url_params start_app_url_params
role agr_name Role
language laiso Language Code
situation start_step_situation
step_type start_step_type
app_comp start_app_comp
deprecated_rel start_deprecated_release
change_flag start_step_change_flag
content_ver start_step_content_version
changed_on start_changed_on
changed_at start_changed_at
changed_by start_changed_by

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.

-- Process Step
-- Category TRANSPARENT · Delivery class S
-- Derived schema, generated from indexed DDIC field metadata (not the verbatim SAP source).
CREATE TABLE START_S_PR_STEPS (
    STEP_ID,         -- start_step_id
    STEP_NAME,       -- start_step_name
    VERSION,         -- start_step_version
    COUNTRY,         -- start_country
    STEP_DESC,       -- start_step_desc
    UI_TECHNOLOGY,   -- start_ui_technology
    SOFTWARE_COMP,   -- Softw. Comp. [dlvunit]
    REL,             -- SAP Release [saprelease]
    APPLICATION,     -- start_application_area
    PKG,             -- Package [devclass]
    TAGNAME,         -- start_app_tag
    CREATED_ON,      -- start_created_on
    CREATED_BY,      -- start_created_by
    STEP_XML,        -- start_step_xml
    URL_PARAMS,      -- start_app_url_params
    ROLE,            -- Role [agr_name]
    LANGUAGE,        -- Language Code [laiso]
    SITUATION,       -- start_step_situation
    STEP_TYPE,       -- start_step_type
    APP_COMP,        -- start_app_comp
    DEPRECATED_REL,  -- start_deprecated_release
    CHANGE_FLAG,     -- start_step_change_flag
    CONTENT_VER,     -- start_step_content_version
    CHANGED_ON,      -- start_changed_on
    CHANGED_AT,      -- start_changed_at
    CHANGED_BY,      -- start_changed_by
    PRIMARY KEY (STEP_ID)
);