DBA Data[Home] [Help]

APPS.PAY_SHADOW_ELEMENT_API dependencies on HR_UTILITY

Line 6: g_debug boolean := hr_utility.debug_enabled;

2: /* $Header: pysetapi.pkb 120.0 2005/05/29 08:38:16 appldev noship $ */
3: --
4: -- Package Variables
5: --
6: g_debug boolean := hr_utility.debug_enabled;
7: g_package varchar2(33) := ' pay_shadow_element_api.';
8: --
9: -- ----------------------------------------------------------------------------
10: -- |--------------------------< update_shadow_element >-----------------------|

Line 106: g_debug := hr_utility.debug_enabled;

102: l_proc varchar2(72);
103: l_effective_date date;
104: l_ovn number;
105: begin
106: g_debug := hr_utility.debug_enabled;
107: if g_debug then
108: l_proc := g_package||'update_shadow_element';
109: hr_utility.set_location('Entering:'|| l_proc, 10);
110: end if;

Line 109: hr_utility.set_location('Entering:'|| l_proc, 10);

105: begin
106: g_debug := hr_utility.debug_enabled;
107: if g_debug then
108: l_proc := g_package||'update_shadow_element';
109: hr_utility.set_location('Entering:'|| l_proc, 10);
110: end if;
111: --
112: -- Issue a savepoint
113: --

Line 116: hr_utility.set_location(l_proc, 20);

112: -- Issue a savepoint
113: --
114: savepoint update_shadow_element;
115: if g_debug then
116: hr_utility.set_location(l_proc, 20);
117: end if;
118: --
119: -- Check mandatory arguments.
120: --

Line 143: hr_utility.set_location(l_proc, 30);

139: --
140: -- Call Before Process User Hook
141: --
142: if g_debug then
143: hr_utility.set_location(l_proc, 30);
144: end if;
145: --
146: -- Validation in addition to Row Handlers
147: --

Line 240: hr_utility.set_location(l_proc, 60);

236: --
237: -- Call After Process User Hook
238: --
239: if g_debug then
240: hr_utility.set_location(l_proc, 60);
241: end if;
242: --
243: -- When in validation only mode raise the Validate_Enabled exception
244: --

Line 254: hr_utility.set_location(' Leaving:'||l_proc, 70);

250: --
251: p_object_version_number := l_ovn;
252: --
253: if g_debug then
254: hr_utility.set_location(' Leaving:'||l_proc, 70);
255: end if;
256: exception
257: when hr_api.validate_enabled then
258: --

Line 270: hr_utility.set_location(' Leaving:'||l_proc, 80);

266: -- when validation only mode is being used.)
267: p_object_version_number := l_ovn;
268: --
269: if g_debug then
270: hr_utility.set_location(' Leaving:'||l_proc, 80);
271: end if;
272: when others then
273: --
274: -- A validation or unexpected error has occured

Line 279: hr_utility.set_location(' Leaving:'||l_proc, 90);

275: --
276: rollback to update_shadow_element;
277: p_object_version_number := null;
278: if g_debug then
279: hr_utility.set_location(' Leaving:'||l_proc, 90);
280: end if;
281: raise;
282: end update_shadow_element;
283: --