DBA Data[Home] [Help]

APPS.IRC_APA_INS dependencies on IRC_APA_INS

Line 1: Package Body irc_apa_ins as

1: Package Body irc_apa_ins as
2: /* $Header: iraparhi.pkb 120.0.12000000.1 2007/03/23 12:12:46 vboggava noship $ */
3: --
4: -- ----------------------------------------------------------------------------
5: -- | Private Global Definitions |

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

4: -- ----------------------------------------------------------------------------
5: -- | Private Global Definitions |
6: -- ----------------------------------------------------------------------------
7: --
8: g_package varchar2(33) := ' irc_apa_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_apa_ins.g_apl_profile_access_id_i := p_apl_profile_access_id;

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

Line 171: irc_apa_ins.g_apl_profile_access_id_i;

167: Cursor C_Sel2 is
168: Select null
169: from irc_apl_profile_access
170: where apl_profile_access_id =
171: irc_apa_ins.g_apl_profile_access_id_i;
172: --
173: l_proc varchar2(72) := g_package||'pre_insert';
174: l_exists varchar2(1);
175: --

Line 179: If (irc_apa_ins.g_apl_profile_access_id_i is not null) Then

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

Line 199: irc_apa_ins.g_apl_profile_access_id_i;

195: --
196: -- Use registered key values and clear globals
197: --
198: p_rec.apl_profile_access_id :=
199: irc_apa_ins.g_apl_profile_access_id_i;
200: irc_apa_ins.g_apl_profile_access_id_i := null;
201: Else
202: --
203: -- No registerd key values, so select the next sequence number

Line 200: irc_apa_ins.g_apl_profile_access_id_i := null;

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

Line 303: irc_apa_ins.pre_insert(p_rec);

299: hr_multi_message.end_validation_set;
300: --
301: -- Call the supporting pre-insert operation
302: --
303: irc_apa_ins.pre_insert(p_rec);
304: --
305: -- Insert the row
306: --
307: irc_apa_ins.insert_dml(p_rec);

Line 307: irc_apa_ins.insert_dml(p_rec);

303: irc_apa_ins.pre_insert(p_rec);
304: --
305: -- Insert the row
306: --
307: irc_apa_ins.insert_dml(p_rec);
308: --
309: -- Call the supporting post-insert operation
310: --
311: irc_apa_ins.post_insert

Line 311: irc_apa_ins.post_insert

307: irc_apa_ins.insert_dml(p_rec);
308: --
309: -- Call the supporting post-insert operation
310: --
311: irc_apa_ins.post_insert
312: (p_rec
313: );
314: --
315: -- Call to raise any errors on multi-message list

Line 349: irc_apa_ins.ins

345: --
346: -- Having converted the arguments into the irc_apa_rec
347: -- plsql record structure we call the corresponding record business process.
348: --
349: irc_apa_ins.ins
350: (l_rec
351: );
352: --
353: -- As the primary key argument(s)

Line 362: end irc_apa_ins;

358: --
359: hr_utility.set_location(' Leaving:'||l_proc, 10);
360: End ins;
361: --
362: end irc_apa_ins;