DBA Data[Home] [Help]

APPS.PER_SLT_INS dependencies on HR_API

Line 106: When hr_api.check_integrity_violated Then

102: --
103: --
104: hr_utility.set_location(' Leaving:'||l_proc, 10);
105: Exception
106: When hr_api.check_integrity_violated Then
107: -- A check constraint has been violated
108: --
109: per_slt_shd.constraint_error
110: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));

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

106: When hr_api.check_integrity_violated Then
107: -- A check constraint has been violated
108: --
109: per_slt_shd.constraint_error
110: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));
111: When hr_api.parent_integrity_violated Then
112: -- Parent integrity has been violated
113: --
114: per_slt_shd.constraint_error

Line 111: When hr_api.parent_integrity_violated Then

107: -- A check constraint has been violated
108: --
109: per_slt_shd.constraint_error
110: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));
111: When hr_api.parent_integrity_violated Then
112: -- Parent integrity has been violated
113: --
114: per_slt_shd.constraint_error
115: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));

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

111: When hr_api.parent_integrity_violated Then
112: -- Parent integrity has been violated
113: --
114: per_slt_shd.constraint_error
115: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));
116: When hr_api.unique_integrity_violated Then
117: -- Unique integrity has been violated
118: --
119: per_slt_shd.constraint_error

Line 116: When hr_api.unique_integrity_violated Then

112: -- Parent integrity has been violated
113: --
114: per_slt_shd.constraint_error
115: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));
116: When hr_api.unique_integrity_violated Then
117: -- Unique integrity has been violated
118: --
119: per_slt_shd.constraint_error
120: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));

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

116: When hr_api.unique_integrity_violated Then
117: -- Unique integrity has been violated
118: --
119: per_slt_shd.constraint_error
120: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));
121: When Others Then
122: --
123: Raise;
124: End insert_dml;

Line 266: when hr_api.cannot_find_prog_unit then

262: );
263: --
264: exception
265: --
266: when hr_api.cannot_find_prog_unit then
267: --
268: hr_api.cannot_find_prog_unit_error
269: (p_module_name => 'PER_SOLUTION_TYPES'
270: ,p_hook_type => 'AI');

Line 268: hr_api.cannot_find_prog_unit_error

264: exception
265: --
266: when hr_api.cannot_find_prog_unit then
267: --
268: hr_api.cannot_find_prog_unit_error
269: (p_module_name => 'PER_SOLUTION_TYPES'
270: ,p_hook_type => 'AI');
271: --
272: end;