DBA Data[Home] [Help]

APPS.OTA_CUS_UPD dependencies on HR_API

Line 87: When hr_api.check_integrity_violated Then

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

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

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

Line 92: When hr_api.parent_integrity_violated Then

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

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

92: When hr_api.parent_integrity_violated Then
93: -- Parent integrity has been violated
94: --
95: ota_cus_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: --
100: ota_cus_shd.constraint_error

Line 97: When hr_api.unique_integrity_violated Then

93: -- Parent integrity has been violated
94: --
95: ota_cus_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: --
100: ota_cus_shd.constraint_error
101: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));

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

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

Line 218: when hr_api.cannot_find_prog_unit then

214: );
215: --
216: exception
217: --
218: when hr_api.cannot_find_prog_unit then
219: --
220: hr_api.cannot_find_prog_unit_error
221: (p_module_name => 'OTA_CHAT_USERS'
222: ,p_hook_type => 'AU');

Line 220: hr_api.cannot_find_prog_unit_error

216: exception
217: --
218: when hr_api.cannot_find_prog_unit then
219: --
220: hr_api.cannot_find_prog_unit_error
221: (p_module_name => 'OTA_CHAT_USERS'
222: ,p_hook_type => 'AU');
223: --
224: end;

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

279: -- p_rec plsql record structure
280: -- to see if a system default is being used. If a system default
281: -- is being used then we must set to the 'current' argument value.
282: --
283: If (p_rec.business_group_id = hr_api.g_number) then
284: p_rec.business_group_id :=
285: ota_cus_shd.g_old_rec.business_group_id;
286: End If;
287: If (p_rec.login_date = hr_api.g_date) then

Line 287: If (p_rec.login_date = hr_api.g_date) then

283: If (p_rec.business_group_id = hr_api.g_number) then
284: p_rec.business_group_id :=
285: ota_cus_shd.g_old_rec.business_group_id;
286: End If;
287: If (p_rec.login_date = hr_api.g_date) then
288: p_rec.login_date :=
289: ota_cus_shd.g_old_rec.login_date;
290: End If;
291: --

Line 359: ,p_business_group_id in number default hr_api.g_number

355: ,p_chat_id in number
356: ,p_person_id in number
357: ,p_contact_id in number
358: ,p_object_version_number in out nocopy number
359: ,p_business_group_id in number default hr_api.g_number
360: ,p_login_date in date default hr_api.g_date
361: ) is
362: --
363: l_rec ota_cus_shd.g_rec_type;

Line 360: ,p_login_date in date default hr_api.g_date

356: ,p_person_id in number
357: ,p_contact_id in number
358: ,p_object_version_number in out nocopy number
359: ,p_business_group_id in number default hr_api.g_number
360: ,p_login_date in date default hr_api.g_date
361: ) is
362: --
363: l_rec ota_cus_shd.g_rec_type;
364: l_proc varchar2(72) := g_package||'upd';