46 APEX_PLUGIN
The APEX_PLUGIN package provides the interface declarations and some utility functions to work with plug-ins.
- About Configuring Flexible Remote Servers in APEX
Flexible remote servers use a configuration procedure to change the URL endpoint of the server. - Constants
- Data Types
- GET_AJAX_IDENTIFIER Function
- GET_KEEP_BACKGROUND_EXECS Function
- GET_INPUT_NAME_FOR_ITEM Function
- GET_INPUT_NAME_FOR_PAGE_ITEM Function (Deprecated)
46.1 GET_KEEP_BACKGROUND_EXECS Function
This function checks if background executions are preserved or deleted during upgrades. Defaults to FALSE, so all background executions are aborted and deleted on application upgrade.
Syntax
APEX_APPLICATION_INSTALL.GET_KEEP_BACKGROUND_EXECS
RETURN BOOLEAN;Parameters
None.
Example
The following example shows whether background executions are preserved or deleted.
BEGIN
dbms_output.put_line (
CASE WHEN apex_application_install.get_keep_background_execs
THEN 'background executions will be kept'
ELSE 'background executions will be deleted'
END );
END;See Also:
Parent topic: APEX_PLUGIN