DBA Data[Home] [Help]

APPS.PQH_COPY_ENTITY_FUNCTIONS_API dependencies on HR_UTILITY

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

29: l_object_version_number pqh_copy_entity_functions.object_version_number%TYPE;
30: --
31: begin
32: --
33: hr_utility.set_location('Entering:'|| l_proc, 10);
34: --
35: -- Issue a savepoint if operating in validation only mode
36: --
37: savepoint create_copy_entity_function;

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

35: -- Issue a savepoint if operating in validation only mode
36: --
37: savepoint create_copy_entity_function;
38: --
39: hr_utility.set_location(l_proc, 20);
40: --
41: -- Process Logic
42: --
43: begin

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

105: -- End of API User Hook for the after hook of create_copy_entity_function
106: --
107: end;
108: --
109: hr_utility.set_location(l_proc, 60);
110: --
111: -- When in validation only mode raise the Validate_Enabled exception
112: --
113: if p_validate then

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

118: --
119: p_copy_entity_function_id := l_copy_entity_function_id;
120: p_object_version_number := l_object_version_number;
121: --
122: hr_utility.set_location(' Leaving:'||l_proc, 70);
123: --
124: exception
125: --
126: when hr_api.validate_enabled then

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

135: -- when validation only mode is being used.)
136: --
137: p_copy_entity_function_id := null;
138: p_object_version_number := null;
139: hr_utility.set_location(' Leaving:'||l_proc, 80);
140: --
141: when others then
142: p_copy_entity_function_id := null;
143: p_object_version_number := null;

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

171: l_object_version_number pqh_copy_entity_functions.object_version_number%TYPE;
172: --
173: begin
174: --
175: hr_utility.set_location('Entering:'|| l_proc, 10);
176: --
177: -- Issue a savepoint if operating in validation only mode
178: --
179: savepoint update_copy_entity_function;

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

177: -- Issue a savepoint if operating in validation only mode
178: --
179: savepoint update_copy_entity_function;
180: --
181: hr_utility.set_location(l_proc, 20);
182: --
183: -- Process Logic
184: --
185: l_object_version_number := p_object_version_number;

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

250: -- End of API User Hook for the after hook of update_copy_entity_function
251: --
252: end;
253: --
254: hr_utility.set_location(l_proc, 60);
255: --
256: -- When in validation only mode raise the Validate_Enabled exception
257: --
258: if p_validate then

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

262: -- Set all output arguments
263: --
264: p_object_version_number := l_object_version_number;
265: --
266: hr_utility.set_location(' Leaving:'||l_proc, 70);
267: --
268: exception
269: --
270: when hr_api.validate_enabled then

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

277: -- Only set output warning arguments
278: -- (Any key or derived arguments must be set to null
279: -- when validation only mode is being used.)
280: --
281: hr_utility.set_location(' Leaving:'||l_proc, 80);
282: --
283: when others then
284: p_object_version_number := l_object_version_number;
285: --

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

306: l_object_version_number pqh_copy_entity_functions.object_version_number%TYPE;
307: --
308: begin
309: --
310: hr_utility.set_location('Entering:'|| l_proc, 10);
311: --
312: -- Issue a savepoint if operating in validation only mode
313: --
314: savepoint delete_copy_entity_function;

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

312: -- Issue a savepoint if operating in validation only mode
313: --
314: savepoint delete_copy_entity_function;
315: --
316: hr_utility.set_location(l_proc, 20);
317: --
318: -- Process Logic
319: --
320: l_object_version_number := p_object_version_number;

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

368: -- End of API User Hook for the after hook of delete_copy_entity_function
369: --
370: end;
371: --
372: hr_utility.set_location(l_proc, 60);
373: --
374: -- When in validation only mode raise the Validate_Enabled exception
375: --
376: if p_validate then

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

376: if p_validate then
377: raise hr_api.validate_enabled;
378: end if;
379: --
380: hr_utility.set_location(' Leaving:'||l_proc, 70);
381: --
382: exception
383: --
384: when hr_api.validate_enabled then

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

418: l_proc varchar2(72) := g_package||'lck';
419: --
420: begin
421: --
422: hr_utility.set_location('Entering:'|| l_proc, 10);
423: --
424: pqh_cef_shd.lck
425: (
426: p_copy_entity_function_id => p_copy_entity_function_id

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

426: p_copy_entity_function_id => p_copy_entity_function_id
427: ,p_object_version_number => p_object_version_number
428: );
429: --
430: hr_utility.set_location(' Leaving:'||l_proc, 70);
431: --
432: end lck;
433: --
434: