5.25 SET_IMAGE_PREFIX Procedure

This procedure sets the application image prefix.

Syntax

APEX_APPLICATION_ADMIN.SET_IMAGE_PREFIX (
    p_application_id IN NUMBER,
    p_image_prefix   IN VARCHAR2 )

Parameters

Parameter Description
p_application_id The application ID.
p_image_prefix The image prefix. Must be fewer than 255 characters.

Example

The following example sets the application image prefix to "/static/" for application 100.

DECLARE
    c_id           constant number        := 100;
    c_image_prefix constant varchar2(255) := '/static/';
BEGIN
    apex_application_admin.set_image_prefix (
        p_application_id => c_id,
        p_image_prefix   => c_image_prefix );
END;