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.5 2011/02/16 12:43:23 vmummidi noship $ */
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 186: irc_ias_ins.g_assignment_status_id_i;

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

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

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

Line 214: irc_ias_ins.g_assignment_status_id_i;

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

Line 215: irc_ias_ins.g_assignment_status_id_i := null;

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

Line 326: irc_ias_ins.pre_insert(p_rec);

322: -- Call to raise any errors on multi-message list
323: hr_multi_message.end_validation_set;
324: -- Call the supporting pre-insert operation
325: --
326: irc_ias_ins.pre_insert(p_rec);
327: --
328: -- Insert the row
329: --
330: irc_ias_ins.insert_dml(p_rec);

Line 330: irc_ias_ins.insert_dml(p_rec);

326: irc_ias_ins.pre_insert(p_rec);
327: --
328: -- Insert the row
329: --
330: irc_ias_ins.insert_dml(p_rec);
331: --
332: -- Call the supporting post-insert operation
333: --
334: irc_ias_ins.post_insert (p_rec );

Line 334: irc_ias_ins.post_insert (p_rec );

330: irc_ias_ins.insert_dml(p_rec);
331: --
332: -- Call the supporting post-insert operation
333: --
334: irc_ias_ins.post_insert (p_rec );
335: --
336: -- Call to raise any errors on multi-message list
337: hr_multi_message.end_validation_set;
338: hr_utility.set_location('Leaving:'||l_proc, 20);

Line 380: irc_ias_ins.ins(l_rec );

376: --
377: -- Having converted the arguments into the irc_ias_rec
378: -- plsql record structure we call the corresponding record business process.
379: --
380: irc_ias_ins.ins(l_rec );
381: --
382: -- As the primary key argument(s)
383: -- are specified as an OUT's we must set these values.
384: --

Line 391: end irc_ias_ins;

387: --
388: hr_utility.set_location(' Leaving:'||l_proc, 10);
389: End ins;
390: --
391: end irc_ias_ins;