DBA Data[Home] [Help]

APPS.OTA_FNS_UPD dependencies on HR_API

Line 86: When hr_api.check_integrity_violated Then

82: --
83: hr_utility.set_location(' Leaving:'||l_proc, 10);
84: --
85: Exception
86: When hr_api.check_integrity_violated Then
87: -- A check constraint has been violated
88: ota_fns_shd.g_api_dml := false; -- Unset the api dml status
89: ota_fns_shd.constraint_error
90: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));

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

86: When hr_api.check_integrity_violated Then
87: -- A check constraint has been violated
88: ota_fns_shd.g_api_dml := false; -- Unset the api dml status
89: ota_fns_shd.constraint_error
90: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));
91: When hr_api.parent_integrity_violated Then
92: -- Parent integrity has been violated
93: ota_fns_shd.g_api_dml := false; -- Unset the api dml status
94: ota_fns_shd.constraint_error

Line 91: When hr_api.parent_integrity_violated Then

87: -- A check constraint has been violated
88: ota_fns_shd.g_api_dml := false; -- Unset the api dml status
89: ota_fns_shd.constraint_error
90: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));
91: When hr_api.parent_integrity_violated Then
92: -- Parent integrity has been violated
93: ota_fns_shd.g_api_dml := false; -- Unset the api dml status
94: ota_fns_shd.constraint_error
95: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));

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

91: When hr_api.parent_integrity_violated Then
92: -- Parent integrity has been violated
93: ota_fns_shd.g_api_dml := false; -- Unset the api dml status
94: ota_fns_shd.constraint_error
95: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));
96: When hr_api.unique_integrity_violated Then
97: -- Unique integrity has been violated
98: ota_fns_shd.g_api_dml := false; -- Unset the api dml status
99: ota_fns_shd.constraint_error

Line 96: When hr_api.unique_integrity_violated Then

92: -- Parent integrity has been violated
93: ota_fns_shd.g_api_dml := false; -- Unset the api dml status
94: ota_fns_shd.constraint_error
95: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));
96: When hr_api.unique_integrity_violated Then
97: -- Unique integrity has been violated
98: ota_fns_shd.g_api_dml := false; -- Unset the api dml status
99: ota_fns_shd.constraint_error
100: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));

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

96: When hr_api.unique_integrity_violated Then
97: -- Unique integrity has been violated
98: ota_fns_shd.g_api_dml := false; -- Unset the api dml status
99: ota_fns_shd.constraint_error
100: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));
101: When Others Then
102: ota_fns_shd.g_api_dml := false; -- Unset the api dml status
103: Raise;
104: End update_dml;

Line 213: when hr_api.cannot_find_prog_unit then

209: );
210: --
211: exception
212: --
213: when hr_api.cannot_find_prog_unit then
214: --
215: hr_api.cannot_find_prog_unit_error
216: (p_module_name => 'OTA_FRM_NOTIF_SUBSCRIBERS'
217: ,p_hook_type => 'AU');

Line 215: hr_api.cannot_find_prog_unit_error

211: exception
212: --
213: when hr_api.cannot_find_prog_unit then
214: --
215: hr_api.cannot_find_prog_unit_error
216: (p_module_name => 'OTA_FRM_NOTIF_SUBSCRIBERS'
217: ,p_hook_type => 'AU');
218: --
219: end;

Line 278: If (p_rec.business_group_id = hr_api.g_number) then

274: -- p_rec plsql record structure
275: -- to see if a system default is being used. If a system default
276: -- is being used then we must set to the 'current' argument value.
277: --
278: If (p_rec.business_group_id = hr_api.g_number) then
279: p_rec.business_group_id :=
280: ota_fns_shd.g_old_rec.business_group_id;
281: End If;
282: --

Line 350: ,p_business_group_id in number default hr_api.g_number

346: ,p_forum_id in number
347: ,p_person_id in number
348: ,p_contact_id in number
349: ,p_object_version_number in out nocopy number
350: ,p_business_group_id in number default hr_api.g_number
351: ) is
352: --
353: l_rec ota_fns_shd.g_rec_type;
354: l_proc varchar2(72) := g_package||'upd';