6.45 SET_THEME_ID Procedure

This procedure overrides the Theme ID attribute for Template Components that are about to be installed.

Syntax

APEX_APPLICATION_INSTALL.SET_THEME_ID (
    p_theme_id  IN NUMBER )

Parameters

Parameter Description
p_theme_id New Theme ID value to install the Template Component.

Example

The following example sets "Theme ID" to 42.

BEGIN
    apex_application_install.set_theme_id (
    p_theme_id => 42 );
END;
/
@plugin.sql