DBA Data[Home] [Help]

APPS.PER_PJO_INS dependencies on PER_PJO_INS

Line 1: Package Body per_pjo_ins as

1: Package Body per_pjo_ins as
2: /* $Header: pepjorhi.pkb 120.1 2008/07/08 13:06:55 brsinha noship $ */
3: --
4: -- ----------------------------------------------------------------------------
5: -- | Private Global Definitions |

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

4: -- ----------------------------------------------------------------------------
5: -- | Private Global Definitions |
6: -- ----------------------------------------------------------------------------
7: --
8: g_package varchar2(33) := ' per_pjo_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_pjo_ins.g_previous_job_id_i := p_previous_job_id;

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

Line 313: per_pjo_ins.g_previous_job_id_i;

309: Cursor C_Sel2 is
310: Select null
311: from per_previous_jobs
312: where previous_job_id =
313: per_pjo_ins.g_previous_job_id_i;
314: --
315: l_proc varchar2(72) := g_package||'pre_insert';
316: l_exists varchar2(1);
317: --

Line 321: If (per_pjo_ins.g_previous_job_id_i is not null) Then

317: --
318: Begin
319: hr_utility.set_location('Entering:'||l_proc, 5);
320: --
321: If (per_pjo_ins.g_previous_job_id_i is not null) Then
322: --
323: -- Verify registered primary key values not already in use
324: --
325: Open C_Sel2;

Line 341: per_pjo_ins.g_previous_job_id_i;

337: --
338: -- Use registered key values and clear globals
339: --
340: p_rec.previous_job_id :=
341: per_pjo_ins.g_previous_job_id_i;
342: per_pjo_ins.g_previous_job_id_i := null;
343: Else
344: --
345: -- No registerd key values, so select the next sequence number

Line 342: per_pjo_ins.g_previous_job_id_i := null;

338: -- Use registered key values and clear globals
339: --
340: p_rec.previous_job_id :=
341: per_pjo_ins.g_previous_job_id_i;
342: per_pjo_ins.g_previous_job_id_i := null;
343: Else
344: --
345: -- No registerd key values, so select the next sequence number
346: --

Line 590: per_pjo_ins.pre_insert(p_rec);

586: -- Call to raise any errors on multi-message list
587: hr_multi_message.end_validation_set;
588: -- Call the supporting pre-insert operation
589: --
590: per_pjo_ins.pre_insert(p_rec);
591: --
592: -- Insert the row
593: --
594: per_pjo_ins.insert_dml(p_rec);

Line 594: per_pjo_ins.insert_dml(p_rec);

590: per_pjo_ins.pre_insert(p_rec);
591: --
592: -- Insert the row
593: --
594: per_pjo_ins.insert_dml(p_rec);
595: --
596: -- Call the supporting post-insert operation
597: --
598: per_pjo_ins.post_insert

Line 598: per_pjo_ins.post_insert

594: per_pjo_ins.insert_dml(p_rec);
595: --
596: -- Call the supporting post-insert operation
597: --
598: per_pjo_ins.post_insert
599: (p_effective_date
600: ,p_rec
601: );
602: --

Line 779: per_pjo_ins.ins

775: --
776: -- Having converted the arguments into the per_pjo_rec
777: -- plsql record structure we call the corresponding record business process.
778: --
779: per_pjo_ins.ins
780: (p_effective_date
781: ,l_rec
782: );
783: --

Line 793: end per_pjo_ins;

789: --
790: hr_utility.set_location(' Leaving:'||l_proc, 10);
791: End ins;
792: --
793: end per_pjo_ins;