7.26 GET_REMOTE_SERVER_AI_MODEL Function

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

Syntax

APEX_APPLICATION_INSTALL.GET_REMOTE_SERVER_AI_MODEL (
    p_static_id IN VARCHAR2 )
    RETURN VARCHAR2;

Parameters

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

Example

DECLARE
    l_ai_model varchar2(255);
BEGIN
    l_ai_model := apex_application_install.get_remote_server_ai_model( 'MY_REMOTE_SERVER' );
END;