DBA Data[Home] [Help]

APPS.IRC_APS_INS dependencies on IRC_APS_INS

Line 1: Package Body irc_aps_ins as

1: Package Body irc_aps_ins as
2: /* $Header: irapsrhi.pkb 120.0.12000000.1 2007/03/23 11:45:59 vboggava noship $ */
3: --
4: -- ----------------------------------------------------------------------------
5: -- | Private Global Definitions |

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

4: -- ----------------------------------------------------------------------------
5: -- | Private Global Definitions |
6: -- ----------------------------------------------------------------------------
7: --
8: g_package varchar2(33) := ' irc_aps_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_aps_ins.g_profile_snapshot_id_i := p_profile_snapshot_id;

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

Line 173: irc_aps_ins.g_profile_snapshot_id_i;

169: Cursor C_Sel2 is
170: Select null
171: from irc_apl_profile_snapshots
172: where profile_snapshot_id =
173: irc_aps_ins.g_profile_snapshot_id_i;
174: --
175: l_proc varchar2(72) := g_package||'pre_insert';
176: l_exists varchar2(1);
177: --

Line 181: If (irc_aps_ins.g_profile_snapshot_id_i is not null) Then

177: --
178: Begin
179: hr_utility.set_location('Entering:'||l_proc, 5);
180: --
181: If (irc_aps_ins.g_profile_snapshot_id_i is not null) Then
182: --
183: -- Verify registered primary key values not already in use
184: --
185: Open C_Sel2;

Line 201: irc_aps_ins.g_profile_snapshot_id_i;

197: --
198: -- Use registered key values and clear globals
199: --
200: p_rec.profile_snapshot_id :=
201: irc_aps_ins.g_profile_snapshot_id_i;
202: irc_aps_ins.g_profile_snapshot_id_i := null;
203: Else
204: --
205: -- No registerd key values, so select the next sequence number

Line 202: irc_aps_ins.g_profile_snapshot_id_i := null;

198: -- Use registered key values and clear globals
199: --
200: p_rec.profile_snapshot_id :=
201: irc_aps_ins.g_profile_snapshot_id_i;
202: irc_aps_ins.g_profile_snapshot_id_i := null;
203: Else
204: --
205: -- No registerd key values, so select the next sequence number
206: --

Line 310: irc_aps_ins.pre_insert(p_rec);

306: hr_multi_message.end_validation_set;
307: --
308: -- Call the supporting pre-insert operation
309: --
310: irc_aps_ins.pre_insert(p_rec);
311: --
312: -- Insert the row
313: --
314: irc_aps_ins.insert_dml(p_rec);

Line 314: irc_aps_ins.insert_dml(p_rec);

310: irc_aps_ins.pre_insert(p_rec);
311: --
312: -- Insert the row
313: --
314: irc_aps_ins.insert_dml(p_rec);
315: --
316: -- Call the supporting post-insert operation
317: --
318: irc_aps_ins.post_insert

Line 318: irc_aps_ins.post_insert

314: irc_aps_ins.insert_dml(p_rec);
315: --
316: -- Call the supporting post-insert operation
317: --
318: irc_aps_ins.post_insert
319: (p_effective_date
320: ,p_rec
321: );
322: --

Line 358: irc_aps_ins.ins

354: --
355: -- Having converted the arguments into the irc_aps_rec
356: -- plsql record structure we call the corresponding record business process.
357: --
358: irc_aps_ins.ins
359: (p_effective_date
360: ,l_rec
361: );
362: --

Line 372: end irc_aps_ins;

368: --
369: hr_utility.set_location(' Leaving:'||l_proc, 10);
370: End ins;
371: --
372: end irc_aps_ins;