DBA Data[Home] [Help]

APPS.PER_CNI_INS dependencies on PER_CNI_INS

Line 1: Package Body per_cni_ins as

1: Package Body per_cni_ins as
2: /* $Header: pecnirhi.pkb 120.0 2005/05/31 06:49 appldev noship $ */
3: --
4: -- ----------------------------------------------------------------------------
5: -- | Private Global Definitions |

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

4: -- ----------------------------------------------------------------------------
5: -- | Private Global Definitions |
6: -- ----------------------------------------------------------------------------
7: --
8: g_package varchar2(33) := ' per_cni_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: per_cni_ins.g_config_information_id_i := p_config_information_id;

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

Line 236: per_cni_ins.g_config_information_id_i;

232: Cursor C_Sel2 is
233: Select null
234: from per_ri_config_information
235: where config_information_id =
236: per_cni_ins.g_config_information_id_i;
237: --
238: l_proc varchar2(72) := g_package||'pre_insert';
239: l_exists varchar2(1);
240: --

Line 244: If (per_cni_ins.g_config_information_id_i is not null) Then

240: --
241: Begin
242: hr_utility.set_location('Entering:'||l_proc, 5);
243: --
244: If (per_cni_ins.g_config_information_id_i is not null) Then
245: --
246: -- Verify registered primary key values not already in use
247: --
248: Open C_Sel2;

Line 264: per_cni_ins.g_config_information_id_i;

260: --
261: -- Use registered key values and clear globals
262: --
263: p_rec.config_information_id :=
264: per_cni_ins.g_config_information_id_i;
265: per_cni_ins.g_config_information_id_i := null;
266: Else
267: --
268: -- No registerd key values, so select the next sequence number

Line 265: per_cni_ins.g_config_information_id_i := null;

261: -- Use registered key values and clear globals
262: --
263: p_rec.config_information_id :=
264: per_cni_ins.g_config_information_id_i;
265: per_cni_ins.g_config_information_id_i := null;
266: Else
267: --
268: -- No registerd key values, so select the next sequence number
269: --

Line 434: per_cni_ins.pre_insert(p_rec);

430: hr_multi_message.end_validation_set;
431: --
432: -- Call the supporting pre-insert operation
433: --
434: per_cni_ins.pre_insert(p_rec);
435: --
436: -- Insert the row
437: --
438: per_cni_ins.insert_dml(p_rec);

Line 438: per_cni_ins.insert_dml(p_rec);

434: per_cni_ins.pre_insert(p_rec);
435: --
436: -- Insert the row
437: --
438: per_cni_ins.insert_dml(p_rec);
439: --
440: -- Call the supporting post-insert operation
441: --
442: per_cni_ins.post_insert

Line 442: per_cni_ins.post_insert

438: per_cni_ins.insert_dml(p_rec);
439: --
440: -- Call the supporting post-insert operation
441: --
442: per_cni_ins.post_insert
443: (p_effective_date
444: ,p_rec
445: );
446: --

Line 546: per_cni_ins.ins

542: --
543: -- Having converted the arguments into the per_cni_rec
544: -- plsql record structure we call the corresponding record business process.
545: --
546: per_cni_ins.ins
547: (p_effective_date
548: ,l_rec
549: );
550: --

Line 561: end per_cni_ins;

557: --
558: hr_utility.set_location(' Leaving:'||l_proc, 10);
559: End ins;
560: --
561: end per_cni_ins;