DBA Data[Home] [Help]

APPS.OTA_FNS_SHD dependencies on OTA_FRM_NOTIF_SUBSCRIBERS

Line 32: If (p_constraint_name = 'OTA_FRM_NOTIF_SUBSCRIBERS_PK1') Then

28: l_proc varchar2(72) := g_package||'constraint_error';
29: --
30: Begin
31: --
32: If (p_constraint_name = 'OTA_FRM_NOTIF_SUBSCRIBERS_PK1') Then
33: fnd_message.set_name('PAY', 'HR_6153_ALL_PROCEDURE_FAIL');
34: fnd_message.set_token('PROCEDURE', l_proc);
35: fnd_message.set_token('STEP','5');
36: fnd_message.raise_error;

Line 67: from ota_frm_notif_subscribers

63: ,business_group_id
64: ,object_version_number
65: ,person_id
66: ,contact_id
67: from ota_frm_notif_subscribers
68: where forum_id = p_forum_id
69: and person_id = p_person_id
70: and contact_id = p_contact_id;
71: --

Line 147: from ota_frm_notif_subscribers

143: ,business_group_id
144: ,object_version_number
145: ,person_id
146: ,contact_id
147: from ota_frm_notif_subscribers
148: where forum_id = p_forum_id
149: and (person_id is null or person_id = p_person_id)
150: and (contact_id is null or contact_id = p_contact_id)
151: for update nowait;

Line 210: fnd_message.set_token('TABLE_NAME', 'ota_frm_notif_subscribers');

206: -- The object is locked therefore we need to supply a meaningful
207: -- error message.
208: --
209: fnd_message.set_name('PAY', 'HR_7165_OBJECT_LOCKED');
210: fnd_message.set_token('TABLE_NAME', 'ota_frm_notif_subscribers');
211: fnd_message.raise_error;
212: End lck;
213: --
214: -- ----------------------------------------------------------------------------