DBA Data[Home] [Help]

APPS.PER_SUCCESSION_PLAN_API dependencies on HR_UTILITY

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

61: l_start_date DATE;
62: l_end_date DATE;
63: l_proc VARCHAR2 (72) := g_package || 'create_succession_plan';
64: BEGIN
65: hr_utility.set_location ('Entering:' || l_proc, 10);
66: --
67: -- Issue a savepoint
68: --
69: SAVEPOINT create_succession_plan;

Line 134: hr_utility.set_location ('Entering:' || 'per_suc_ins.ins', 50);

130:
131: --
132: -- Process Logic
133: --
134: hr_utility.set_location ('Entering:' || 'per_suc_ins.ins', 50);
135: per_suc_ins.ins (p_succession_plan_id => l_succession_plan_id,
136: p_person_id => p_person_id,
137: p_position_id => p_position_id,
138: p_business_group_id => p_business_group_id,

Line 174: hr_utility.set_location ('Entering:' || 'PER_SUCCESSION_PLAN_BK1.create_succession_plan_a',

170: p_performance => p_performance,
171: p_plan_status => p_plan_status,
172: p_readiness_percentage => p_readiness_percentage
173: );
174: hr_utility.set_location ('Entering:' || 'PER_SUCCESSION_PLAN_BK1.create_succession_plan_a',
175: 60);
176:
177: --
178: -- Call After Process User Hook

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

239: --
240: p_succession_plan_id := l_succession_plan_id;
241: p_object_version_number := l_object_version_number;
242: --
243: hr_utility.set_location (' Leaving:' || l_proc, 70);
244: EXCEPTION
245: WHEN hr_api.validate_enabled
246: THEN
247: --

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

255: -- when validation only mode is being used.)
256: --
257: p_succession_plan_id := NULL;
258: p_object_version_number := NULL;
259: hr_utility.set_location (' Leaving:' || l_proc, 80);
260: WHEN OTHERS
261: THEN
262: --
263: -- A validation or unexpected error has occured

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

268: -- OUT parameters, including warnings, to null
269: --
270: p_succession_plan_id := NULL;
271: p_object_version_number := NULL;
272: hr_utility.set_location (' Leaving:' || l_proc, 90);
273: RAISE;
274: END create_succession_plan;
275:
276: --

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

331: l_start_date DATE;
332: l_end_date DATE;
333: l_proc VARCHAR2 (72) := g_package || 'update_succession_plan';
334: BEGIN
335: hr_utility.set_location ('Entering:' || l_proc, 10);
336: --
337: -- Issue a savepoint
338: --
339: SAVEPOINT update_succession_plan;

Line 409: hr_utility.set_location ('Entering:' || 'per_suc_upd.upd', 50);

405: --
406: --
407: -- Process Logic
408: --
409: hr_utility.set_location ('Entering:' || 'per_suc_upd.upd', 50);
410: per_suc_upd.upd (p_succession_plan_id => p_succession_plan_id,
411: p_person_id => p_person_id,
412: p_position_id => p_position_id,
413: p_business_group_id => p_business_group_id,

Line 449: hr_utility.set_location ('Entering:' || 'PER_SUCCESSION_PLAN_BK1.update_succession_plan_a',

445: p_performance => p_performance,
446: p_plan_status => p_plan_status,
447: p_readiness_percentage => p_readiness_percentage
448: );
449: hr_utility.set_location ('Entering:' || 'PER_SUCCESSION_PLAN_BK1.update_succession_plan_a',
450: 60);
451:
452: --
453: -- Call After Process User Hook

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

513: -- Set all IN OUT and OUT parameters with out values
514: --
515: p_object_version_number := l_object_version_number;
516: --
517: hr_utility.set_location (' Leaving:' || l_proc, 70);
518: EXCEPTION
519: WHEN hr_api.validate_enabled
520: THEN
521: --

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

528: -- (Any key or derived arguments must be set to null
529: -- when validation only mode is being used.)
530: --
531: p_object_version_number := l_ovn;
532: hr_utility.set_location (' Leaving:' || l_proc, 80);
533: WHEN OTHERS
534: THEN
535: --
536: -- A validation or unexpected error has occured

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

540: -- Reset IN OUT parameters and set all
541: -- OUT parameters, including warnings, to null
542: --
543: p_object_version_number := l_ovn;
544: hr_utility.set_location (' Leaving:' || l_proc, 90);
545: RAISE;
546: END update_succession_plan;
547:
548: --

Line 567: hr_utility.set_location ('Entering:' || l_proc, 5);

563: --
564: --
565: l_proc VARCHAR2 (72) := g_package || 'delete_succession_plan';
566: BEGIN
567: hr_utility.set_location ('Entering:' || l_proc, 5);
568: --
569: -- Issue a savepoint
570: --
571: SAVEPOINT delete_succession_plan;

Line 593: hr_utility.set_location (l_proc, 6);

589:
590: --
591: -- End of API User Hook for the before hook of delete_objective
592: --
593: hr_utility.set_location (l_proc, 6);
594: --
595: -- Validation in addition to Table Handlers
596: --
597: hr_utility.set_location (l_proc, 7);

Line 597: hr_utility.set_location (l_proc, 7);

593: hr_utility.set_location (l_proc, 6);
594: --
595: -- Validation in addition to Table Handlers
596: --
597: hr_utility.set_location (l_proc, 7);
598: --
599: -- Process Logic
600: --
601: -- flemonni added cascade delete of obj performance rating

Line 616: hr_utility.set_location (l_proc, 8);

612: per_suc_del.del (p_succession_plan_id => p_succession_plan_id,
613: p_object_version_number => p_object_version_number
614: );
615: --
616: hr_utility.set_location (l_proc, 8);
617:
618: --
619: BEGIN
620: --

Line 646: hr_utility.set_location (' Leaving:' || l_proc, 11);

642: RAISE hr_api.validate_enabled;
643: END IF;
644:
645: --
646: hr_utility.set_location (' Leaving:' || l_proc, 11);
647: EXCEPTION
648: WHEN hr_api.validate_enabled
649: THEN
650: --

Line 660: hr_utility.set_location (' Leaving:' || l_proc, 12);

656: -- Only set output warning arguments
657: -- (Any key or derived arguments must be set to null
658: -- when validation only mode is being used.)
659: --
660: hr_utility.set_location (' Leaving:' || l_proc, 12);
661: --
662: WHEN OTHERS
663: THEN
664: --