DBA Data[Home] [Help]

APPS.PQH_PTX_INFO_TYPES_API dependencies on HR_UTILITY

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

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

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

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

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

97: -- End of API User Hook for the after hook of create_ptx_info_type
98: --
99: end;
100: --
101: hr_utility.set_location(l_proc, 60);
102: --
103: -- When in validation only mode raise the Validate_Enabled exception
104: --
105: if p_validate then

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

110: --
111: p_information_type := l_information_type;
112: p_object_version_number := l_object_version_number;
113: --
114: hr_utility.set_location(' Leaving:'||l_proc, 70);
115: --
116: exception
117: --
118: when hr_api.validate_enabled then

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

127: -- when validation only mode is being used.)
128: --
129: p_information_type := null;
130: p_object_version_number := null;
131: hr_utility.set_location(' Leaving:'||l_proc, 80);
132: --
133: when others then
134: p_information_type := null;
135: p_object_version_number := null;

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

161: l_object_version_number pqh_ptx_info_types.object_version_number%TYPE;
162: --
163: begin
164: --
165: hr_utility.set_location('Entering:'|| l_proc, 10);
166: --
167: -- Issue a savepoint if operating in validation only mode
168: --
169: savepoint update_ptx_info_type;

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

167: -- Issue a savepoint if operating in validation only mode
168: --
169: savepoint update_ptx_info_type;
170: --
171: hr_utility.set_location(l_proc, 20);
172: --
173: -- Process Logic
174: --
175: l_object_version_number := p_object_version_number;

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

234: -- End of API User Hook for the after hook of update_ptx_info_type
235: --
236: end;
237: --
238: hr_utility.set_location(l_proc, 60);
239: --
240: -- When in validation only mode raise the Validate_Enabled exception
241: --
242: if p_validate then

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

246: -- Set all output arguments
247: --
248: p_object_version_number := l_object_version_number;
249: --
250: hr_utility.set_location(' Leaving:'||l_proc, 70);
251: --
252: exception
253: --
254: when hr_api.validate_enabled then

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

261: -- Only set output warning arguments
262: -- (Any key or derived arguments must be set to null
263: -- when validation only mode is being used.)
264: --
265: hr_utility.set_location(' Leaving:'||l_proc, 80);
266: --
267: when others then
268: p_object_version_number := l_object_version_number;
269: --

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

290: l_object_version_number pqh_ptx_info_types.object_version_number%TYPE;
291: --
292: begin
293: --
294: hr_utility.set_location('Entering:'|| l_proc, 10);
295: --
296: -- Issue a savepoint if operating in validation only mode
297: --
298: savepoint delete_ptx_info_type;

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

296: -- Issue a savepoint if operating in validation only mode
297: --
298: savepoint delete_ptx_info_type;
299: --
300: hr_utility.set_location(l_proc, 20);
301: --
302: -- Process Logic
303: --
304: l_object_version_number := p_object_version_number;

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

352: -- End of API User Hook for the after hook of delete_ptx_info_type
353: --
354: end;
355: --
356: hr_utility.set_location(l_proc, 60);
357: --
358: -- When in validation only mode raise the Validate_Enabled exception
359: --
360: if p_validate then

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

360: if p_validate then
361: raise hr_api.validate_enabled;
362: end if;
363: --
364: hr_utility.set_location(' Leaving:'||l_proc, 70);
365: --
366: exception
367: --
368: when hr_api.validate_enabled then

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

403: l_proc varchar2(72) := g_package||'lck';
404: --
405: begin
406: --
407: hr_utility.set_location('Entering:'|| l_proc, 10);
408: --
409: pqh_pti_shd.lck
410: (
411: p_information_type => p_information_type

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

411: p_information_type => p_information_type
412: ,p_object_version_number => p_object_version_number
413: );
414: --
415: hr_utility.set_location(' Leaving:'||l_proc, 70);
416: --
417: end lck;
418: --
419: end pqh_ptx_info_types_api;