DBA Data[Home] [Help]

APPS.PAY_INPUT_VALUE_API dependencies on HR_UTILITY

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

54:
55:
56: l_proc varchar2(72) := g_package||'CREATE_INPUT_VALUE';
57: begin
58: hr_utility.set_location('Entering:'|| l_proc, 10);
59: --
60: -- Issue a savepoint
61: --
62: savepoint CREATE_INPUT_VALUE;

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

189: p_input_value_id := p_input_value_id;
190: p_object_version_number := p_object_version_number;
191:
192: --
193: hr_utility.set_location(' Leaving:'||l_proc, 70);
194: exception
195: when hr_api.validate_enabled then
196: --
197: -- As the Validate_Enabled exception has been raised

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

211: p_formula_warning := null;
212: p_assignment_id_warning := null;
213: p_formula_message := null;
214:
215: hr_utility.set_location(' Leaving:'||l_proc, 80);
216: when others then
217: --
218: -- A validation or unexpected error has occured
219: --

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

217: --
218: -- A validation or unexpected error has occured
219: --
220: rollback to CREATE_INPUT_VALUE;
221: hr_utility.set_location(' Leaving:'||l_proc, 90);
222: raise;
223: end CREATE_INPUT_VALUE;
224: --
225: --

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

272: l_legislation_subgroup pay_input_values_f.legislation_subgroup%type;
273:
274: l_proc varchar2(72) := g_package||'UPDATE_INPUT_VALUE';
275: begin
276: hr_utility.set_location('Entering:'|| l_proc, 10);
277: --
278: -- Issue a savepoint
279: --
280: savepoint UPDATE_INPUT_VALUE;

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

409: p_formula_warning := null;
410: p_assignment_id_warning := null;
411: p_formula_message := null;
412: --
413: hr_utility.set_location(' Leaving:'||l_proc, 70);
414: exception
415: when hr_api.validate_enabled then
416: --
417: -- As the Validate_Enabled exception has been raised

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

423: -- (Any key or derived arguments must be set to null
424: -- when validation only mode is being used.)
425: --
426: p_object_version_number := p_object_version_number;
427: hr_utility.set_location(' Leaving:'||l_proc, 80);
428: when others then
429: --
430: -- A validation or unexpected error has occured
431: --

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

429: --
430: -- A validation or unexpected error has occured
431: --
432: rollback to UPDATE_INPUT_VALUE;
433: hr_utility.set_location(' Leaving:'||l_proc, 90);
434: raise;
435: end UPDATE_INPUT_VALUE;
436: --
437: --

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

455: --
456:
457: l_proc varchar2(72) := g_package||'DELETE_INPUT_VALUE';
458: begin
459: hr_utility.set_location('Entering:'|| l_proc, 10);
460: --
461: -- Issue a savepoint
462: --
463: savepoint DELETE_INPUT_VALUE;

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

482: --
483: -- Validation in addition to Row Handlers
484: --
485: if P_DATETRACK_DELETE_MODE = 'DELETE' then
486: hr_utility.set_message(801,'HR_7098_INPVAL_NO_CHANGES');
487: hr_utility.raise_error;
488: end if;
489:
490:

Line 487: hr_utility.raise_error;

483: -- Validation in addition to Row Handlers
484: --
485: if P_DATETRACK_DELETE_MODE = 'DELETE' then
486: hr_utility.set_message(801,'HR_7098_INPVAL_NO_CHANGES');
487: hr_utility.raise_error;
488: end if;
489:
490:
491:

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

533: -- Set all output arguments
534: --
535: p_object_version_number := p_object_version_number;
536: --
537: hr_utility.set_location(' Leaving:'||l_proc, 70);
538: exception
539: when hr_api.validate_enabled then
540: --
541: -- As the Validate_Enabled exception has been raised

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

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

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

555: --
556: -- A validation or unexpected error has occured
557: --
558: rollback to DELETE_INPUT_VALUE;
559: hr_utility.set_location(' Leaving:'||l_proc, 90);
560: raise;
561: end DELETE_INPUT_VALUE;
562: --
563: end PAY_INPUT_VALUE_API;