DBA Data[Home] [Help]

APPS.PAY_INPUT_VALUE_API dependencies on HR_UTILITY

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

29: l_proc varchar2(72) := g_package||'PAY_INPUT_VALUE_INT';
30: --
31: begin
32:
33: hr_utility.set_location('Entering: '|| l_proc, 10);
34:
35: -- Cascade creation of link input values, Balance feeds and db items
36:
37: pay_link_input_values_pkg.create_link_input_value (

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

47: p_min_value,
48: p_max_value,
49: p_warning_or_error);
50:
51: hr_utility.set_location(l_proc, 20);
52:
53: -- Create balance feeds for pay values
54: --
55: -- change 115.12

Line 62: hr_utility.set_location(l_proc, 30);

58: hr_balance_feeds.ins_bf_pay_value (p_input_value_id);
59: end if;
60: --
61:
62: hr_utility.set_location(l_proc, 30);
63:
64: -- Bug 6432304
65: -- Moved the DB Item creation call from RHI to API to handle translation Errors.
66:

Line 74: hr_utility.set_location('Leaving: '|| l_proc, 40);

70: pay_input_values_pkg.recreate_db_items
71: (p_element_type_id);
72: end if;
73: --
74: hr_utility.set_location('Leaving: '|| l_proc, 40);
75:
76: end CREATE_INPUT_VALUE_INT;
77: --
78:

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

127:
128:
129: l_proc varchar2(72) := g_package||'CREATE_INPUT_VALUE';
130: begin
131: hr_utility.set_location('Entering:'|| l_proc, 10);
132: --
133: -- Issue a savepoint
134: --
135: savepoint CREATE_INPUT_VALUE;

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

281: p_input_value_id := p_input_value_id;
282: p_object_version_number := p_object_version_number;
283:
284: --
285: hr_utility.set_location(' Leaving:'||l_proc, 70);
286: exception
287: when hr_api.validate_enabled then
288: --
289: -- As the Validate_Enabled exception has been raised

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

303: p_formula_warning := null;
304: p_assignment_id_warning := null;
305: p_formula_message := null;
306:
307: hr_utility.set_location(' Leaving:'||l_proc, 80);
308: when others then
309: --
310: -- A validation or unexpected error has occured
311: --

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

309: --
310: -- A validation or unexpected error has occured
311: --
312: rollback to CREATE_INPUT_VALUE;
313: hr_utility.set_location(' Leaving:'||l_proc, 90);
314: raise;
315: end CREATE_INPUT_VALUE;
316: --
317: --

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

364: l_legislation_subgroup pay_input_values_f.legislation_subgroup%type;
365:
366: l_proc varchar2(72) := g_package||'UPDATE_INPUT_VALUE';
367: begin
368: hr_utility.set_location('Entering:'|| l_proc, 10);
369: --
370: -- Issue a savepoint
371: --
372: savepoint UPDATE_INPUT_VALUE;

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

510: p_assignment_id_warning := null;
511: p_formula_message := null;
512: end if; -- bug 10119731
513: --
514: hr_utility.set_location(' Leaving:'||l_proc, 70);
515: exception
516: when hr_api.validate_enabled then
517: --
518: -- As the Validate_Enabled exception has been raised

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

524: -- (Any key or derived arguments must be set to null
525: -- when validation only mode is being used.)
526: --
527: p_object_version_number := p_object_version_number;
528: hr_utility.set_location(' Leaving:'||l_proc, 80);
529: when others then
530: --
531: -- A validation or unexpected error has occured
532: --

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

530: --
531: -- A validation or unexpected error has occured
532: --
533: rollback to UPDATE_INPUT_VALUE;
534: hr_utility.set_location(' Leaving:'||l_proc, 90);
535: raise;
536: end UPDATE_INPUT_VALUE;
537: --
538: --

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

556: --
557:
558: l_proc varchar2(72) := g_package||'DELETE_INPUT_VALUE';
559: begin
560: hr_utility.set_location('Entering:'|| l_proc, 10);
561: --
562: -- Issue a savepoint
563: --
564: savepoint DELETE_INPUT_VALUE;

Line 589: hr_utility.set_message(801,'HR_7098_INPVAL_NO_CHANGES');

585: --
586: -- bug 10119731 finding this error loading seed data so supress in startup mode
587: if P_DATETRACK_DELETE_MODE = 'DELETE' and
588: not (hr_startup_data_api_support.g_startup_mode IN ('STARTUP')) then
589: hr_utility.set_message(801,'HR_7098_INPVAL_NO_CHANGES');
590: hr_utility.raise_error;
591: end if;
592:
593:

Line 590: hr_utility.raise_error;

586: -- bug 10119731 finding this error loading seed data so supress in startup mode
587: if P_DATETRACK_DELETE_MODE = 'DELETE' and
588: not (hr_startup_data_api_support.g_startup_mode IN ('STARTUP')) then
589: hr_utility.set_message(801,'HR_7098_INPVAL_NO_CHANGES');
590: hr_utility.raise_error;
591: end if;
592:
593:
594:

Line 598: hr_utility.trace('pre pay_ivl_del.del. p_object_version_number:'||to_char(p_object_version_number));

594:
595: --
596: -- Process Logic
597: --
598: hr_utility.trace('pre pay_ivl_del.del. p_object_version_number:'||to_char(p_object_version_number));
599:
600: pay_ivl_del.del
601: (p_effective_date => trunc(p_effective_date)
602: ,p_datetrack_mode => p_datetrack_delete_mode

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

637: -- Set all output arguments
638: --
639: p_object_version_number := p_object_version_number;
640: --
641: hr_utility.set_location(' Leaving:'||l_proc, 70);
642: exception
643: when hr_api.validate_enabled then
644: --
645: -- As the Validate_Enabled exception has been raised

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

653: --
654: p_object_version_number := null;
655: p_balance_feeds_warning := null;
656:
657: hr_utility.set_location(' Leaving:'||l_proc, 80);
658: when others then
659: --
660: -- A validation or unexpected error has occured
661: --

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

659: --
660: -- A validation or unexpected error has occured
661: --
662: rollback to DELETE_INPUT_VALUE;
663: hr_utility.set_location(' Leaving:'||l_proc, 90);
664: raise;
665: end DELETE_INPUT_VALUE;
666: --
667: end PAY_INPUT_VALUE_API;