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 199: from ota_delegate_bookings

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

Line 345: from ota_delegate_bookings

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

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

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