4.32 SET_IMAGE_PREFIX Procedure

This procedure sets the image prefix of the import application. Most Oracle APEX instances use the default image prefix of /i/.

Syntax

APEX_APPLICATION_INSTALL.SET_IMAGE_PREFIX(
    p_image_prefix  IN VARCHAR2);

Parameters

Table 4-13 SET_APPLICATION_NAME Parameters

Parameter Description
p_auto_install_sup_obj The automatic install of supporting objects Boolean value.

Example

The following example sets the value of the image prefix variable in APEX_APPLICATION_INSTALL.

DECLARE
    l_prefix varchar2(255) := '/i/';
BEGIN
    apex_application_install.set_image_prefix( p_image_prefix => l_prefix );
END;