6.36 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

Parameter Description
p_image_prefix The image prefix. It can be a fully qualified domain, like a CDN or another web server, or just a path.

Example

The following example sets the value of the image prefix attribute for app 100 to /i/

begin
  apex_application_install.set_image_prefix( p_image_prefix => '/i/' );
end;
/
@f100.sql