DBA Data[Home] [Help]

APPS.IRC_CMP_INS dependencies on IRC_CMP_INS

Line 1: Package Body irc_cmp_ins as

1: Package Body irc_cmp_ins as
2: /* $Header: ircmprhi.pkb 120.0 2007/11/19 11:38:55 sethanga noship $ */
3: --
4: -- ----------------------------------------------------------------------------
5: -- | Private Global Definitions |

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

4: -- ----------------------------------------------------------------------------
5: -- | Private Global Definitions |
6: -- ----------------------------------------------------------------------------
7: --
8: g_package varchar2(33) := ' irc_cmp_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_cmp_ins.g_communication_property_id_i := p_communication_property_id;

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

Line 227: irc_cmp_ins.g_communication_property_id_i;

223: Cursor C_Sel2 is
224: Select null
225: from irc_comm_properties
226: where communication_property_id =
227: irc_cmp_ins.g_communication_property_id_i;
228: --
229: l_proc varchar2(72) := g_package||'pre_insert';
230: l_exists varchar2(1);
231: --

Line 235: If (irc_cmp_ins.g_communication_property_id_i is not null) Then

231: --
232: Begin
233: hr_utility.set_location('Entering:'||l_proc, 5);
234: --
235: If (irc_cmp_ins.g_communication_property_id_i is not null) Then
236: --
237: -- Verify registered primary key values not already in use
238: --
239: Open C_Sel2;

Line 255: irc_cmp_ins.g_communication_property_id_i;

251: --
252: -- Use registered key values and clear globals
253: --
254: p_rec.communication_property_id :=
255: irc_cmp_ins.g_communication_property_id_i;
256: irc_cmp_ins.g_communication_property_id_i := null;
257: Else
258: --
259: -- No registerd key values, so select the next sequence number

Line 256: irc_cmp_ins.g_communication_property_id_i := null;

252: -- Use registered key values and clear globals
253: --
254: p_rec.communication_property_id :=
255: irc_cmp_ins.g_communication_property_id_i;
256: irc_cmp_ins.g_communication_property_id_i := null;
257: Else
258: --
259: -- No registerd key values, so select the next sequence number
260: --

Line 419: irc_cmp_ins.pre_insert(p_rec);

415: hr_multi_message.end_validation_set;
416: --
417: -- Call the supporting pre-insert operation
418: --
419: irc_cmp_ins.pre_insert(p_rec);
420: --
421: -- Insert the row
422: --
423: irc_cmp_ins.insert_dml(p_rec);

Line 423: irc_cmp_ins.insert_dml(p_rec);

419: irc_cmp_ins.pre_insert(p_rec);
420: --
421: -- Insert the row
422: --
423: irc_cmp_ins.insert_dml(p_rec);
424: --
425: -- Call the supporting post-insert operation
426: --
427: -- irc_cmp_ins.post_insert

Line 427: -- irc_cmp_ins.post_insert

423: irc_cmp_ins.insert_dml(p_rec);
424: --
425: -- Call the supporting post-insert operation
426: --
427: -- irc_cmp_ins.post_insert
428: -- (p_effective_date
429: -- ,p_rec
430: -- );
431: --

Line 523: irc_cmp_ins.ins

519: --
520: -- Having converted the arguments into the irc_cmp_rec
521: -- plsql record structure we call the corresponding record business process.
522: --
523: irc_cmp_ins.ins
524: (p_effective_date
525: ,l_rec
526: );
527: --

Line 537: end irc_cmp_ins;

533: --
534: hr_utility.set_location(' Leaving:'||l_proc, 10);
535: End ins;
536: --
537: end irc_cmp_ins;