DBA Data[Home] [Help]

APPS.PER_CKL_INS dependencies on PER_CKL_INS

Line 1: Package Body per_ckl_ins as

1: Package Body per_ckl_ins as
2: /* $Header: pecklrhi.pkb 120.2 2005/11/15 09:02 lsilveir noship $ */
3: --
4: -- ----------------------------------------------------------------------------
5: -- | Private Global Definitions |

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

4: -- ----------------------------------------------------------------------------
5: -- | Private Global Definitions |
6: -- ----------------------------------------------------------------------------
7: --
8: g_package varchar2(33) := ' per_ckl_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_ckl_ins.g_checklist_id_i := p_checklist_id;

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

Line 263: per_ckl_ins.g_checklist_id_i;

259: Cursor C_Sel2 is
260: Select null
261: from per_checklists
262: where checklist_id =
263: per_ckl_ins.g_checklist_id_i;
264: --
265: l_proc varchar2(72) := g_package||'pre_insert';
266: l_exists varchar2(1);
267: --

Line 271: If (per_ckl_ins.g_checklist_id_i is not null) Then

267: --
268: Begin
269: hr_utility.set_location('Entering:'||l_proc, 5);
270: --
271: If (per_ckl_ins.g_checklist_id_i is not null) Then
272: --
273: -- Verify registered primary key values not already in use
274: --
275: Open C_Sel2;

Line 291: per_ckl_ins.g_checklist_id_i;

287: --
288: -- Use registered key values and clear globals
289: --
290: p_rec.checklist_id :=
291: per_ckl_ins.g_checklist_id_i;
292: per_ckl_ins.g_checklist_id_i := null;
293: Else
294: --
295: -- No registerd key values, so select the next sequence number

Line 292: per_ckl_ins.g_checklist_id_i := null;

288: -- Use registered key values and clear globals
289: --
290: p_rec.checklist_id :=
291: per_ckl_ins.g_checklist_id_i;
292: per_ckl_ins.g_checklist_id_i := null;
293: Else
294: --
295: -- No registerd key values, so select the next sequence number
296: --

Line 491: per_ckl_ins.pre_insert(p_rec);

487: hr_multi_message.end_validation_set;
488: --
489: -- Call the supporting pre-insert operation
490: --
491: per_ckl_ins.pre_insert(p_rec);
492: --
493: -- Insert the row
494: --
495: per_ckl_ins.insert_dml(p_rec);

Line 495: per_ckl_ins.insert_dml(p_rec);

491: per_ckl_ins.pre_insert(p_rec);
492: --
493: -- Insert the row
494: --
495: per_ckl_ins.insert_dml(p_rec);
496: --
497: -- Call the supporting post-insert operation
498: --
499: per_ckl_ins.post_insert

Line 499: per_ckl_ins.post_insert

495: per_ckl_ins.insert_dml(p_rec);
496: --
497: -- Call the supporting post-insert operation
498: --
499: per_ckl_ins.post_insert
500: (p_effective_date
501: ,p_rec
502: );
503: --

Line 631: per_ckl_ins.ins

627: --
628: -- Having converted the arguments into the per_ckl_rec
629: -- plsql record structure we call the corresponding record business process.
630: --
631: per_ckl_ins.ins
632: (p_effective_date
633: ,l_rec
634: );
635: --

Line 645: end per_ckl_ins;

641: --
642: hr_utility.set_location(' Leaving:'||l_proc, 10);
643: End ins;
644: --
645: end per_ckl_ins;