DBA Data[Home] [Help]

APPS.IRC_IDP_INS dependencies on IRC_IDP_INS

Line 1: Package Body irc_idp_ins as

1: Package Body irc_idp_ins as
2: /* $Header: iridprhi.pkb 120.0.12010000.2 2008/08/05 10:49:00 ubhat ship $ */
3: --
4: -- ----------------------------------------------------------------------------
5: -- | Private Global Definitions |

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

4: -- ----------------------------------------------------------------------------
5: -- | Private Global Definitions |
6: -- ----------------------------------------------------------------------------
7: --
8: g_package varchar2(33) := ' irc_idp_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_idp_ins.g_default_posting_id_i := p_default_posting_id;

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

Line 241: irc_idp_ins.g_default_posting_id_i;

237: Cursor C_Sel2 is
238: Select null
239: from irc_default_postings
240: where default_posting_id =
241: irc_idp_ins.g_default_posting_id_i;
242: --
243: l_proc varchar2(72) := g_package||'pre_insert';
244: l_exists varchar2(1);
245: --

Line 249: If (irc_idp_ins.g_default_posting_id_i is not null) Then

245: --
246: Begin
247: hr_utility.set_location('Entering:'||l_proc, 5);
248: --
249: If (irc_idp_ins.g_default_posting_id_i is not null) Then
250: --
251: -- Verify registered primary key values not already in use
252: --
253: Open C_Sel2;

Line 269: irc_idp_ins.g_default_posting_id_i;

265: --
266: -- Use registered key values and clear globals
267: --
268: p_rec.default_posting_id :=
269: irc_idp_ins.g_default_posting_id_i;
270: irc_idp_ins.g_default_posting_id_i := null;
271: Else
272: --
273: -- No registerd key values, so select the next sequence number

Line 270: irc_idp_ins.g_default_posting_id_i := null;

266: -- Use registered key values and clear globals
267: --
268: p_rec.default_posting_id :=
269: irc_idp_ins.g_default_posting_id_i;
270: irc_idp_ins.g_default_posting_id_i := null;
271: Else
272: --
273: -- No registerd key values, so select the next sequence number
274: --

Line 436: irc_idp_ins.pre_insert(p_rec);

432: );
433: --
434: -- Call the supporting pre-insert operation
435: --
436: irc_idp_ins.pre_insert(p_rec);
437: --
438: -- Insert the row
439: --
440: irc_idp_ins.insert_dml(p_rec);

Line 440: irc_idp_ins.insert_dml(p_rec);

436: irc_idp_ins.pre_insert(p_rec);
437: --
438: -- Insert the row
439: --
440: irc_idp_ins.insert_dml(p_rec);
441: --
442: -- Call the supporting post-insert operation
443: --
444: irc_idp_ins.post_insert

Line 444: irc_idp_ins.post_insert

440: irc_idp_ins.insert_dml(p_rec);
441: --
442: -- Call the supporting post-insert operation
443: --
444: irc_idp_ins.post_insert
445: (p_rec
446: );
447: --
448: hr_utility.set_location('Leaving:'||l_proc, 20);

Line 545: irc_idp_ins.ins

541: --
542: -- Having converted the arguments into the irc_idp_rec
543: -- plsql record structure we call the corresponding record business process.
544: --
545: irc_idp_ins.ins
546: (l_rec
547: );
548: --
549: -- As the primary key argument(s)

Line 558: end irc_idp_ins;

554: --
555: hr_utility.set_location(' Leaving:'||l_proc, 10);
556: End ins;
557: --
558: end irc_idp_ins;