DBA Data[Home] [Help]

APPS.PQH_VLD_INS dependencies on PQH_VLD_INS

Line 1: Package Body pqh_vld_ins as

1: Package Body pqh_vld_ins as
2: /* $Header: pqvldrhi.pkb 115.2 2002/12/13 00:33:20 rpasapul noship $ */
3: --
4: -- ----------------------------------------------------------------------------
5: -- | Private Global Definitions |

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

4: -- ----------------------------------------------------------------------------
5: -- | Private Global Definitions |
6: -- ----------------------------------------------------------------------------
7: --
8: g_package varchar2(33) := ' pqh_vld_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_vld_ins.g_validation_id_i := p_validation_id;

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

Line 201: pqh_vld_ins.g_validation_id_i;

197: Cursor C_Sel2 is
198: Select null
199: from pqh_fr_validations
200: where validation_id =
201: pqh_vld_ins.g_validation_id_i;
202: --
203: l_proc varchar2(72) := g_package||'pre_insert';
204: l_exists varchar2(1);
205: --

Line 209: If (pqh_vld_ins.g_validation_id_i is not null) Then

205: --
206: Begin
207: hr_utility.set_location('Entering:'||l_proc, 5);
208: --
209: If (pqh_vld_ins.g_validation_id_i is not null) Then
210: --
211: -- Verify registered primary key values not already in use
212: --
213: Open C_Sel2;

Line 229: pqh_vld_ins.g_validation_id_i;

225: --
226: -- Use registered key values and clear globals
227: --
228: p_rec.validation_id :=
229: pqh_vld_ins.g_validation_id_i;
230: pqh_vld_ins.g_validation_id_i := null;
231: Else
232: --
233: -- No registerd key values, so select the next sequence number

Line 230: pqh_vld_ins.g_validation_id_i := null;

226: -- Use registered key values and clear globals
227: --
228: p_rec.validation_id :=
229: pqh_vld_ins.g_validation_id_i;
230: pqh_vld_ins.g_validation_id_i := null;
231: Else
232: --
233: -- No registerd key values, so select the next sequence number
234: --

Line 367: pqh_vld_ins.pre_insert(p_rec);

363: hr_multi_message.end_validation_set;
364: --
365: -- Call the supporting pre-insert operation
366: --
367: pqh_vld_ins.pre_insert(p_rec);
368: --
369: -- Insert the row
370: --
371: pqh_vld_ins.insert_dml(p_rec);

Line 371: pqh_vld_ins.insert_dml(p_rec);

367: pqh_vld_ins.pre_insert(p_rec);
368: --
369: -- Insert the row
370: --
371: pqh_vld_ins.insert_dml(p_rec);
372: --
373: -- Call the supporting post-insert operation
374: --
375: pqh_vld_ins.post_insert

Line 375: pqh_vld_ins.post_insert

371: pqh_vld_ins.insert_dml(p_rec);
372: --
373: -- Call the supporting post-insert operation
374: --
375: pqh_vld_ins.post_insert
376: (p_effective_date
377: ,p_rec
378: );
379: --

Line 445: pqh_vld_ins.ins

441: --
442: -- Having converted the arguments into the pqh_vld_rec
443: -- plsql record structure we call the corresponding record business process.
444: --
445: pqh_vld_ins.ins
446: (p_effective_date
447: ,l_rec
448: );
449: --

Line 459: end pqh_vld_ins;

455: --
456: hr_utility.set_location(' Leaving:'||l_proc, 10);
457: End ins;
458: --
459: end pqh_vld_ins;