4.20 GET_REMOTE_SERVER_BASE_URL Function

Use this function to get the Base URL property to be used for a given remote server during application import.

Syntax

APEX_APPLICATION_INSTALL.GET_REMOTE_SERVER_BASE_URL(
    p_static_id IN VARCHAR2)
RETURN VARCHAR2;

Parameters

Table 4-3 GET_REMOTE_SERVER_BASE_URL Function Parameters

Parameter Description

p_static_id

Static ID to reference the remote server object.

Example

declare
    l_base_url varchar2(255);
begin
    l_base_url := apex_application_install.get_remote_server_base_url( 'MY_REMOTE_SERVER' );
end;