DBA Data[Home] [Help]

APPS.HXC_ATC_INS dependencies on HXC_ATC_INS

Line 1: Package Body hxc_atc_ins as

1: Package Body hxc_atc_ins as
2: /* $Header: hxcatcrhi.pkb 120.2 2005/09/23 08:06:56 sechandr noship $ */
3: --
4: -- ----------------------------------------------------------------------------
5: -- | Private Global Definitions |

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

4: -- ----------------------------------------------------------------------------
5: -- | Private Global Definitions |
6: -- ----------------------------------------------------------------------------
7: --
8: g_package varchar2(33) := ' hxc_atc_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_atc_ins.g_alias_type_component_id_i := p_alias_type_component_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_atc_ins.g_alias_type_component_id_i := p_alias_type_component_id;
32: --
33: if g_debug then
34: hr_utility.set_location(' Leaving:'||l_proc, 20);
35: end if;

Line 200: hxc_atc_ins.g_alias_type_component_id_i;

196: Cursor C_Sel2 is
197: Select null
198: from hxc_alias_type_components
199: where alias_type_component_id =
200: hxc_atc_ins.g_alias_type_component_id_i;
201: --
202: l_proc varchar2(72);
203: l_exists varchar2(1);
204: --

Line 211: If (hxc_atc_ins.g_alias_type_component_id_i is not null) Then

207: l_proc := g_package||'pre_insert';
208: hr_utility.set_location('Entering:'||l_proc, 5);
209: end if;
210: --
211: If (hxc_atc_ins.g_alias_type_component_id_i is not null) Then
212: --
213: -- Verify registered primary key values not already in use
214: --
215: Open C_Sel2;

Line 231: hxc_atc_ins.g_alias_type_component_id_i;

227: --
228: -- Use registered key values and clear globals
229: --
230: p_rec.alias_type_component_id :=
231: hxc_atc_ins.g_alias_type_component_id_i;
232: hxc_atc_ins.g_alias_type_component_id_i := null;
233: Else
234: --
235: -- No registerd key values, so select the next sequence number

Line 232: hxc_atc_ins.g_alias_type_component_id_i := null;

228: -- Use registered key values and clear globals
229: --
230: p_rec.alias_type_component_id :=
231: hxc_atc_ins.g_alias_type_component_id_i;
232: hxc_atc_ins.g_alias_type_component_id_i := null;
233: Else
234: --
235: -- No registerd key values, so select the next sequence number
236: --

Line 354: hxc_atc_ins.pre_insert(p_rec);

350: hr_multi_message.end_validation_set;
351: --
352: -- Call the supporting pre-insert operation
353: --
354: hxc_atc_ins.pre_insert(p_rec);
355: --
356: -- Insert the row
357: --
358: hxc_atc_ins.insert_dml(p_rec);

Line 358: hxc_atc_ins.insert_dml(p_rec);

354: hxc_atc_ins.pre_insert(p_rec);
355: --
356: -- Insert the row
357: --
358: hxc_atc_ins.insert_dml(p_rec);
359: --
360: -- Call the supporting post-insert operation
361: --
362: hxc_atc_ins.post_insert

Line 362: hxc_atc_ins.post_insert

358: hxc_atc_ins.insert_dml(p_rec);
359: --
360: -- Call the supporting post-insert operation
361: --
362: hxc_atc_ins.post_insert
363: (p_rec
364: );
365: --
366: -- Call to raise any errors on multi-message list

Line 412: hxc_atc_ins.ins

408: --
409: -- Having converted the arguments into the hxc_atc_rec
410: -- plsql record structure we call the corresponding record business process.
411: --
412: hxc_atc_ins.ins
413: (l_rec
414: );
415: --
416: -- As the primary key argument(s)

Line 427: end hxc_atc_ins;

423: hr_utility.set_location(' Leaving:'||l_proc, 10);
424: end if;
425: End ins;
426: --
427: end hxc_atc_ins;