DBA Data[Home] [Help]

APPS.IRC_IPD_INS dependencies on IRC_IPD_INS

Line 1: Package Body irc_ipd_ins as

1: Package Body irc_ipd_ins as
2: /* $Header: iripdrhi.pkb 120.0 2005/07/26 15:09:42 mbocutt noship $ */
3: --
4: -- ----------------------------------------------------------------------------
5: -- | Private Global Definitions |

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

4: -- ----------------------------------------------------------------------------
5: -- | Private Global Definitions |
6: -- ----------------------------------------------------------------------------
7: --
8: g_package varchar2(33) := ' irc_ipd_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_ipd_ins.g_pending_data_id_i := p_pending_data_id;

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

Line 277: irc_ipd_ins.g_pending_data_id_i;

273: Cursor C_Sel2 is
274: Select null
275: from irc_pending_data
276: where pending_data_id =
277: irc_ipd_ins.g_pending_data_id_i;
278: --
279: l_proc varchar2(72) := g_package||'pre_insert';
280: l_exists varchar2(1);
281: --

Line 285: If (irc_ipd_ins.g_pending_data_id_i is not null) Then

281: --
282: Begin
283: hr_utility.set_location('Entering:'||l_proc, 5);
284: --
285: If (irc_ipd_ins.g_pending_data_id_i is not null) Then
286: --
287: -- Verify registered primary key values not already in use
288: --
289: Open C_Sel2;

Line 305: irc_ipd_ins.g_pending_data_id_i;

301: --
302: -- Use registered key values and clear globals
303: --
304: p_rec.pending_data_id :=
305: irc_ipd_ins.g_pending_data_id_i;
306: irc_ipd_ins.g_pending_data_id_i := null;
307: Else
308: --
309: -- No registerd key values, so select the next sequence number

Line 306: irc_ipd_ins.g_pending_data_id_i := null;

302: -- Use registered key values and clear globals
303: --
304: p_rec.pending_data_id :=
305: irc_ipd_ins.g_pending_data_id_i;
306: irc_ipd_ins.g_pending_data_id_i := null;
307: Else
308: --
309: -- No registerd key values, so select the next sequence number
310: --

Line 511: irc_ipd_ins.pre_insert(p_rec);

507: hr_multi_message.end_validation_set;
508: --
509: -- Call the supporting pre-insert operation
510: --
511: irc_ipd_ins.pre_insert(p_rec);
512: --
513: -- Insert the row
514: --
515: irc_ipd_ins.insert_dml(p_rec);

Line 515: irc_ipd_ins.insert_dml(p_rec);

511: irc_ipd_ins.pre_insert(p_rec);
512: --
513: -- Insert the row
514: --
515: irc_ipd_ins.insert_dml(p_rec);
516: --
517: -- Call the supporting post-insert operation
518: --
519: irc_ipd_ins.post_insert

Line 519: irc_ipd_ins.post_insert

515: irc_ipd_ins.insert_dml(p_rec);
516: --
517: -- Call the supporting post-insert operation
518: --
519: irc_ipd_ins.post_insert
520: (p_rec
521: );
522: --
523: -- Call to raise any errors on multi-message list

Line 661: irc_ipd_ins.ins

657: --
658: -- Having converted the arguments into the irc_ipd_rec
659: -- plsql record structure we call the corresponding record business process.
660: --
661: irc_ipd_ins.ins
662: (l_rec
663: );
664: --
665: -- As the primary key argument(s)

Line 674: end irc_ipd_ins;

670: --
671: hr_utility.set_location(' Leaving:'||l_proc, 10);
672: End ins;
673: --
674: end irc_ipd_ins;