DBA Data[Home] [Help]

APPS.PAY_SOE_UTIL dependencies on HR_UTILITY

Line 4: g_debug boolean := hr_utility.debug_enabled;

1: package body PAY_SOE_UTIL as
2: /* $Header: pysoeutl.pkb 120.1.12010000.1 2008/07/27 23:42:43 appldev ship $ */
3: --
4: g_debug boolean := hr_utility.debug_enabled;
5: --
6: cursor config is
7: select org_information2 elements1
8: , org_information3 elements2

Line 51: hr_utility.trace('colid = ' || name || value);

47: ,firstCol BOOLEAN
48: ,lastCol BOOLEAN) is
49: begin
50: if g_debug then
51: hr_utility.trace('colid = ' || name || value);
52: end if;
53: --
54: dataValueRec.colName := ' COL' || name;
55: dataValueRec.colValue := value;

Line 126: hr_utility.trace(substr(p_sql_string,1,2000));

122: function convertCursor(p_sql_string long) return ref_cursor is
123: l_ref_cursor ref_cursor;
124: begin
125: if g_debug then
126: hr_utility.trace(substr(p_sql_string,1,2000));
127: hr_utility.trace(substr(p_sql_string,2001,2000));
128: hr_utility.trace(substr(p_sql_string,4001,2000));
129: end if;
130: --

Line 127: hr_utility.trace(substr(p_sql_string,2001,2000));

123: l_ref_cursor ref_cursor;
124: begin
125: if g_debug then
126: hr_utility.trace(substr(p_sql_string,1,2000));
127: hr_utility.trace(substr(p_sql_string,2001,2000));
128: hr_utility.trace(substr(p_sql_string,4001,2000));
129: end if;
130: --
131: open l_ref_cursor for p_sql_string;

Line 128: hr_utility.trace(substr(p_sql_string,4001,2000));

124: begin
125: if g_debug then
126: hr_utility.trace(substr(p_sql_string,1,2000));
127: hr_utility.trace(substr(p_sql_string,2001,2000));
128: hr_utility.trace(substr(p_sql_string,4001,2000));
129: end if;
130: --
131: open l_ref_cursor for p_sql_string;
132: return l_ref_cursor;