8.33 GET_WORKSPACE_ID Function
Use this function to get the workspace ID for the application to be imported.
Syntax
APEX_APPLICATION_INSTALL.GET_WORKSPACE_ID
RETURN NUMBER;
Parameters
None.
Example
The following example returns the value of the workspace ID value in the APEX_APPLICATION_INSTALL
package.
DECLARE
l_workspace_id number;
BEGIN
l_workspace_id := apex_application_install.get_workspace_id;
END;
See Also:
Parent topic: APEX_APPLICATION_INSTALL