DBA Data[Home] [Help]

APPS.IRC_CMM_INS dependencies on IRC_CMM_INS

Line 1: Package Body irc_cmm_ins as

1: Package Body irc_cmm_ins as
2: /* $Header: ircmmrhi.pkb 120.2 2008/04/14 14:50:29 amikukum noship $ */
3: --
4: -- ----------------------------------------------------------------------------
5: -- | Private Global Definitions |

Line 8: g_package varchar2(33) := ' irc_cmm_ins.'; -- Global package name

4: -- ----------------------------------------------------------------------------
5: -- | Private Global Definitions |
6: -- ----------------------------------------------------------------------------
7: --
8: g_package varchar2(33) := ' irc_cmm_ins.'; -- Global package name
9: --
10: -- The following global variables are only to be used by
11: -- the set_base_key_value and pre_insert procedures.
12: --

Line 26: irc_cmm_ins.g_communication_message_id_i := p_communication_message_id;

22: --
23: Begin
24: hr_utility.set_location('Entering:'||l_proc, 10);
25: --
26: irc_cmm_ins.g_communication_message_id_i := p_communication_message_id;
27: --
28: hr_utility.set_location(' Leaving:'||l_proc, 20);
29: End set_base_key_value;
30: --

Line 189: irc_cmm_ins.g_communication_message_id_i;

185: Cursor C_Sel2 is
186: Select null
187: from irc_comm_messages
188: where communication_message_id =
189: irc_cmm_ins.g_communication_message_id_i;
190: --
191: l_proc varchar2(72) := g_package||'pre_insert';
192: l_exists varchar2(1);
193: --

Line 197: If (irc_cmm_ins.g_communication_message_id_i is not null) Then

193: --
194: Begin
195: hr_utility.set_location('Entering:'||l_proc, 5);
196: --
197: If (irc_cmm_ins.g_communication_message_id_i is not null) Then
198: --
199: -- Verify registered primary key values not already in use
200: --
201: Open C_Sel2;

Line 217: irc_cmm_ins.g_communication_message_id_i;

213: --
214: -- Use registered key values and clear globals
215: --
216: p_rec.communication_message_id :=
217: irc_cmm_ins.g_communication_message_id_i;
218: irc_cmm_ins.g_communication_message_id_i := null;
219: Else
220: --
221: -- No registerd key values, so select the next sequence number

Line 218: irc_cmm_ins.g_communication_message_id_i := null;

214: -- Use registered key values and clear globals
215: --
216: p_rec.communication_message_id :=
217: irc_cmm_ins.g_communication_message_id_i;
218: irc_cmm_ins.g_communication_message_id_i := null;
219: Else
220: --
221: -- No registerd key values, so select the next sequence number
222: --

Line 343: irc_cmm_ins.pre_insert(p_rec);

339: hr_multi_message.end_validation_set;
340: --
341: -- Call the supporting pre-insert operation
342: --
343: irc_cmm_ins.pre_insert(p_rec);
344: --
345: -- Insert the row
346: --
347: irc_cmm_ins.insert_dml(p_rec);

Line 347: irc_cmm_ins.insert_dml(p_rec);

343: irc_cmm_ins.pre_insert(p_rec);
344: --
345: -- Insert the row
346: --
347: irc_cmm_ins.insert_dml(p_rec);
348: --
349: -- Call the supporting post-insert operation
350: --
351: irc_cmm_ins.post_insert

Line 351: irc_cmm_ins.post_insert

347: irc_cmm_ins.insert_dml(p_rec);
348: --
349: -- Call the supporting post-insert operation
350: --
351: irc_cmm_ins.post_insert
352: (p_effective_date
353: ,p_rec
354: );
355: --

Line 409: irc_cmm_ins.ins

405: --
406: -- Having converted the arguments into the irc_cmm_rec
407: -- plsql record structure we call the corresponding record business process.
408: --
409: irc_cmm_ins.ins
410: (p_effective_date
411: ,l_rec
412: );
413: --

Line 423: end irc_cmm_ins;

419: --
420: hr_utility.set_location(' Leaving:'||l_proc, 10);
421: End ins;
422: --
423: end irc_cmm_ins;