DBA Data[Home] [Help]

APPS.PER_STT_INS dependencies on HR_API

Line 89: When hr_api.check_integrity_violated Then

85: );
86: --
87: hr_utility.set_location(' Leaving:'||l_proc, 10);
88: Exception
89: When hr_api.check_integrity_violated Then
90: -- A check constraint has been violated
91: per_stt_shd.constraint_error
92: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));
93: When hr_api.parent_integrity_violated Then

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

88: Exception
89: When hr_api.check_integrity_violated Then
90: -- A check constraint has been violated
91: per_stt_shd.constraint_error
92: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));
93: When hr_api.parent_integrity_violated Then
94: -- Parent integrity has been violated
95: per_stt_shd.constraint_error
96: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));

Line 93: When hr_api.parent_integrity_violated Then

89: When hr_api.check_integrity_violated Then
90: -- A check constraint has been violated
91: per_stt_shd.constraint_error
92: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));
93: When hr_api.parent_integrity_violated Then
94: -- Parent integrity has been violated
95: per_stt_shd.constraint_error
96: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));
97: When hr_api.unique_integrity_violated Then

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

92: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));
93: When hr_api.parent_integrity_violated Then
94: -- Parent integrity has been violated
95: per_stt_shd.constraint_error
96: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));
97: When hr_api.unique_integrity_violated Then
98: -- Unique integrity has been violated
99: per_stt_shd.constraint_error
100: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));

Line 97: When hr_api.unique_integrity_violated Then

93: When hr_api.parent_integrity_violated Then
94: -- Parent integrity has been violated
95: per_stt_shd.constraint_error
96: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));
97: When hr_api.unique_integrity_violated Then
98: -- Unique integrity has been violated
99: per_stt_shd.constraint_error
100: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));
101: When Others Then

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

96: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));
97: When hr_api.unique_integrity_violated Then
98: -- Unique integrity has been violated
99: per_stt_shd.constraint_error
100: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));
101: When Others Then
102: Raise;
103: End insert_dml;
104: --

Line 209: when hr_api.cannot_find_prog_unit then

205: );
206: --
207: exception
208: --
209: when hr_api.cannot_find_prog_unit then
210: --
211: hr_api.cannot_find_prog_unit_error
212: (p_module_name => 'per_shared_types_tl'
213: ,p_hook_type => 'AI');

Line 211: hr_api.cannot_find_prog_unit_error

207: exception
208: --
209: when hr_api.cannot_find_prog_unit then
210: --
211: hr_api.cannot_find_prog_unit_error
212: (p_module_name => 'per_shared_types_tl'
213: ,p_hook_type => 'AI');
214: --
215: end;