DBA Data[Home] [Help]

APPS.OTA_FTU_SHD dependencies on OTA_PVT_FRM_THREAD_USERS

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

17: l_proc varchar2(72) := g_package||'constraint_error';
18: --
19: Begin
20: --
21: If (p_constraint_name = 'OTA_PVT_FRM_THREAD_USERS_PK1') 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 60: from ota_pvt_frm_thread_users

56: ,author_contact_id
57: ,person_id
58: ,contact_id
59: ,object_version_number
60: from ota_pvt_frm_thread_users
61: where forum_thread_id = p_forum_thread_id
62: and forum_id = p_forum_id
63: and person_id = p_person_id
64: and contact_id = p_contact_id;

Line 148: from ota_pvt_frm_thread_users

144: ,author_contact_id
145: ,person_id
146: ,contact_id
147: ,object_version_number
148: from ota_pvt_frm_thread_users
149: where forum_thread_id = p_forum_thread_id
150: and forum_id = p_forum_id
151: and (person_id is null or person_id = p_person_id)
152: and (contact_id is null or contact_id = p_contact_id)

Line 218: fnd_message.set_token('TABLE_NAME', 'ota_pvt_frm_thread_users');

214: -- The object is locked therefore we need to supply a meaningful
215: -- error message.
216: --
217: fnd_message.set_name('PAY', 'HR_7165_OBJECT_LOCKED');
218: fnd_message.set_token('TABLE_NAME', 'ota_pvt_frm_thread_users');
219: fnd_message.raise_error;
220: End lck;
221: --
222: -- ----------------------------------------------------------------------------