DBA Data[Home] [Help]

APPS.OTA_CHA_SHD dependencies on OTA_CHATS_B

Line 21: If (p_constraint_name = 'OTA_CHATS_B_PK') Then

17: l_proc varchar2(72) := g_package||'constraint_error';
18: --
19: Begin
20: --
21: If (p_constraint_name = 'OTA_CHATS_B_PK') Then
22: fnd_message.set_name('PAY', 'HR_6153_ALL_PROCEDURE_FAIL');
23: fnd_message.set_token('PROCEDURE', l_proc);
24: fnd_message.set_token('STEP','5');
25: fnd_message.raise_error;

Line 58: from ota_chats_b

54: ,end_date_active
55: ,start_time_active
56: ,end_time_active
57: ,timezone_code
58: from ota_chats_b
59: where chat_id = p_chat_id;
60: --
61: l_fct_ret boolean;
62: --

Line 132: from ota_chats_b

128: ,end_date_active
129: ,start_time_active
130: ,end_time_active
131: ,timezone_code
132: from ota_chats_b
133: where chat_id = p_chat_id
134: for update nowait;
135: --
136: l_proc varchar2(72) := g_package||'lck';

Line 181: fnd_message.set_token('TABLE_NAME', 'ota_chats_b');

177: -- The object is locked therefore we need to supply a meaningful
178: -- error message.
179: --
180: fnd_message.set_name('PAY', 'HR_7165_OBJECT_LOCKED');
181: fnd_message.set_token('TABLE_NAME', 'ota_chats_b');
182: fnd_message.raise_error;
183: End lck;
184: --
185: -- ----------------------------------------------------------------------------