DBA Data[Home] [Help]

APPS.BEN_POPUP_MESSAGE_API dependencies on HR_UTILITY

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

35: l_object_version_number ben_pop_up_messages.object_version_number%TYPE;
36: --
37: begin
38: --
39: hr_utility.set_location('Entering:'|| l_proc, 10);
40: --
41: -- Issue a savepoint if operating in validation only mode
42: --
43: savepoint create_popup_message;

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

41: -- Issue a savepoint if operating in validation only mode
42: --
43: savepoint create_popup_message;
44: --
45: hr_utility.set_location(l_proc, 20);
46: --
47: -- Process Logic
48: --
49: begin

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

129: -- End of API User Hook for the after hook of create_popup_message
130: --
131: end;
132: --
133: hr_utility.set_location(l_proc, 60);
134: --
135: -- When in validation only mode raise the Validate_Enabled exception
136: --
137: if p_validate then

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

142: --
143: p_pop_up_messages_id := l_pop_up_messages_id;
144: p_object_version_number := l_object_version_number;
145: --
146: hr_utility.set_location(' Leaving:'||l_proc, 70);
147: --
148: exception
149: --
150: when hr_api.validate_enabled then

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

159: -- when validation only mode is being used.)
160: --
161: p_pop_up_messages_id := null;
162: p_object_version_number := null;
163: hr_utility.set_location(' Leaving:'||l_proc, 80);
164: --
165: when others then
166: --
167: -- A validation or unexpected error has occured

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

203: l_object_version_number ben_pop_up_messages.object_version_number%TYPE;
204: --
205: begin
206: --
207: hr_utility.set_location('Entering:'|| l_proc, 10);
208: --
209: -- Issue a savepoint if operating in validation only mode
210: --
211: savepoint update_popup_message;

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

209: -- Issue a savepoint if operating in validation only mode
210: --
211: savepoint update_popup_message;
212: --
213: hr_utility.set_location(l_proc, 20);
214: --
215: -- Process Logic
216: --
217: l_object_version_number := p_object_version_number;

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

300: -- End of API User Hook for the after hook of update_popup_message
301: --
302: end;
303: --
304: hr_utility.set_location(l_proc, 60);
305: --
306: -- When in validation only mode raise the Validate_Enabled exception
307: --
308: if p_validate then

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

312: -- Set all output arguments
313: --
314: p_object_version_number := l_object_version_number;
315: --
316: hr_utility.set_location(' Leaving:'||l_proc, 70);
317: --
318: exception
319: --
320: when hr_api.validate_enabled then

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

327: -- Only set output warning arguments
328: -- (Any key or derived arguments must be set to null
329: -- when validation only mode is being used.)
330: --
331: hr_utility.set_location(' Leaving:'||l_proc, 80);
332: --
333: when others then
334: --
335: -- A validation or unexpected error has occured

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

355: l_object_version_number ben_pop_up_messages.object_version_number%TYPE;
356: --
357: begin
358: --
359: hr_utility.set_location('Entering:'|| l_proc, 10);
360: --
361: -- Issue a savepoint if operating in validation only mode
362: --
363: savepoint delete_popup_message;

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

361: -- Issue a savepoint if operating in validation only mode
362: --
363: savepoint delete_popup_message;
364: --
365: hr_utility.set_location(l_proc, 20);
366: --
367: -- Process Logic
368: --
369: l_object_version_number := p_object_version_number;

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

417: -- End of API User Hook for the after hook of delete_popup_message
418: --
419: end;
420: --
421: hr_utility.set_location(l_proc, 60);
422: --
423: -- When in validation only mode raise the Validate_Enabled exception
424: --
425: if p_validate then

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

425: if p_validate then
426: raise hr_api.validate_enabled;
427: end if;
428: --
429: hr_utility.set_location(' Leaving:'||l_proc, 70);
430: --
431: exception
432: --
433: when hr_api.validate_enabled then

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

467: l_proc varchar2(72) := g_package||'lck';
468: --
469: begin
470: --
471: hr_utility.set_location('Entering:'|| l_proc, 10);
472: --
473: ben_pum_shd.lck
474: (
475: p_pop_up_messages_id => p_pop_up_messages_id

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

475: p_pop_up_messages_id => p_pop_up_messages_id
476: ,p_object_version_number => p_object_version_number
477: );
478: --
479: hr_utility.set_location(' Leaving:'||l_proc, 70);
480: --
481: end lck;
482: --
483: end ben_popup_message_api;