8.24 GET_REMOTE_SERVER_AI_ATTRS Function

This function gets the AI attributes property to be used for a given remote server during application import.

Syntax

APEX_APPLICATION_INSTALL.GET_REMOTE_SERVER_AI_ATTRS (
    p_static_id IN VARCHAR2 )
    RETURN CLOB;

Parameters

Parameter Description
p_static_id Static ID to reference the remote server object.

Example

DECLARE
    l_ai_attributes clob;
BEGIN
    l_ai_attributes := apex_application_install.get_remote_server_ai_attrs( 'MY_REMOTE_SERVER' );
END