DBA Data[Home] [Help]

APPS.PQH_COPY_ENTITY_PREFS_API dependencies on HR_UTILITY

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

26: l_object_version_number pqh_copy_entity_prefs.object_version_number%TYPE;
27: --
28: begin
29: --
30: hr_utility.set_location('Entering:'|| l_proc, 10);
31: --
32: -- Issue a savepoint if operating in validation only mode
33: --
34: savepoint create_copy_entity_pref;

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

32: -- Issue a savepoint if operating in validation only mode
33: --
34: savepoint create_copy_entity_pref;
35: --
36: hr_utility.set_location(l_proc, 20);
37: --
38: -- Process Logic
39: --
40: begin

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

93: -- End of API User Hook for the after hook of create_copy_entity_prefs
94: --
95: end;
96: --
97: hr_utility.set_location(l_proc, 60);
98: --
99: -- When in validation only mode raise the Validate_Enabled exception
100: --
101: if p_validate then

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

106: --
107: p_copy_entity_pref_id := l_copy_entity_pref_id;
108: p_object_version_number := l_object_version_number;
109: --
110: hr_utility.set_location(' Leaving:'||l_proc, 70);
111: --
112: exception
113: --
114: when hr_api.validate_enabled then

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

123: -- when validation only mode is being used.)
124: --
125: p_copy_entity_pref_id := null;
126: p_object_version_number := null;
127: hr_utility.set_location(' Leaving:'||l_proc, 80);
128: --
129: when others then
130: p_copy_entity_pref_id := null;
131: p_object_version_number := null;

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

156: l_object_version_number pqh_copy_entity_prefs.object_version_number%TYPE;
157: --
158: begin
159: --
160: hr_utility.set_location('Entering:'|| l_proc, 10);
161: --
162: -- Issue a savepoint if operating in validation only mode
163: --
164: savepoint update_copy_entity_pref;

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

162: -- Issue a savepoint if operating in validation only mode
163: --
164: savepoint update_copy_entity_pref;
165: --
166: hr_utility.set_location(l_proc, 20);
167: --
168: -- Process Logic
169: --
170: l_object_version_number := p_object_version_number;

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

226: -- End of API User Hook for the after hook of update_copy_entity_prefs
227: --
228: end;
229: --
230: hr_utility.set_location(l_proc, 60);
231: --
232: -- When in validation only mode raise the Validate_Enabled exception
233: --
234: if p_validate then

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

238: -- Set all output arguments
239: --
240: p_object_version_number := l_object_version_number;
241: --
242: hr_utility.set_location(' Leaving:'||l_proc, 70);
243: --
244: exception
245: --
246: when hr_api.validate_enabled then

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

253: -- Only set output warning arguments
254: -- (Any key or derived arguments must be set to null
255: -- when validation only mode is being used.)
256: --
257: hr_utility.set_location(' Leaving:'||l_proc, 80);
258: --
259: when others then
260: p_object_version_number := l_object_version_number;
261: --

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

282: l_object_version_number pqh_copy_entity_prefs.object_version_number%TYPE;
283: --
284: begin
285: --
286: hr_utility.set_location('Entering:'|| l_proc, 10);
287: --
288: -- Issue a savepoint if operating in validation only mode
289: --
290: savepoint delete_copy_entity_pref;

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

288: -- Issue a savepoint if operating in validation only mode
289: --
290: savepoint delete_copy_entity_pref;
291: --
292: hr_utility.set_location(l_proc, 20);
293: --
294: -- Process Logic
295: --
296: l_object_version_number := p_object_version_number;

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

344: -- End of API User Hook for the after hook of delete_copy_entity_prefs
345: --
346: end;
347: --
348: hr_utility.set_location(l_proc, 60);
349: --
350: -- When in validation only mode raise the Validate_Enabled exception
351: --
352: if p_validate then

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

352: if p_validate then
353: raise hr_api.validate_enabled;
354: end if;
355: --
356: hr_utility.set_location(' Leaving:'||l_proc, 70);
357: --
358: exception
359: --
360: when hr_api.validate_enabled then

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

394: l_proc varchar2(72) := g_package||'lck';
395: --
396: begin
397: --
398: hr_utility.set_location('Entering:'|| l_proc, 10);
399: --
400: pqh_cep_shd.lck
401: (
402: p_copy_entity_pref_id => p_copy_entity_pref_id

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

402: p_copy_entity_pref_id => p_copy_entity_pref_id
403: ,p_object_version_number => p_object_version_number
404: );
405: --
406: hr_utility.set_location(' Leaving:'||l_proc, 70);
407: --
408: end lck;
409: --
410: end pqh_copy_entity_prefs_api;