DBA Data[Home] [Help]

APPS.PER_PAC_INS dependencies on PER_PAC_INS

Line 1: Package Body per_pac_ins as

1: Package Body per_pac_ins as
2: /* $Header: pepacrhi.pkb 120.3 2006/10/19 07:29:26 sturlapa noship $ */
3: --
4: -- ----------------------------------------------------------------------------
5: -- | Private Global Definitions |

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

4: -- ----------------------------------------------------------------------------
5: -- | Private Global Definitions |
6: -- ----------------------------------------------------------------------------
7: --
8: g_package varchar2(33) := ' per_pac_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 27: per_pac_ins.g_allocated_checklist_id_i := p_allocated_checklist_id;

23: --
24: Begin
25: hr_utility.set_location('Entering:'||l_proc, 10);
26: --
27: per_pac_ins.g_allocated_checklist_id_i := p_allocated_checklist_id;
28: --
29: hr_utility.set_location(' Leaving:'||l_proc, 20);
30: End set_base_key_value;
31: --

Line 266: per_pac_ins.g_allocated_checklist_id_i;

262: Cursor C_Sel2 is
263: Select null
264: from per_allocated_checklists
265: where allocated_checklist_id =
266: per_pac_ins.g_allocated_checklist_id_i;
267: --
268: l_proc varchar2(72) := g_package||'pre_insert';
269: l_exists varchar2(1);
270: --

Line 274: If (per_pac_ins.g_allocated_checklist_id_i is not null) Then

270: --
271: Begin
272: hr_utility.set_location('Entering:'||l_proc, 5);
273: --
274: If (per_pac_ins.g_allocated_checklist_id_i is not null) Then
275: --
276: -- Verify registered primary key values not already in use
277: --
278: Open C_Sel2;

Line 294: per_pac_ins.g_allocated_checklist_id_i;

290: --
291: -- Use registered key values and clear globals
292: --
293: p_rec.allocated_checklist_id :=
294: per_pac_ins.g_allocated_checklist_id_i;
295: per_pac_ins.g_allocated_checklist_id_i := null;
296: Else
297: --
298: -- No registerd key values, so select the next sequence number

Line 295: per_pac_ins.g_allocated_checklist_id_i := null;

291: -- Use registered key values and clear globals
292: --
293: p_rec.allocated_checklist_id :=
294: per_pac_ins.g_allocated_checklist_id_i;
295: per_pac_ins.g_allocated_checklist_id_i := null;
296: Else
297: --
298: -- No registerd key values, so select the next sequence number
299: --

Line 496: per_pac_ins.pre_insert(p_rec);

492: hr_multi_message.end_validation_set;
493: --
494: -- Call the supporting pre-insert operation
495: --
496: per_pac_ins.pre_insert(p_rec);
497: --
498: -- Insert the row
499: --
500: per_pac_ins.insert_dml(p_rec);

Line 500: per_pac_ins.insert_dml(p_rec);

496: per_pac_ins.pre_insert(p_rec);
497: --
498: -- Insert the row
499: --
500: per_pac_ins.insert_dml(p_rec);
501: --
502: -- Call the supporting post-insert operation
503: --
504: per_pac_ins.post_insert

Line 504: per_pac_ins.post_insert

500: per_pac_ins.insert_dml(p_rec);
501: --
502: -- Call the supporting post-insert operation
503: --
504: per_pac_ins.post_insert
505: (p_effective_date
506: ,p_rec
507: );
508: --

Line 638: per_pac_ins.ins

634: --
635: -- Having converted the arguments into the per_pac_rec
636: -- plsql record structure we call the corresponding record business process.
637: --
638: per_pac_ins.ins
639: (p_effective_date
640: ,l_rec
641: );
642: --

Line 652: end per_pac_ins;

648: --
649: hr_utility.set_location(' Leaving:'||l_proc, 10);
650: End ins;
651: --
652: end per_pac_ins;