DBA Data[Home] [Help]

APPS.FF_DBI_UTILS_PKG dependencies on HR_UTILITY

Line 29: l_debug boolean := hr_utility.debug_enabled;

25: l_dbi_name varchar2(2000);
26: l_underscore varchar2(30) := ' -';
27: l_remove varchar2(30) := '"()''.';
28: l_rgeflg varchar2(10);
29: l_debug boolean := hr_utility.debug_enabled;
30: begin
31: -- Get rid of leading and trailing spaces.
32: l_dbi_name := ltrim(rtrim(p_str));
33:

Line 51: hr_utility.trace('DBI name: ' || p_str || ' shortened to ' || l_dbi_name);

47: l_dbi_name := substr(l_dbi_name, 1, C_DBI_NAME_LEN);
48: --
49: if l_debug then
50: if length(l_dbi_name) < length(p_str) then
51: hr_utility.trace('DBI name: ' || p_str || ' shortened to ' || l_dbi_name);
52: end if;
53: end if;
54:
55: -- Get rid of leading and trailing spaces.

Line 79: hr_utility.trace('Necessary to quote name ' || l_dbi_name);

75: l_dbi_name :=
76: '"' || rtrim(ltrim(substr(l_dbi_name, 1, C_DBI_NAME_LEN - 2))) || '"';
77:
78: if l_debug then
79: hr_utility.trace('Necessary to quote name ' || l_dbi_name);
80: end if;
81: end;
82:
83: return l_dbi_name;