DBA Data[Home] [Help]

APPS.PQH_PSU_INS dependencies on PQH_PSU_INS

Line 1: Package Body pqh_psu_ins as

1: Package Body pqh_psu_ins as
2: /* $Header: pqpsurhi.pkb 120.0 2005/05/29 02:19 appldev noship $ */
3: --
4: -- ----------------------------------------------------------------------------
5: -- | Private Global Definitions |

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

4: -- ----------------------------------------------------------------------------
5: -- | Private Global Definitions |
6: -- ----------------------------------------------------------------------------
7: --
8: g_package varchar2(33) := ' pqh_psu_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: pqh_psu_ins.g_emp_stat_situation_id_i := p_emp_stat_situation_id;

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

Line 259: pqh_psu_ins.g_emp_stat_situation_id_i;

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

Line 267: If (pqh_psu_ins.g_emp_stat_situation_id_i is not null) Then

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

Line 287: pqh_psu_ins.g_emp_stat_situation_id_i;

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

Line 288: pqh_psu_ins.g_emp_stat_situation_id_i := null;

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

Line 483: pqh_psu_ins.pre_insert(p_rec);

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

Line 487: pqh_psu_ins.insert_dml(p_rec);

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

Line 491: pqh_psu_ins.post_insert

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

Line 619: pqh_psu_ins.ins

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

Line 633: end pqh_psu_ins;

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