DBA Data[Home] [Help]

APPS.PER_PSP_INS dependencies on PER_PSP_INS

Line 1: Package Body per_psp_ins as

1: Package Body per_psp_ins as
2: /* $Header: pepsprhi.pkb 115.5 2003/11/17 13:06:07 tpapired noship $ */
3: --
4: -- ----------------------------------------------------------------------------
5: -- | Private Global Definitions |

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

4: -- ----------------------------------------------------------------------------
5: -- | Private Global Definitions |
6: -- ----------------------------------------------------------------------------
7: --
8: g_package varchar2(33) := ' per_psp_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_psp_ins.g_spinal_point_id_i := p_spinal_point_id;

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

Line 247: per_psp_ins.g_spinal_point_id_i;

243: Cursor C_Sel2 is
244: Select null
245: from per_spinal_points
246: where spinal_point_id =
247: per_psp_ins.g_spinal_point_id_i;
248: --
249: l_proc varchar2(72) := g_package||'pre_insert';
250: l_exists varchar2(1);
251: --

Line 255: If (per_psp_ins.g_spinal_point_id_i is not null) Then

251: --
252: Begin
253: hr_utility.set_location('Entering:'||l_proc, 5);
254: --
255: If (per_psp_ins.g_spinal_point_id_i is not null) Then
256: --
257: -- Verify registered primary key values not already in use
258: --
259: Open C_Sel2;

Line 275: per_psp_ins.g_spinal_point_id_i;

271: --
272: -- Use registered key values and clear globals
273: --
274: p_rec.spinal_point_id :=
275: per_psp_ins.g_spinal_point_id_i;
276: per_psp_ins.g_spinal_point_id_i := null;
277: Else
278: --
279: -- No registerd key values, so select the next sequence number

Line 276: per_psp_ins.g_spinal_point_id_i := null;

272: -- Use registered key values and clear globals
273: --
274: p_rec.spinal_point_id :=
275: per_psp_ins.g_spinal_point_id_i;
276: per_psp_ins.g_spinal_point_id_i := null;
277: Else
278: --
279: -- No registerd key values, so select the next sequence number
280: --

Line 459: per_psp_ins.pre_insert(p_rec);

455: hr_multi_message.end_validation_set;
456: --
457: -- Call the supporting pre-insert operation
458: --
459: per_psp_ins.pre_insert(p_rec);
460: --
461: -- Insert the row
462: --
463: per_psp_ins.insert_dml(p_rec);

Line 463: per_psp_ins.insert_dml(p_rec);

459: per_psp_ins.pre_insert(p_rec);
460: --
461: -- Insert the row
462: --
463: per_psp_ins.insert_dml(p_rec);
464: --
465: -- Call the supporting post-insert operation
466: --
467: per_psp_ins.post_insert

Line 467: per_psp_ins.post_insert

463: per_psp_ins.insert_dml(p_rec);
464: --
465: -- Call the supporting post-insert operation
466: --
467: per_psp_ins.post_insert
468: (p_effective_date
469: ,p_rec
470: );
471: --

Line 583: per_psp_ins.ins

579: --
580: -- Having converted the arguments into the per_psp_rec
581: -- plsql record structure we call the corresponding record business process.
582: --
583: per_psp_ins.ins
584: (p_effective_date
585: ,l_rec
586: );
587: --

Line 597: end per_psp_ins;

593: --
594: hr_utility.set_location(' Leaving:'||l_proc, 10);
595: End ins;
596: --
597: end per_psp_ins;