DBA Data[Home] [Help]

APPS.OTA_LPM_INS dependencies on HR_API

Line 161: When hr_api.check_integrity_violated Then

157: --
158: --
159: hr_utility.set_location(' Leaving:'||l_proc, 10);
160: Exception
161: When hr_api.check_integrity_violated Then
162: -- A check constraint has been violated
163: --
164: ota_lpm_shd.constraint_error
165: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));

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

161: When hr_api.check_integrity_violated Then
162: -- A check constraint has been violated
163: --
164: ota_lpm_shd.constraint_error
165: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));
166: When hr_api.parent_integrity_violated Then
167: -- Parent integrity has been violated
168: --
169: ota_lpm_shd.constraint_error

Line 166: When hr_api.parent_integrity_violated Then

162: -- A check constraint has been violated
163: --
164: ota_lpm_shd.constraint_error
165: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));
166: When hr_api.parent_integrity_violated Then
167: -- Parent integrity has been violated
168: --
169: ota_lpm_shd.constraint_error
170: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));

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

166: When hr_api.parent_integrity_violated Then
167: -- Parent integrity has been violated
168: --
169: ota_lpm_shd.constraint_error
170: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));
171: When hr_api.unique_integrity_violated Then
172: -- Unique integrity has been violated
173: --
174: ota_lpm_shd.constraint_error

Line 171: When hr_api.unique_integrity_violated Then

167: -- Parent integrity has been violated
168: --
169: ota_lpm_shd.constraint_error
170: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));
171: When hr_api.unique_integrity_violated Then
172: -- Unique integrity has been violated
173: --
174: ota_lpm_shd.constraint_error
175: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));

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

171: When hr_api.unique_integrity_violated Then
172: -- Unique integrity has been violated
173: --
174: ota_lpm_shd.constraint_error
175: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));
176: When Others Then
177: --
178: Raise;
179: End insert_dml;

Line 384: when hr_api.cannot_find_prog_unit then

380: );
381: --
382: exception
383: --
384: when hr_api.cannot_find_prog_unit then
385: --
386: hr_api.cannot_find_prog_unit_error
387: (p_module_name => 'OTA_LEARNING_PATH_MEMBERS'
388: ,p_hook_type => 'AI');

Line 386: hr_api.cannot_find_prog_unit_error

382: exception
383: --
384: when hr_api.cannot_find_prog_unit then
385: --
386: hr_api.cannot_find_prog_unit_error
387: (p_module_name => 'OTA_LEARNING_PATH_MEMBERS'
388: ,p_hook_type => 'AI');
389: --
390: end;