DBA Data[Home] [Help]

APPS.IRC_INP_INS dependencies on IRC_INP_INS

Line 1: Package Body irc_inp_ins as

1: Package Body irc_inp_ins as
2: /* $Header: irinprhi.pkb 120.2.12020000.3 2013/02/14 06:09:16 nitnaras ship $ */
3: --
4: -- ----------------------------------------------------------------------------
5: -- | Private Global Definitions |

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

4: -- ----------------------------------------------------------------------------
5: -- | Private Global Definitions |
6: -- ----------------------------------------------------------------------------
7: --
8: g_package varchar2(33) := ' irc_inp_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_inp_ins.g_notification_preference_id_i := p_notification_preference_id;

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

Line 251: where notification_preference_id = irc_inp_ins.g_notification_preference_id_i;

247: cursor c1 is select irc_notification_prefs_s.nextval from sys.dual;
248: --
249: cursor c2 is
250: select null from irc_notification_preferences
251: where notification_preference_id = irc_inp_ins.g_notification_preference_id_i;
252: --
253: l_proc varchar2(72) := g_package||'pre_insert';
254: l_exists varchar2(1);
255: --

Line 259: If (irc_inp_ins.g_notification_preference_id_i is not null) Then

255: --
256: Begin
257: hr_utility.set_location('Entering:'||l_proc, 5);
258: --
259: If (irc_inp_ins.g_notification_preference_id_i is not null) Then
260:
261: open c2;
262: fetch c2 into l_exists;
263: if c2%found then

Line 274: irc_inp_ins.g_notification_preference_id_i;

270: --
271: -- Use registered key values and clear globals
272: --
273: p_rec.notification_preference_id :=
274: irc_inp_ins.g_notification_preference_id_i;
275: irc_inp_ins.g_notification_preference_id_i := null;
276: --
277: else
278: open c1;

Line 275: irc_inp_ins.g_notification_preference_id_i := null;

271: -- Use registered key values and clear globals
272: --
273: p_rec.notification_preference_id :=
274: irc_inp_ins.g_notification_preference_id_i;
275: irc_inp_ins.g_notification_preference_id_i := null;
276: --
277: else
278: open c1;
279: fetch c1 into p_rec.notification_preference_id;

Line 455: irc_inp_ins.pre_insert(p_rec);

451: hr_multi_message.end_validation_set;
452: --
453: -- Call the supporting pre-insert operation
454: --
455: irc_inp_ins.pre_insert(p_rec);
456: --
457: -- Insert the row
458: --
459: irc_inp_ins.insert_dml(p_rec);

Line 459: irc_inp_ins.insert_dml(p_rec);

455: irc_inp_ins.pre_insert(p_rec);
456: --
457: -- Insert the row
458: --
459: irc_inp_ins.insert_dml(p_rec);
460: --
461: -- Call the supporting post-insert operation
462: --
463: irc_inp_ins.post_insert

Line 463: irc_inp_ins.post_insert

459: irc_inp_ins.insert_dml(p_rec);
460: --
461: -- Call the supporting post-insert operation
462: --
463: irc_inp_ins.post_insert
464: (p_effective_date
465: ,p_rec
466: );
467: --

Line 582: irc_inp_ins.ins

578: --
579: -- Having converted the arguments into the irc_inp_rec
580: -- plsql record structure we call the corresponding record business process.
581: --
582: irc_inp_ins.ins
583: (p_effective_date
584: ,l_rec
585: );
586: --

Line 596: end irc_inp_ins;

592: --
593: hr_utility.set_location(' Leaving:'||l_proc, 10);
594: End ins;
595: --
596: end irc_inp_ins;