30.22 IS_BUSINESS_ADMIN Function

This function checks whether the given user is a business administrator for at least one task definition.

Syntax

APEX_HUMAN_TASK.IS_BUSINESS_ADMIN (
    p_user              IN VARCHAR2 DEFAULT wwv_flow_security.g_user,
    p_application_id    IN NUMBER   DEFAULT NULL )
RETURN BOOLEAN;

Parameters

Parameter Description
p_user The user to check for. Default is logged-in user.
p_application_id The application to check for. Default behavior checks against all applications in the workspace.

Returns

TRUE if the user given by p_user is at least in one task definition configured as participant type BUSINESS_ADMIN, FALSE otherwise.

Example

DECLARE
    l_is_business_admin boolean;
BEGIN
    l_is_business_admin := apex_human_task.is_business_admin(
        p_user => 'STIGER'
    );
    IF l_is_business_admin THEN
        dbms_output.put_line('STIGER is a Business Administrator');
    END IF;
END;