DBA Data[Home] [Help]

APPS.IRC_IPC_INS dependencies on IRC_IPC_INS

Line 1: Package Body irc_ipc_ins as

1: Package Body irc_ipc_ins as
2: /* $Header: iripcrhi.pkb 120.0 2005/07/26 15:08:54 mbocutt noship $ */
3: --
4: -- ----------------------------------------------------------------------------
5: -- | Private Global Definitions |

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

4: -- ----------------------------------------------------------------------------
5: -- | Private Global Definitions |
6: -- ----------------------------------------------------------------------------
7: --
8: g_package varchar2(33) := ' irc_ipc_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_ipc_ins.g_posting_content_id_i := p_posting_content_id;

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

Line 315: irc_ipc_ins.g_posting_content_id_i;

311: Cursor C_Sel2 is
312: Select null
313: from irc_posting_contents
314: where posting_content_id =
315: irc_ipc_ins.g_posting_content_id_i;
316: --
317: l_proc varchar2(72) := g_package||'pre_insert';
318: l_exists varchar2(1);
319: --

Line 323: If (irc_ipc_ins.g_posting_content_id_i is not null) Then

319: --
320: Begin
321: hr_utility.set_location('Entering:'||l_proc, 5);
322: --
323: If (irc_ipc_ins.g_posting_content_id_i is not null) Then
324: --
325: -- Verify registered primary key values not already in use
326: --
327: Open C_Sel2;

Line 343: irc_ipc_ins.g_posting_content_id_i;

339: --
340: -- Use registered key values and clear globals
341: --
342: p_rec.posting_content_id :=
343: irc_ipc_ins.g_posting_content_id_i;
344: irc_ipc_ins.g_posting_content_id_i := null;
345: Else
346: --
347: -- No registerd key values, so select the next sequence number

Line 344: irc_ipc_ins.g_posting_content_id_i := null;

340: -- Use registered key values and clear globals
341: --
342: p_rec.posting_content_id :=
343: irc_ipc_ins.g_posting_content_id_i;
344: irc_ipc_ins.g_posting_content_id_i := null;
345: Else
346: --
347: -- No registerd key values, so select the next sequence number
348: --

Line 584: irc_ipc_ins.pre_insert(p_rec);

580: );
581: --
582: -- Call the supporting pre-insert operation
583: --
584: irc_ipc_ins.pre_insert(p_rec);
585: --
586: -- Insert the row
587: --
588: irc_ipc_ins.insert_dml(p_rec);

Line 588: irc_ipc_ins.insert_dml(p_rec);

584: irc_ipc_ins.pre_insert(p_rec);
585: --
586: -- Insert the row
587: --
588: irc_ipc_ins.insert_dml(p_rec);
589: --
590: -- Call the supporting post-insert operation
591: --
592: irc_ipc_ins.post_insert

Line 592: irc_ipc_ins.post_insert

588: irc_ipc_ins.insert_dml(p_rec);
589: --
590: -- Call the supporting post-insert operation
591: --
592: irc_ipc_ins.post_insert
593: (p_rec
594: );
595: --
596: hr_utility.set_location('Leaving:'||l_proc, 20);

Line 767: irc_ipc_ins.ins

763: --
764: -- Having converted the arguments into the irc_ipc_rec
765: -- plsql record structure we call the corresponding record business process.
766: --
767: irc_ipc_ins.ins
768: (l_rec
769: );
770: --
771: -- As the primary key argument(s)

Line 780: end irc_ipc_ins;

776: --
777: hr_utility.set_location(' Leaving:'||l_proc, 10);
778: End ins;
779: --
780: end irc_ipc_ins;