DBA Data[Home] [Help]

APPS.PQP_PCV_INS dependencies on PQP_PCV_INS

Line 1: Package Body pqp_pcv_ins as

1: Package Body pqp_pcv_ins as
2: /* $Header: pqpcvrhi.pkb 120.0 2005/05/29 01:55:22 appldev noship $ */
3: --
4: -- ----------------------------------------------------------------------------
5: -- | Private Global Definitions |

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

4: -- ----------------------------------------------------------------------------
5: -- | Private Global Definitions |
6: -- ----------------------------------------------------------------------------
7: --
8: g_package varchar2(33) := ' pqp_pcv_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_pcv_ins.g_configuration_value_id_i := p_configuration_value_id;

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

Line 307: pqp_pcv_ins.g_configuration_value_id_i;

303: Cursor C_Sel2 is
304: Select null
305: from pqp_configuration_values
306: where configuration_value_id =
307: pqp_pcv_ins.g_configuration_value_id_i;
308: --
309: l_proc varchar2(72) := g_package||'pre_insert';
310: l_exists varchar2(1);
311: --

Line 315: If (pqp_pcv_ins.g_configuration_value_id_i is not null) Then

311: --
312: Begin
313: hr_utility.set_location('Entering:'||l_proc, 5);
314: --
315: If (pqp_pcv_ins.g_configuration_value_id_i is not null) Then
316: --
317: -- Verify registered primary key values not already in use
318: --
319: Open C_Sel2;

Line 335: pqp_pcv_ins.g_configuration_value_id_i;

331: --
332: -- Use registered key values and clear globals
333: --
334: p_rec.configuration_value_id :=
335: pqp_pcv_ins.g_configuration_value_id_i;
336: pqp_pcv_ins.g_configuration_value_id_i := null;
337: Else
338: --
339: -- No registerd key values, so select the next sequence number

Line 336: pqp_pcv_ins.g_configuration_value_id_i := null;

332: -- Use registered key values and clear globals
333: --
334: p_rec.configuration_value_id :=
335: pqp_pcv_ins.g_configuration_value_id_i;
336: pqp_pcv_ins.g_configuration_value_id_i := null;
337: Else
338: --
339: -- No registerd key values, so select the next sequence number
340: --

Line 537: pqp_pcv_ins.pre_insert(p_rec);

533: hr_multi_message.end_validation_set;
534: --
535: -- Call the supporting pre-insert operation
536: --
537: pqp_pcv_ins.pre_insert(p_rec);
538: --
539: -- Insert the row
540: --
541: pqp_pcv_ins.insert_dml(p_rec);

Line 541: pqp_pcv_ins.insert_dml(p_rec);

537: pqp_pcv_ins.pre_insert(p_rec);
538: --
539: -- Insert the row
540: --
541: pqp_pcv_ins.insert_dml(p_rec);
542: --
543: -- Call the supporting post-insert operation
544: --
545: pqp_pcv_ins.post_insert

Line 545: pqp_pcv_ins.post_insert

541: pqp_pcv_ins.insert_dml(p_rec);
542: --
543: -- Call the supporting post-insert operation
544: --
545: pqp_pcv_ins.post_insert
546: (p_effective_date
547: ,p_rec
548: );
549: --

Line 673: pqp_pcv_ins.ins

669: --
670: -- Having converted the arguments into the pqp_pcv_rec
671: -- plsql record structure we call the corresponding record business process.
672: --
673: pqp_pcv_ins.ins
674: (p_effective_date
675: ,l_rec
676: );
677: --

Line 687: end pqp_pcv_ins;

683: --
684: hr_utility.set_location(' Leaving:'||l_proc, 10);
685: End ins;
686: --
687: end pqp_pcv_ins;