|  Previous |  Next | 
This function returns the workspace name associated with a security group ID.
Syntax
APEX_UTIL.FIND_WORKSPACE(
    p_security_group_id    IN VARCHAR2)
RETURN VARCHAR2;
Parameters
Table: FIND_WORKSPACE Parameters describes the parameters available in the FIND_WORKSPACE function.
FIND_WORKSPACE Parameters
| Parameter | Description | 
|---|---|
| 
 | The security group ID of a workspace | 
Example
The following example demonstrates how to use the FIND_WORKSPACE function to return the workspace name for the workspace with a security group ID of 20.
DECLARE
    VAL VARCHAR2(255);
BEGIN
    VAL := APEX_UTIL.FIND_WORKSPACE (p_security_group_id =>'20');
END;