DBA Data[Home] [Help]

APPS.HR_LOT_INS dependencies on HR_API

Line 73: When hr_api.check_integrity_violated Then

69: );
70: --
71: hr_utility.set_location(' Leaving:'||l_proc, 10);
72: Exception
73: When hr_api.check_integrity_violated Then
74: -- A check constraint has been violated
75: hr_lot_shd.constraint_error
76: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));
77: When hr_api.parent_integrity_violated Then

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

72: Exception
73: When hr_api.check_integrity_violated Then
74: -- A check constraint has been violated
75: hr_lot_shd.constraint_error
76: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));
77: When hr_api.parent_integrity_violated Then
78: -- Parent integrity has been violated
79: hr_lot_shd.constraint_error
80: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));

Line 77: When hr_api.parent_integrity_violated Then

73: When hr_api.check_integrity_violated Then
74: -- A check constraint has been violated
75: hr_lot_shd.constraint_error
76: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));
77: When hr_api.parent_integrity_violated Then
78: -- Parent integrity has been violated
79: hr_lot_shd.constraint_error
80: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));
81: When hr_api.unique_integrity_violated Then

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

76: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));
77: When hr_api.parent_integrity_violated Then
78: -- Parent integrity has been violated
79: hr_lot_shd.constraint_error
80: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));
81: When hr_api.unique_integrity_violated Then
82: -- Unique integrity has been violated
83: hr_lot_shd.constraint_error
84: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));

Line 81: When hr_api.unique_integrity_violated Then

77: When hr_api.parent_integrity_violated Then
78: -- Parent integrity has been violated
79: hr_lot_shd.constraint_error
80: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));
81: When hr_api.unique_integrity_violated Then
82: -- Unique integrity has been violated
83: hr_lot_shd.constraint_error
84: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));
85: When Others Then

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

80: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));
81: When hr_api.unique_integrity_violated Then
82: -- Unique integrity has been violated
83: hr_lot_shd.constraint_error
84: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));
85: When Others Then
86: Raise;
87: End insert_dml;
88: --

Line 196: when hr_api.cannot_find_prog_unit then

192: );
193: --
194: exception
195: --
196: when hr_api.cannot_find_prog_unit then
197: --
198: hr_api.cannot_find_prog_unit_error
199: (p_module_name => 'HR_LOCATIONS_ALL_TL'
200: ,p_hook_type => 'AI');

Line 198: hr_api.cannot_find_prog_unit_error

194: exception
195: --
196: when hr_api.cannot_find_prog_unit then
197: --
198: hr_api.cannot_find_prog_unit_error
199: (p_module_name => 'HR_LOCATIONS_ALL_TL'
200: ,p_hook_type => 'AI');
201: --
202: end;