DBA Data[Home] [Help]

APPS.AME_GCF_UPD dependencies on HR_API

Line 70: If (p_datetrack_mode = hr_api.g_correction) then

66: --
67: Begin
68: hr_utility.set_location('Entering:'||l_proc, 5);
69: --
70: If (p_datetrack_mode = hr_api.g_correction) then
71: hr_utility.set_location(l_proc, 10);
72: --
73: -- Because we are updating a row we must get the next object
74: -- version number.

Line 109: When hr_api.check_integrity_violated Then

105: End If;
106: --
107: hr_utility.set_location(' Leaving:'||l_proc, 15);
108: Exception
109: When hr_api.check_integrity_violated Then
110: -- A check constraint has been violated
111: --
112: ame_gcf_shd.constraint_error
113: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));

Line 113: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));

109: When hr_api.check_integrity_violated Then
110: -- A check constraint has been violated
111: --
112: ame_gcf_shd.constraint_error
113: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));
114: When hr_api.unique_integrity_violated Then
115: -- Unique integrity has been violated
116: --
117: ame_gcf_shd.constraint_error

Line 114: When hr_api.unique_integrity_violated Then

110: -- A check constraint has been violated
111: --
112: ame_gcf_shd.constraint_error
113: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));
114: When hr_api.unique_integrity_violated Then
115: -- Unique integrity has been violated
116: --
117: ame_gcf_shd.constraint_error
118: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));

Line 118: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));

114: When hr_api.unique_integrity_violated Then
115: -- Unique integrity has been violated
116: --
117: ame_gcf_shd.constraint_error
118: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));
119: When Others Then
120: --
121: Raise;
122: End dt_update_dml;

Line 235: If (p_datetrack_mode <> hr_api.g_correction) then

231: l_dummy_version_number number;
232: --
233: Begin
234: hr_utility.set_location('Entering:'||l_proc, 5);
235: If (p_datetrack_mode <> hr_api.g_correction) then
236: --
237: -- Update the current effective end date
238: --
239: ame_gcf_shd.upd_end_date

Line 247: If (p_datetrack_mode = hr_api.g_update_override) then

243: ,p_new_end_date => p_validation_start_date
244: ,p_object_version_number => l_dummy_version_number
245: );
246: --
247: If (p_datetrack_mode = hr_api.g_update_override) then
248: --
249: -- As the datetrack mode is 'UPDATE_OVERRIDE' then we must
250: -- delete any future rows
251: --

Line 415: when hr_api.cannot_find_prog_unit then

411: );
412: --
413: exception
414: --
415: when hr_api.cannot_find_prog_unit then
416: --
417: hr_api.cannot_find_prog_unit_error
418: (p_module_name => 'AME_APPROVAL_GROUP_CONFIG'
419: ,p_hook_type => 'AU');

Line 417: hr_api.cannot_find_prog_unit_error

413: exception
414: --
415: when hr_api.cannot_find_prog_unit then
416: --
417: hr_api.cannot_find_prog_unit_error
418: (p_module_name => 'AME_APPROVAL_GROUP_CONFIG'
419: ,p_hook_type => 'AU');
420: --
421: end;

Line 480: If (p_rec.voting_regime = hr_api.g_varchar2) then

476: -- p_rec plsql record structure
477: -- to see if a system default is being used. If a system default
478: -- is being used then we must set to the 'current' argument value.
479: --
480: If (p_rec.voting_regime = hr_api.g_varchar2) then
481: p_rec.voting_regime :=
482: ame_gcf_shd.g_old_rec.voting_regime;
483: End If;
484: If (p_rec.order_number = hr_api.g_number) then

Line 484: If (p_rec.order_number = hr_api.g_number) then

480: If (p_rec.voting_regime = hr_api.g_varchar2) then
481: p_rec.voting_regime :=
482: ame_gcf_shd.g_old_rec.voting_regime;
483: End If;
484: If (p_rec.order_number = hr_api.g_number) then
485: p_rec.order_number :=
486: ame_gcf_shd.g_old_rec.order_number;
487: End If;
488: --

Line 585: ,p_voting_regime in varchar2 default hr_api.g_varchar2

581: ,p_datetrack_mode in varchar2
582: ,p_application_id in number
583: ,p_approval_group_id in number
584: ,p_object_version_number in out nocopy number
585: ,p_voting_regime in varchar2 default hr_api.g_varchar2
586: ,p_order_number in number default hr_api.g_number
587: ,p_start_date out nocopy date
588: ,p_end_date out nocopy date
589: ) is

Line 586: ,p_order_number in number default hr_api.g_number

582: ,p_application_id in number
583: ,p_approval_group_id in number
584: ,p_object_version_number in out nocopy number
585: ,p_voting_regime in varchar2 default hr_api.g_varchar2
586: ,p_order_number in number default hr_api.g_number
587: ,p_start_date out nocopy date
588: ,p_end_date out nocopy date
589: ) is
590: --