DBA Data[Home] [Help]

APPS.IRC_CMR_SHD dependencies on IRC_COMM_RECIPIENTS

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

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

54: ,start_date_active
55: ,end_date_active
56: ,primary_flag
57: ,object_version_number
58: from irc_comm_recipients
59: where communication_recipient_id = p_communication_recipient_id;
60: --
61: l_fct_ret boolean;
62: --

Line 132: from irc_comm_recipients

128: ,start_date_active
129: ,end_date_active
130: ,primary_flag
131: ,object_version_number
132: from irc_comm_recipients
133: where communication_recipient_id = p_communication_recipient_id
134: for update nowait;
135: --
136: l_proc varchar2(72) := g_package||'lck';

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

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', 'irc_comm_recipients');
182: fnd_message.raise_error;
183: End lck;
184: --
185: -- ----------------------------------------------------------------------------