DBA Data[Home] [Help]

APPS.PAY_PROGRESS_PKG dependencies on DBMS_UTILITY

Line 73: g_first_stamp := dbms_utility.get_time;

69: BEGIN
70: --
71: -- Timestamp this progress update in 100ths of a second
72: IF g_first_stamp IS NULL THEN
73: g_first_stamp := dbms_utility.get_time;
74: l_progress.timestamp := 0;
75: ELSE
76: l_progress.timestamp := dbms_utility.get_time - g_first_stamp;
77: END IF;

Line 76: l_progress.timestamp := dbms_utility.get_time - g_first_stamp;

72: IF g_first_stamp IS NULL THEN
73: g_first_stamp := dbms_utility.get_time;
74: l_progress.timestamp := 0;
75: ELSE
76: l_progress.timestamp := dbms_utility.get_time - g_first_stamp;
77: END IF;
78: --
79: -- If we didn't pass an action ID and we haven't previously
80: -- passed one then we can't do anything more