DBA Data[Home] [Help]

APPS.HR_FORM_CANVASES_API dependencies on HR_UTILITY

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

76: l_language_code fnd_languages.language_code%TYPE;
77: l_height number;
78: l_width number;
79: begin
80: hr_utility.set_location('Entering:'|| l_proc, 10);
81: --
82: -- Issue a savepoint
83: --
84: savepoint create_form_canvas;

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

93: --
94: l_language_code := p_language_code;
95: hr_api.validate_language_code(p_language_code => l_language_code);
96: --
97: hr_utility.set_location(l_proc, 20);
98: --
99: -- Call Before Process User Hook
100: --
101: begin

Line 159: hr_utility.set_location('At:'|| l_proc, 20);

155: --
156: -- Process Logic
157: --
158:
159: hr_utility.set_location('At:'|| l_proc, 20);
160:
161: hr_fcn_ins.ins(
162: p_effective_date => TRUNC(p_effective_date)
163: ,p_form_window_id => p_form_window_id

Line 169: hr_utility.set_location('At:'|| l_proc, 25);

165: ,p_canvas_type => p_canvas_type
166: ,p_form_canvas_id => l_form_canvas_id
167: ,p_object_version_number => l_object_version_number);
168:
169: hr_utility.set_location('At:'|| l_proc, 25);
170:
171: hr_fct_ins.ins_tl(
172: --p_effective_date => TRUNC(p_effective_date)
173: p_language_code => l_language_code

Line 178: hr_utility.set_location('At:'|| l_proc, 30);

174: ,p_form_canvas_id => l_form_canvas_id
175: ,p_user_canvas_name => p_user_canvas_name
176: ,p_description => p_description);
177:
178: hr_utility.set_location('At:'|| l_proc, 30);
179:
180: IF p_canvas_type = 'CONTENT' then
181: OPEN cur_form_window;
182: FETCH cur_form_window into l_height , l_width;

Line 186: hr_utility.set_location('At:'|| l_proc, 40);

182: FETCH cur_form_window into l_height , l_width;
183: CLOSE cur_form_window;
184: END IF;
185:
186: hr_utility.set_location('At:'|| l_proc, 40);
187:
188: hr_canvas_properties_bsi.create_canvas_property(
189: p_effective_date => TRUNC(p_effective_date)
190: ,p_form_canvas_id => l_form_canvas_id

Line 233: hr_utility.set_location('At:'|| l_proc, 45);

229:
230: --
231: -- Call After Process User Hook
232: --
233: hr_utility.set_location('At:'|| l_proc, 45);
234:
235:
236: begin
237:

Line 292: hr_utility.set_location('At:'|| l_proc, 50);

288: ,p_hook_type => 'AP'
289: );
290: end;
291:
292: hr_utility.set_location('At:'|| l_proc, 50);
293:
294: --
295: -- When in validation only mode raise the Validate_Enabled exception
296: --

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

302: --
303: p_form_canvas_id := l_form_canvas_id;
304: p_object_version_number := l_object_version_number;
305: --
306: hr_utility.set_location(' Leaving:'||l_proc, 70);
307: exception
308: when hr_api.validate_enabled then
309: --
310: -- As the Validate_Enabled exception has been raised

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

317: -- when validation only mode is being used.)
318: --
319: p_form_canvas_id := null;
320: p_object_version_number := null;
321: hr_utility.set_location(' Leaving:'||l_proc, 80);
322: when others then
323: --
324: -- A validation or unexpected error has occured
325: --

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

327: rollback to create_form_canvas;
328: -- Reset out parameters
329: p_form_canvas_id := null;
330: p_object_version_number := null;
331: hr_utility.set_location(' Leaving:'||l_proc, 90);
332: raise;
333: end create_form_canvas;
334: --
335: -- ----------------------------------------------------------------------------

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

346: --
347:
348: l_proc varchar2(72) := g_package||'delete_form_canvas';
349: begin
350: hr_utility.set_location('Entering:'|| l_proc, 10);
351: --
352: -- Issue a savepoint
353: --
354: savepoint delete_form_canvas;

Line 373: hr_utility.set_location('At:'|| l_proc, 20);

369: end;
370: --
371: -- Process Logic
372: --
373: hr_utility.set_location('At:'|| l_proc, 20);
374:
375: hr_fcn_shd.lck(
376: p_form_canvas_id => p_form_canvas_id
377: ,p_object_version_number => p_object_version_number);

Line 379: hr_utility.set_location('At:'|| l_proc, 25);

375: hr_fcn_shd.lck(
376: p_form_canvas_id => p_form_canvas_id
377: ,p_object_version_number => p_object_version_number);
378:
379: hr_utility.set_location('At:'|| l_proc, 25);
380:
381: hr_canvas_properties_bsi.delete_canvas_property(
382: p_form_canvas_id => p_form_canvas_id
383: ,p_object_version_number => p_object_version_number);

Line 385: hr_utility.set_location('At:'|| l_proc, 30);

381: hr_canvas_properties_bsi.delete_canvas_property(
382: p_form_canvas_id => p_form_canvas_id
383: ,p_object_version_number => p_object_version_number);
384:
385: hr_utility.set_location('At:'|| l_proc, 30);
386:
387: hr_fct_del.del_tl(p_form_canvas_id => p_form_canvas_id );
388:
389: hr_utility.set_location('At:'|| l_proc, 35);

Line 389: hr_utility.set_location('At:'|| l_proc, 35);

385: hr_utility.set_location('At:'|| l_proc, 30);
386:
387: hr_fct_del.del_tl(p_form_canvas_id => p_form_canvas_id );
388:
389: hr_utility.set_location('At:'|| l_proc, 35);
390:
391: hr_fcn_del.del(p_form_canvas_id => p_form_canvas_id
392: ,p_object_version_number => p_object_version_number);
393:

Line 394: hr_utility.set_location('At:'|| l_proc, 40);

390:
391: hr_fcn_del.del(p_form_canvas_id => p_form_canvas_id
392: ,p_object_version_number => p_object_version_number);
393:
394: hr_utility.set_location('At:'|| l_proc, 40);
395:
396: --
397: -- Call After Process User Hook
398: --

Line 415: hr_utility.set_location('At:'|| l_proc, 45);

411: end;
412: --
413: -- When in validation only mode raise the Validate_Enabled exception
414: --
415: hr_utility.set_location('At:'|| l_proc, 45);
416:
417: if p_validate then
418: raise hr_api.validate_enabled;
419: end if;

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

417: if p_validate then
418: raise hr_api.validate_enabled;
419: end if;
420: --
421: hr_utility.set_location(' Leaving:'||l_proc, 70);
422: exception
423: when hr_api.validate_enabled then
424: --
425: -- As the Validate_Enabled exception has been raised

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

426: -- we must rollback to the savepoint
427: --
428: rollback to delete_form_canvas;
429: --
430: hr_utility.set_location(' Leaving:'||l_proc, 80);
431: when others then
432: --
433: -- A validation or unexpected error has occured
434: --

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

432: --
433: -- A validation or unexpected error has occured
434: --
435: rollback to delete_form_canvas;
436: hr_utility.set_location(' Leaving:'||l_proc, 90);
437: raise;
438: end delete_form_canvas;
439: --
440: -- ----------------------------------------------------------------------------

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

497: l_object_version_number number;
498:
499: l_temp_ovn number := p_object_version_number;
500: begin
501: hr_utility.set_location('Entering:'|| l_proc, 10);
502: --
503: -- Issue a savepoint
504: --
505: savepoint update_form_canvas;

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

515: --
516: l_language_code := p_language_code;
517: hr_api.validate_language_code(p_language_code => l_language_code);
518: --
519: hr_utility.set_location(l_proc, 20);
520: --
521: --
522: -- Call Before Process User Hook
523: --

Line 584: hr_utility.set_location('At:'|| l_proc, 20);

580: --
581: -- Process Logic
582: --
583:
584: hr_utility.set_location('At:'|| l_proc, 20);
585:
586: hr_fcn_upd.upd(
587: p_effective_date => TRUNC(p_effective_date)
588: ,p_form_canvas_id => p_form_canvas_id

Line 593: hr_utility.set_location('At:'|| l_proc, 25);

589: ,p_canvas_name => p_canvas_name
590: --,p_canvas_type => p_canvas_type
591: ,p_object_version_number => l_object_version_number);
592:
593: hr_utility.set_location('At:'|| l_proc, 25);
594:
595: hr_fct_upd.upd_tl(
596: --p_effective_date => TRUNC(p_effective_date)
597: p_language_code => l_language_code

Line 602: hr_utility.set_location('At:'|| l_proc, 30);

598: ,p_form_canvas_id => p_form_canvas_id
599: ,p_user_canvas_name => p_user_canvas_name
600: ,p_description => p_description);
601:
602: hr_utility.set_location('At:'|| l_proc, 30);
603:
604: hr_canvas_properties_bsi.update_canvas_property(
605: p_effective_date => TRUNC(p_effective_date)
606: ,p_object_version_number => l_object_version_number

Line 645: hr_utility.set_location('At:'|| l_proc, 35);

641: ,p_information28 => p_information28
642: ,p_information29 => p_information29
643: ,p_information30 => p_information30);
644:
645: hr_utility.set_location('At:'|| l_proc, 35);
646:
647: --
648: -- Call After Process User Hook
649: --

Line 706: hr_utility.set_location('At:'|| l_proc, 40);

702: ,p_hook_type => 'AP'
703: );
704: end;
705:
706: hr_utility.set_location('At:'|| l_proc, 40);
707:
708: --
709: -- When in validation only mode raise the Validate_Enabled exception
710: --

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

715: -- Set all output arguments
716: --
717: p_object_version_number := l_object_version_number;
718: --
719: hr_utility.set_location(' Leaving:'||l_proc, 70);
720: exception
721: when hr_api.validate_enabled then
722: --
723: -- As the Validate_Enabled exception has been raised

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

728: -- Only set output warning arguments
729: -- (Any key or derived arguments must be set to null
730: -- when validation only mode is being used.)
731: --
732: hr_utility.set_location(' Leaving:'||l_proc, 80);
733: when others then
734: --
735: -- A validation or unexpected error has occured
736: --

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

737: rollback to update_form_canvas;
738: -- Reset all output arguments
739: --
740: p_object_version_number := l_temp_ovn;
741: hr_utility.set_location(' Leaving:'||l_proc, 90);
742: raise;
743: end update_form_canvas;
744: --
745: end hr_form_canvases_api;