DBA Data[Home] [Help]

APPS.OTA_TDB_SHD dependencies on OTA_DELEGATE_BOOKINGS

Line 36: If (p_constraint_name = 'OTA_DELEGATE_BOOKINGS_FK1') Then

32: --
33: Begin
34: hr_utility.set_location('Entering:'||l_proc, 5);
35: --
36: If (p_constraint_name = 'OTA_DELEGATE_BOOKINGS_FK1') Then
37: hr_utility.set_message(801, 'HR_6153_ALL_PROCEDURE_FAIL');
38: hr_utility.set_message_token('PROCEDURE', l_proc);
39: hr_utility.set_message_token('STEP','5');
40: hr_utility.raise_error;

Line 41: ElsIf (p_constraint_name = 'OTA_DELEGATE_BOOKINGS_FK3') Then

37: hr_utility.set_message(801, 'HR_6153_ALL_PROCEDURE_FAIL');
38: hr_utility.set_message_token('PROCEDURE', l_proc);
39: hr_utility.set_message_token('STEP','5');
40: hr_utility.raise_error;
41: ElsIf (p_constraint_name = 'OTA_DELEGATE_BOOKINGS_FK3') Then
42: hr_utility.set_message(801, 'HR_6153_ALL_PROCEDURE_FAIL');
43: hr_utility.set_message_token('PROCEDURE', l_proc);
44: hr_utility.set_message_token('STEP','10');
45: hr_utility.raise_error;

Line 46: ElsIf (p_constraint_name = 'OTA_DELEGATE_BOOKINGS_PK') Then

42: hr_utility.set_message(801, 'HR_6153_ALL_PROCEDURE_FAIL');
43: hr_utility.set_message_token('PROCEDURE', l_proc);
44: hr_utility.set_message_token('STEP','10');
45: hr_utility.raise_error;
46: ElsIf (p_constraint_name = 'OTA_DELEGATE_BOOKINGS_PK') Then
47: hr_utility.set_message(801, 'HR_6153_ALL_PROCEDURE_FAIL');
48: hr_utility.set_message_token('PROCEDURE', l_proc);
49: hr_utility.set_message_token('STEP','15');
50: hr_utility.raise_error;

Line 51: ElsIf (p_constraint_name = 'OTA_DELEGATE_BOOKINGS_UK1') Then

47: hr_utility.set_message(801, 'HR_6153_ALL_PROCEDURE_FAIL');
48: hr_utility.set_message_token('PROCEDURE', l_proc);
49: hr_utility.set_message_token('STEP','15');
50: hr_utility.raise_error;
51: ElsIf (p_constraint_name = 'OTA_DELEGATE_BOOKINGS_UK1') Then
52: fnd_message.set_name('OTA','OTA_13886_TDB_LINE_DUPLICATE');
53: fnd_message.raise_error;
54: ElsIf (p_constraint_name = 'OTA_TDB_INTERNAL_BOOKING_F_CHK') Then
55: hr_utility.set_message(801, 'HR_6153_ALL_PROCEDURE_FAIL');

Line 200: from ota_delegate_bookings

196: booking_justification_id,
197: is_history_flag,
198: sign_eval_status,
199: is_mandatory_enrollment
200: from ota_delegate_bookings
201: where booking_id = p_booking_id;
202: --
203: l_proc varchar2(72) := g_package||'api_updating';
204: l_fct_ret boolean;

Line 347: from ota_delegate_bookings

343: booking_justification_id,
344: is_history_flag,
345: sign_eval_status,
346: is_mandatory_enrollment
347: from ota_delegate_bookings
348: where booking_id = p_booking_id
349: for update nowait;
350: --
351: l_proc varchar2(72) := g_package||'lck';

Line 469: hr_utility.set_message_token('TABLE_NAME', 'ota_delegate_bookings');

465: -- The object is locked therefore we need to supply a meaningful
466: -- error message.
467: --
468: hr_utility.set_message(801, 'HR_7165_OBJECT_LOCKED');
469: hr_utility.set_message_token('TABLE_NAME', 'ota_delegate_bookings');
470: hr_utility.raise_error;
471: End lck;
472: --
473: -- ----------------------------------------------------------------------------