DBA Data[Home] [Help]

APPS.PQH_LOS_INS dependencies on PQH_LOS_INS

Line 1: Package Body pqh_los_ins as

1: Package Body pqh_los_ins as
2: /* $Header: pqlosrhi.pkb 120.0 2005/05/29 02:11:26 appldev noship $ */
3: --
4: -- ----------------------------------------------------------------------------
5: -- | Private Global Definitions |

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

4: -- ----------------------------------------------------------------------------
5: -- | Private Global Definitions |
6: -- ----------------------------------------------------------------------------
7: --
8: g_package varchar2(33) := ' pqh_los_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_los_ins.g_situation_id_i := p_situation_id;

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

Line 313: pqh_los_ins.g_situation_id_i;

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

Line 321: If (pqh_los_ins.g_situation_id_i is not null) Then

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

Line 341: pqh_los_ins.g_situation_id_i;

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

Line 342: pqh_los_ins.g_situation_id_i := null;

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

Line 591: pqh_los_ins.pre_insert(p_rec);

587: hr_multi_message.end_validation_set;
588: --
589: -- Call the supporting pre-insert operation
590: --
591: pqh_los_ins.pre_insert(p_rec);
592: --
593: -- Insert the row
594: --
595: pqh_los_ins.insert_dml(p_rec);

Line 595: pqh_los_ins.insert_dml(p_rec);

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

Line 599: pqh_los_ins.post_insert

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

Line 781: pqh_los_ins.ins

777: --
778: -- Having converted the arguments into the pqh_los_rec
779: -- plsql record structure we call the corresponding record business process.
780: --
781: pqh_los_ins.ins
782: (p_effective_date
783: ,l_rec
784: );
785: --

Line 795: end pqh_los_ins;

791: --
792: hr_utility.set_location(' Leaving:'||l_proc, 10);
793: End ins;
794: --
795: end pqh_los_ins;