DBA Data[Home] [Help]

APPS.PER_PMA_INS dependencies on PER_PMA_INS

Line 1: Package Body per_pma_ins as

1: Package Body per_pma_ins as
2: /* $Header: pepmarhi.pkb 120.4.12010000.3 2009/10/23 13:48:57 schowdhu ship $ */
3: --
4: -- ----------------------------------------------------------------------------
5: -- | Private Global Definitions |

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

4: -- ----------------------------------------------------------------------------
5: -- | Private Global Definitions |
6: -- ----------------------------------------------------------------------------
7: --
8: g_package varchar2(33) := ' per_pma_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_pma_ins.g_appraisal_period_id_i := p_appraisal_period_id;

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

Line 259: per_pma_ins.g_appraisal_period_id_i;

255: Cursor C_Sel2 is
256: Select null
257: from per_appraisal_periods
258: where appraisal_period_id =
259: per_pma_ins.g_appraisal_period_id_i;
260: --
261: l_proc varchar2(72) := g_package||'pre_insert';
262: l_exists varchar2(1);
263: --

Line 267: If (per_pma_ins.g_appraisal_period_id_i is not null) Then

263: --
264: Begin
265: hr_utility.set_location('Entering:'||l_proc, 5);
266: --
267: If (per_pma_ins.g_appraisal_period_id_i is not null) Then
268: --
269: -- Verify registered primary key values not already in use
270: --
271: Open C_Sel2;

Line 287: per_pma_ins.g_appraisal_period_id_i;

283: --
284: -- Use registered key values and clear globals
285: --
286: p_rec.appraisal_period_id :=
287: per_pma_ins.g_appraisal_period_id_i;
288: per_pma_ins.g_appraisal_period_id_i := null;
289: Else
290: --
291: -- No registerd key values, so select the next sequence number

Line 288: per_pma_ins.g_appraisal_period_id_i := null;

284: -- Use registered key values and clear globals
285: --
286: p_rec.appraisal_period_id :=
287: per_pma_ins.g_appraisal_period_id_i;
288: per_pma_ins.g_appraisal_period_id_i := null;
289: Else
290: --
291: -- No registerd key values, so select the next sequence number
292: --

Line 484: per_pma_ins.pre_insert(p_rec);

480: hr_multi_message.end_validation_set;
481: --
482: -- Call the supporting pre-insert operation
483: --
484: per_pma_ins.pre_insert(p_rec);
485: --
486: -- Insert the row
487: --
488: per_pma_ins.insert_dml(p_rec);

Line 488: per_pma_ins.insert_dml(p_rec);

484: per_pma_ins.pre_insert(p_rec);
485: --
486: -- Insert the row
487: --
488: per_pma_ins.insert_dml(p_rec);
489: --
490: -- Call the supporting post-insert operation
491: --
492: per_pma_ins.post_insert

Line 492: per_pma_ins.post_insert

488: per_pma_ins.insert_dml(p_rec);
489: --
490: -- Call the supporting post-insert operation
491: --
492: per_pma_ins.post_insert
493: (p_effective_date
494: ,p_rec
495: );
496: --

Line 620: per_pma_ins.ins

616: --
617: -- Having converted the arguments into the per_pma_rec
618: -- plsql record structure we call the corresponding record business process.
619: --
620: per_pma_ins.ins
621: (p_effective_date
622: ,l_rec
623: );
624: --

Line 634: end per_pma_ins;

630: --
631: hr_utility.set_location(' Leaving:'||l_proc, 10);
632: End ins;
633: --
634: end per_pma_ins;