9.13 GET_NEXT_PURGE_TIMESTAMP Function
Caution:
This API is deprecated and will be removed in a future release.
Use APEX_HUMAN_TASK instead.
This function retrieves the timestamp of the next purge.
Syntax
APEX_APPROVAL.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;
Parent topic: APEX_APPROVAL (Deprecated)