DBA Data[Home] [Help]

APPS.PQP_VRI_INS dependencies on PQP_VRI_INS

Line 1: Package Body pqp_vri_ins as

1: Package Body pqp_vri_ins as
2: /* $Header: pqvrirhi.pkb 120.0.12010000.2 2008/08/08 07:24:11 ubhat ship $ */
3: --
4: -- ----------------------------------------------------------------------------
5: -- | Private Global Definitions |

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

4: -- ----------------------------------------------------------------------------
5: -- | Private Global Definitions |
6: -- ----------------------------------------------------------------------------
7: --
8: g_package varchar2(33) := ' pqp_vri_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: pqp_vri_ins.g_veh_repos_extra_info_id_i := p_veh_repos_extra_info_id;

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

Line 285: pqp_vri_ins.g_veh_repos_extra_info_id_i;

281: Cursor C_Sel2 is
282: Select null
283: from pqp_veh_repos_extra_info
284: where veh_repos_extra_info_id =
285: pqp_vri_ins.g_veh_repos_extra_info_id_i;
286: --
287: l_proc varchar2(72) := g_package||'pre_insert';
288: l_exists varchar2(1);
289: --

Line 293: If (pqp_vri_ins.g_veh_repos_extra_info_id_i is not null) Then

289: --
290: Begin
291: hr_utility.set_location('Entering:'||l_proc, 5);
292: --
293: If (pqp_vri_ins.g_veh_repos_extra_info_id_i is not null) Then
294: --
295: -- Verify registered primary key values not already in use
296: --
297: Open C_Sel2;

Line 313: pqp_vri_ins.g_veh_repos_extra_info_id_i;

309: --
310: -- Use registered key values and clear globals
311: --
312: p_rec.veh_repos_extra_info_id :=
313: pqp_vri_ins.g_veh_repos_extra_info_id_i;
314: pqp_vri_ins.g_veh_repos_extra_info_id_i := null;
315: Else
316: --
317: -- No registerd key values, so select the next sequence number

Line 314: pqp_vri_ins.g_veh_repos_extra_info_id_i := null;

310: -- Use registered key values and clear globals
311: --
312: p_rec.veh_repos_extra_info_id :=
313: pqp_vri_ins.g_veh_repos_extra_info_id_i;
314: pqp_vri_ins.g_veh_repos_extra_info_id_i := null;
315: Else
316: --
317: -- No registerd key values, so select the next sequence number
318: --

Line 531: pqp_vri_ins.pre_insert(p_rec);

527: hr_multi_message.end_validation_set;
528: --
529: -- Call the supporting pre-insert operation
530: --
531: pqp_vri_ins.pre_insert(p_rec);
532: --
533: -- Insert the row
534: --
535: pqp_vri_ins.insert_dml(p_rec);

Line 535: pqp_vri_ins.insert_dml(p_rec);

531: pqp_vri_ins.pre_insert(p_rec);
532: --
533: -- Insert the row
534: --
535: pqp_vri_ins.insert_dml(p_rec);
536: --
537: -- Call the supporting post-insert operation
538: --
539: pqp_vri_ins.post_insert

Line 539: pqp_vri_ins.post_insert

535: pqp_vri_ins.insert_dml(p_rec);
536: --
537: -- Call the supporting post-insert operation
538: --
539: pqp_vri_ins.post_insert
540: (p_rec
541: );
542: --
543: -- Call to raise any errors on multi-message list

Line 691: pqp_vri_ins.ins

687: --
688: -- Having converted the arguments into the pqp_vri_rec
689: -- plsql record structure we call the corresponding record business process.
690: --
691: pqp_vri_ins.ins
692: (l_rec
693: );
694: --
695: -- As the primary key argument(s)

Line 704: end pqp_vri_ins;

700: --
701: hr_utility.set_location(' Leaving:'||l_proc, 10);
702: End ins;
703: --
704: end pqp_vri_ins;