59.6 GET_NEXT_PURGE_TIMESTAMP Function

This function retrieves the timestamp of the next purge.

Syntax

APEX_WORKFLOW.GET_NEXT_PURGE_TIMESTAMP
RETURN timestamp with time zone;

Parameters

None.

Returns

Returns the timestamp of the next purge.

Example

DECLARE
    l_next_purge_job_ts timestamp with time zone;
BEGIN
    l_next_purge_job_ts := apex_approval.get_next_purge_timestamp();
END;