DBA Data[Home] [Help]

APPS.PER_PJI_INS dependencies on PER_PJI_INS

Line 1: Package Body per_pji_ins as

1: Package Body per_pji_ins as
2: /* $Header: pepjirhi.pkb 115.8 2002/12/03 15:41:52 eumenyio ship $ */
3: --
4: -- ----------------------------------------------------------------------------
5: -- | Private Global Definitions |

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

4: -- ----------------------------------------------------------------------------
5: -- | Private Global Definitions |
6: -- ----------------------------------------------------------------------------
7: --
8: g_package varchar2(33) := ' per_pji_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_pji_ins.g_previous_job_extra_info_id_i := p_previous_job_extra_info_id;

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

Line 293: per_pji_ins.g_previous_job_extra_info_id_i;

289: Cursor C_Sel2 is
290: Select null
291: from per_prev_job_extra_info
292: where previous_job_extra_info_id =
293: per_pji_ins.g_previous_job_extra_info_id_i;
294: --
295: l_proc varchar2(72) := g_package||'pre_insert';
296: l_exists varchar2(1);
297: --

Line 301: If (per_pji_ins.g_previous_job_extra_info_id_i is not null) Then

297: --
298: Begin
299: hr_utility.set_location('Entering:'||l_proc, 5);
300: --
301: If (per_pji_ins.g_previous_job_extra_info_id_i is not null) Then
302: --
303: -- Verify registered primary key values not already in use
304: --
305: Open C_Sel2;

Line 321: per_pji_ins.g_previous_job_extra_info_id_i;

317: --
318: -- Use registered key values and clear globals
319: --
320: p_rec.previous_job_extra_info_id :=
321: per_pji_ins.g_previous_job_extra_info_id_i;
322: per_pji_ins.g_previous_job_extra_info_id_i := null;
323: Else
324: --
325: -- No registerd key values, so select the next sequence number

Line 322: per_pji_ins.g_previous_job_extra_info_id_i := null;

318: -- Use registered key values and clear globals
319: --
320: p_rec.previous_job_extra_info_id :=
321: per_pji_ins.g_previous_job_extra_info_id_i;
322: per_pji_ins.g_previous_job_extra_info_id_i := null;
323: Else
324: --
325: -- No registerd key values, so select the next sequence number
326: --

Line 548: per_pji_ins.pre_insert(p_rec);

544: );
545: --
546: -- Call the supporting pre-insert operation
547: --
548: per_pji_ins.pre_insert(p_rec);
549: --
550: -- Insert the row
551: --
552: per_pji_ins.insert_dml(p_rec);

Line 552: per_pji_ins.insert_dml(p_rec);

548: per_pji_ins.pre_insert(p_rec);
549: --
550: -- Insert the row
551: --
552: per_pji_ins.insert_dml(p_rec);
553: --
554: -- Call the supporting post-insert operation
555: --
556: per_pji_ins.post_insert

Line 556: per_pji_ins.post_insert

552: per_pji_ins.insert_dml(p_rec);
553: --
554: -- Call the supporting post-insert operation
555: --
556: per_pji_ins.post_insert
557: (p_rec
558: );
559: --
560: hr_utility.set_location('Leaving:'||l_proc, 20);

Line 717: per_pji_ins.ins

713: --
714: -- Having converted the arguments into the per_pji_rec
715: -- plsql record structure we call the corresponding record business process.
716: --
717: per_pji_ins.ins
718: (l_rec
719: );
720: --
721: -- As the primary key argument(s)

Line 730: end per_pji_ins;

726: --
727: hr_utility.set_location(' Leaving:'||l_proc, 10);
728: End ins;
729: --
730: end per_pji_ins;