DBA Data[Home] [Help]

APPS.PAY_PROGRESS_PKG dependencies on DBMS_UTILITY

Line 84: g_first_stamp := dbms_utility.get_time;

80: BEGIN
81: --
82: -- Timestamp this progress update in 100ths of a second
83: IF g_first_stamp IS NULL THEN
84: g_first_stamp := dbms_utility.get_time;
85: l_progress.timestamp := 0;
86: ELSE
87: l_progress.timestamp := dbms_utility.get_time - g_first_stamp;
88: END IF;

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

83: IF g_first_stamp IS NULL THEN
84: g_first_stamp := dbms_utility.get_time;
85: l_progress.timestamp := 0;
86: ELSE
87: l_progress.timestamp := dbms_utility.get_time - g_first_stamp;
88: END IF;
89: --
90: -- If we didn't pass an action ID and we haven't previously
91: -- passed one then we can't do anything more