DBA Data[Home] [Help]

APPS.IRC_IAS_INS dependencies on IRC_IAS_INS

Line 1: Package Body irc_ias_ins as

1: Package Body irc_ias_ins as
2: /* $Header: iriasrhi.pkb 120.0.12010000.3 2008/08/05 10:48:01 ubhat ship $ */
3: --
4: -- ----------------------------------------------------------------------------
5: -- | Private Global Definitions |

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

4: -- ----------------------------------------------------------------------------
5: -- | Private Global Definitions |
6: -- ----------------------------------------------------------------------------
7: --
8: g_package varchar2(33) := ' irc_ias_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_ias_ins.g_assignment_status_id_i := p_assignment_status_id;

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

Line 182: irc_ias_ins.g_assignment_status_id_i;

178: Cursor C_Sel2 is
179: Select null
180: from irc_assignment_statuses
181: where assignment_status_id =
182: irc_ias_ins.g_assignment_status_id_i;
183: --
184: l_proc varchar2(72) := g_package||'pre_insert';
185: l_exists varchar2(1);
186: --

Line 190: If (irc_ias_ins.g_assignment_status_id_i is not null) Then

186: --
187: Begin
188: hr_utility.set_location('Entering:'||l_proc, 5);
189: --
190: If (irc_ias_ins.g_assignment_status_id_i is not null) Then
191: --
192: -- Verify registered primary key values not already in use
193: --
194: Open C_Sel2;

Line 210: irc_ias_ins.g_assignment_status_id_i;

206: --
207: -- Use registered key values and clear globals
208: --
209: p_rec.assignment_status_id :=
210: irc_ias_ins.g_assignment_status_id_i;
211: irc_ias_ins.g_assignment_status_id_i := null;
212: Else
213: --
214: -- No registerd key values, so select the next sequence number

Line 211: irc_ias_ins.g_assignment_status_id_i := null;

207: -- Use registered key values and clear globals
208: --
209: p_rec.assignment_status_id :=
210: irc_ias_ins.g_assignment_status_id_i;
211: irc_ias_ins.g_assignment_status_id_i := null;
212: Else
213: --
214: -- No registerd key values, so select the next sequence number
215: --

Line 318: irc_ias_ins.pre_insert(p_rec);

314: -- Call to raise any errors on multi-message list
315: hr_multi_message.end_validation_set;
316: -- Call the supporting pre-insert operation
317: --
318: irc_ias_ins.pre_insert(p_rec);
319: --
320: -- Insert the row
321: --
322: irc_ias_ins.insert_dml(p_rec);

Line 322: irc_ias_ins.insert_dml(p_rec);

318: irc_ias_ins.pre_insert(p_rec);
319: --
320: -- Insert the row
321: --
322: irc_ias_ins.insert_dml(p_rec);
323: --
324: -- Call the supporting post-insert operation
325: --
326: irc_ias_ins.post_insert (p_rec );

Line 326: irc_ias_ins.post_insert (p_rec );

322: irc_ias_ins.insert_dml(p_rec);
323: --
324: -- Call the supporting post-insert operation
325: --
326: irc_ias_ins.post_insert (p_rec );
327: --
328: -- Call to raise any errors on multi-message list
329: hr_multi_message.end_validation_set;
330: hr_utility.set_location('Leaving:'||l_proc, 20);

Line 368: irc_ias_ins.ins(l_rec );

364: --
365: -- Having converted the arguments into the irc_ias_rec
366: -- plsql record structure we call the corresponding record business process.
367: --
368: irc_ias_ins.ins(l_rec );
369: --
370: -- As the primary key argument(s)
371: -- are specified as an OUT's we must set these values.
372: --

Line 379: end irc_ias_ins;

375: --
376: hr_utility.set_location(' Leaving:'||l_proc, 10);
377: End ins;
378: --
379: end irc_ias_ins;