DBA Data[Home] [Help]

APPS.PER_PJU_INS dependencies on PER_PJU_INS

Line 1: Package Body per_pju_ins as

1: Package Body per_pju_ins as
2: /* $Header: pepjurhi.pkb 115.14 2002/12/04 10:55:38 eumenyio ship $ */
3: --
4: -- ----------------------------------------------------------------------------
5: -- | Private Global Definitions |

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

4: -- ----------------------------------------------------------------------------
5: -- | Private Global Definitions |
6: -- ----------------------------------------------------------------------------
7: --
8: g_package varchar2(33) := ' per_pju_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_pju_ins.g_previous_job_usage_id_i := p_previous_job_usage_id;

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

Line 269: per_pju_ins.g_previous_job_usage_id_i;

265: Cursor C_Sel2 is
266: Select null
267: from per_previous_job_usages
268: where previous_job_usage_id =
269: per_pju_ins.g_previous_job_usage_id_i;
270: --
271: l_proc varchar2(72) := g_package||'pre_insert';
272: l_exists varchar2(1);
273: --

Line 277: If (per_pju_ins.g_previous_job_usage_id_i is not null) Then

273: --
274: Begin
275: hr_utility.set_location('Entering:'||l_proc, 5);
276: --
277: If (per_pju_ins.g_previous_job_usage_id_i is not null) Then
278: --
279: -- Verify registered primary key values not already in use
280: --
281: Open C_Sel2;

Line 297: per_pju_ins.g_previous_job_usage_id_i;

293: --
294: -- Use registered key values and clear globals
295: --
296: p_rec.previous_job_usage_id :=
297: per_pju_ins.g_previous_job_usage_id_i;
298: per_pju_ins.g_previous_job_usage_id_i := null;
299: Else
300: --
301: -- No registerd key values, so select the next sequence number

Line 298: per_pju_ins.g_previous_job_usage_id_i := null;

294: -- Use registered key values and clear globals
295: --
296: p_rec.previous_job_usage_id :=
297: per_pju_ins.g_previous_job_usage_id_i;
298: per_pju_ins.g_previous_job_usage_id_i := null;
299: Else
300: --
301: -- No registerd key values, so select the next sequence number
302: --

Line 496: per_pju_ins.pre_insert(p_rec);

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

Line 500: per_pju_ins.insert_dml(p_rec);

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

Line 504: per_pju_ins.post_insert

500: per_pju_ins.insert_dml(p_rec);
501: --
502: -- Call the supporting post-insert operation
503: --
504: per_pju_ins.post_insert
505: (p_rec
506: );
507: --
508: hr_utility.set_location('Leaving:'||l_proc, 20);

Line 637: per_pju_ins.ins

633: --
634: -- Having converted the arguments into the per_pju_rec
635: -- plsql record structure we call the corresponding record business process.
636: --
637: per_pju_ins.ins
638: (l_rec
639: );
640: --
641: -- As the primary key argument(s)

Line 650: end per_pju_ins;

646: --
647: hr_utility.set_location(' Leaving:'||l_proc, 10);
648: End ins;
649: --
650: end per_pju_ins;