44.28 FEEDBACK_ENABLED Function

This function returns a boolean value to check if application Allow Feedback is enabled.

Syntax

APEX_UTIL.FEEDBACK_ENABLED
    RETURN boolean;

Parameters

None.

Example

The following example demonstrates how to use the FEEDBACK_ENABLED function. If Allow Feeedback is enabled, TRUE is returned otherwise FALSE is returned.

BEGIN
    RETURN apex_util.feedback_enabled;
END;