Previous |
Next |
This function is used 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;