DBA Data[Home] [Help]

APPS.HXC_ERR_INS dependencies on HXC_ERR_INS

Line 1: Package Body hxc_err_ins as

1: Package Body hxc_err_ins as
2: /* $Header: hxcerrrhi.pkb 120.2 2005/09/23 08:08:12 sechandr noship $ */
3: --
4: -- ----------------------------------------------------------------------------
5: -- | Private Global Definitions |

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

4: -- ----------------------------------------------------------------------------
5: -- | Private Global Definitions |
6: -- ----------------------------------------------------------------------------
7: --
8: g_package varchar2(33) := ' hxc_err_ins.'; -- Global package name
9: g_debug boolean := hr_utility.debug_enabled;
10: --
11: -- The following global variables are only to be used by
12: -- the set_base_key_value and pre_insert procedures.

Line 31: hxc_err_ins.g_error_id_i := p_error_id;

27: l_proc := g_package||'set_base_key_value';
28: hr_utility.set_location('Entering:'||l_proc, 10);
29: end if;
30: --
31: hxc_err_ins.g_error_id_i := p_error_id;
32: --
33: if g_debug then
34: hr_utility.set_location(' Leaving:'||l_proc, 20);
35: end if;

Line 205: hxc_err_ins.g_error_id_i;

201: Cursor C_Sel2 is
202: Select null
203: from hxc_errors
204: where error_id =
205: hxc_err_ins.g_error_id_i;
206: --
207: l_proc varchar2(72);
208: l_exists varchar2(1);
209: --

Line 216: If (hxc_err_ins.g_error_id_i is not null) Then

212: l_proc := g_package||'pre_insert';
213: hr_utility.set_location('Entering:'||l_proc, 5);
214: end if;
215: --
216: If (hxc_err_ins.g_error_id_i is not null) Then
217: --
218: -- Verify registered primary key values not already in use
219: --
220: Open C_Sel2;

Line 236: hxc_err_ins.g_error_id_i;

232: --
233: -- Use registered key values and clear globals
234: --
235: p_rec.error_id :=
236: hxc_err_ins.g_error_id_i;
237: hxc_err_ins.g_error_id_i := null;
238: Else
239: --
240: -- No registerd key values, so select the next sequence number

Line 237: hxc_err_ins.g_error_id_i := null;

233: -- Use registered key values and clear globals
234: --
235: p_rec.error_id :=
236: hxc_err_ins.g_error_id_i;
237: hxc_err_ins.g_error_id_i := null;
238: Else
239: --
240: -- No registerd key values, so select the next sequence number
241: --

Line 372: hxc_err_ins.pre_insert(p_rec);

368: hr_multi_message.end_validation_set;
369: --
370: -- Call the supporting pre-insert operation
371: --
372: hxc_err_ins.pre_insert(p_rec);
373: --
374: -- Insert the row
375: --
376: hxc_err_ins.insert_dml(p_rec);

Line 376: hxc_err_ins.insert_dml(p_rec);

372: hxc_err_ins.pre_insert(p_rec);
373: --
374: -- Insert the row
375: --
376: hxc_err_ins.insert_dml(p_rec);
377: --
378: -- Call the supporting post-insert operation
379: --
380: hxc_err_ins.post_insert

Line 380: hxc_err_ins.post_insert

376: hxc_err_ins.insert_dml(p_rec);
377: --
378: -- Call the supporting post-insert operation
379: --
380: hxc_err_ins.post_insert
381: (p_rec
382: );
383: --
384: -- Call to raise any errors on multi-message list

Line 447: hxc_err_ins.ins

443: --
444: -- Having converted the arguments into the hxc_err_rec
445: -- plsql record structure we call the corresponding record business process.
446: --
447: hxc_err_ins.ins
448: (l_rec
449: );
450: --
451: -- As the primary key argument(s)

Line 462: end hxc_err_ins;

458: hr_utility.set_location(' Leaving:'||l_proc, 10);
459: end if;
460: End ins;
461: --
462: end hxc_err_ins;