DBA Data[Home] [Help]

APPS.PAY_LINK_INPUT_VALUES_API dependencies on HR_UTILITY

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

67: where input_value_id = p_input_value_id;
68:
69: --
70: begin
71: hr_utility.set_location('Entering:'|| l_proc, 10);
72: --
73: -- Truncate the time portion from all IN date parameters
74: --
75: l_effective_date := trunc(p_effective_date);

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

145: p_object_version_number := l_object_version_number;
146: p_effective_start_date := l_effective_start_date;
147: p_effective_end_date := l_effective_end_date;
148: --
149: hr_utility.set_location(' Leaving:'||l_proc, 40);
150:
151: end CREATE_LIV_INTERNAL;
152: --
153: --

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

226: and nvl(end_date_active, p_effective_date);
227:
228: --
229: begin
230: hr_utility.set_location('Entering:'|| l_proc, 10);
231: --
232: -- Issue a savepoint
233: --
234: savepoint update_link_input_values;

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

392: p_default_formula_warning := l_default_formula_warning;
393: p_assignment_id_warning := l_assignment_id_warning;
394: p_formula_message := l_formula_message;
395: --
396: hr_utility.set_location(' Leaving:'||l_proc, 70);
397: exception
398: when hr_api.validate_enabled then
399: --
400: -- As the Validate_Enabled exception has been raised

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

409: p_object_version_number := p_object_version_number;
410: p_effective_start_date := null;
411: p_effective_end_date := null;
412:
413: hr_utility.set_location(' Leaving:'||l_proc, 80);
414: when others then
415: --
416: -- A validation or unexpected error has occured
417: --

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

421: p_effective_end_date := null;
422: p_pay_basis_warning := null;
423: p_default_range_warning := null;
424: p_default_formula_warning := null;
425: hr_utility.set_location(' Leaving:'||l_proc, 90);
426: raise;
427:
428: end UPDATE_LINK_INPUT_VALUES;
429: --

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

451: l_effective_start_date date;
452: l_object_version_number pay_link_input_values_f.object_version_number%type;
453:
454: begin
455: hr_utility.set_location('Entering:'|| l_proc, 10);
456: --
457: -- Issue a savepoint
458: --
459: savepoint delete_link_input_values;

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

534: p_object_version_number := l_object_version_number;
535: p_effective_start_date := l_effective_start_date;
536: p_effective_end_date := l_effective_end_date;
537: --
538: hr_utility.set_location(' Leaving:'||l_proc, 70);
539: exception
540: when hr_api.validate_enabled then
541: --
542: -- As the Validate_Enabled exception has been raised

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

550: --
551: p_effective_start_date := null;
552: p_effective_end_date := null;
553: p_object_version_number := p_object_version_number;
554: hr_utility.set_location(' Leaving:'||l_proc, 80);
555: when others then
556: --
557: -- A validation or unexpected error has occured
558: --

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

559: rollback to delete_link_input_values;
560: p_effective_start_date := null;
561: p_effective_end_date := null;
562: p_object_version_number := p_object_version_number;
563: hr_utility.set_location(' Leaving:'||l_proc, 90);
564: raise;
565: end DELETE_LINK_INPUT_VALUES;
566:
567: end PAY_LINK_INPUT_VALUES_API;