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.2 2008/08/06 09:29:11 ubhat 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 255: per_pma_ins.g_appraisal_period_id_i;

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

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

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

Line 283: per_pma_ins.g_appraisal_period_id_i;

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

Line 284: per_pma_ins.g_appraisal_period_id_i := null;

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

Line 476: per_pma_ins.pre_insert(p_rec);

472: hr_multi_message.end_validation_set;
473: --
474: -- Call the supporting pre-insert operation
475: --
476: per_pma_ins.pre_insert(p_rec);
477: --
478: -- Insert the row
479: --
480: per_pma_ins.insert_dml(p_rec);

Line 480: per_pma_ins.insert_dml(p_rec);

476: per_pma_ins.pre_insert(p_rec);
477: --
478: -- Insert the row
479: --
480: per_pma_ins.insert_dml(p_rec);
481: --
482: -- Call the supporting post-insert operation
483: --
484: per_pma_ins.post_insert

Line 484: per_pma_ins.post_insert

480: per_pma_ins.insert_dml(p_rec);
481: --
482: -- Call the supporting post-insert operation
483: --
484: per_pma_ins.post_insert
485: (p_effective_date
486: ,p_rec
487: );
488: --

Line 608: per_pma_ins.ins

604: --
605: -- Having converted the arguments into the per_pma_rec
606: -- plsql record structure we call the corresponding record business process.
607: --
608: per_pma_ins.ins
609: (p_effective_date
610: ,l_rec
611: );
612: --

Line 622: end per_pma_ins;

618: --
619: hr_utility.set_location(' Leaving:'||l_proc, 10);
620: End ins;
621: --
622: end per_pma_ins;