DBA Data[Home] [Help]

APPS.PER_CPO_INS dependencies on PER_CPO_INS

Line 1: Package Body per_cpo_ins as

1: Package Body per_cpo_ins as
2: /* $Header: pecporhi.pkb 115.0 2004/03/17 10:23 ynegoro noship $ */
3: --
4: -- ----------------------------------------------------------------------------
5: -- | Private Global Definitions |

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

4: -- ----------------------------------------------------------------------------
5: -- | Private Global Definitions |
6: -- ----------------------------------------------------------------------------
7: --
8: g_package varchar2(33) := ' per_cpo_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_cpo_ins.g_outcome_id_i := p_outcome_id;

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

Line 267: per_cpo_ins.g_outcome_id_i;

263: Cursor C_Sel2 is
264: Select null
265: from per_competence_outcomes
266: where outcome_id =
267: per_cpo_ins.g_outcome_id_i;
268: --
269: l_proc varchar2(72) := g_package||'pre_insert';
270: l_exists varchar2(1);
271: --

Line 275: If (per_cpo_ins.g_outcome_id_i is not null) Then

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

Line 295: per_cpo_ins.g_outcome_id_i;

291: --
292: -- Use registered key values and clear globals
293: --
294: p_rec.outcome_id :=
295: per_cpo_ins.g_outcome_id_i;
296: per_cpo_ins.g_outcome_id_i := null;
297: Else
298: --
299: -- No registerd key values, so select the next sequence number

Line 296: per_cpo_ins.g_outcome_id_i := null;

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

Line 497: per_cpo_ins.pre_insert(p_rec);

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

Line 501: per_cpo_ins.insert_dml(p_rec);

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

Line 505: per_cpo_ins.post_insert

501: per_cpo_ins.insert_dml(p_rec);
502: --
503: -- Call the supporting post-insert operation
504: --
505: per_cpo_ins.post_insert
506: (p_effective_date
507: ,p_rec
508: );
509: --

Line 639: per_cpo_ins.ins

635: --
636: -- Having converted the arguments into the per_cpo_rec
637: -- plsql record structure we call the corresponding record business process.
638: --
639: per_cpo_ins.ins
640: (p_effective_date
641: ,l_rec
642: );
643: --

Line 653: end per_cpo_ins;

649: --
650: hr_utility.set_location(' Leaving:'||l_proc, 10);
651: End ins;
652: --
653: end per_cpo_ins;