DBA Data[Home] [Help]

APPS.PQH_RMV_INS dependencies on PQH_RMV_INS

Line 1: Package Body pqh_rmv_ins as

1: Package Body pqh_rmv_ins as
2: /* $Header: pqrmvrhi.pkb 120.2 2005/06/23 03:41 srenukun noship $ */
3: --
4: -- ----------------------------------------------------------------------------
5: -- | Private Global Definitions |

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

4: -- ----------------------------------------------------------------------------
5: -- | Private Global Definitions |
6: -- ----------------------------------------------------------------------------
7: --
8: g_package varchar2(33) := ' pqh_rmv_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_rmv_ins.g_node_value_id_i := p_node_value_id;

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

Line 249: pqh_rmv_ins.g_node_value_id_i;

245: Cursor C_Sel2 is
246: Select null
247: from pqh_rt_matrix_node_values
248: where node_value_id =
249: pqh_rmv_ins.g_node_value_id_i;
250: --
251: l_proc varchar2(72) := g_package||'pre_insert';
252: l_exists varchar2(1);
253: --

Line 257: If (pqh_rmv_ins.g_node_value_id_i is not null) Then

253: --
254: Begin
255: hr_utility.set_location('Entering:'||l_proc, 5);
256: --
257: If (pqh_rmv_ins.g_node_value_id_i is not null) Then
258: --
259: -- Verify registered primary key values not already in use
260: --
261: Open C_Sel2;

Line 277: pqh_rmv_ins.g_node_value_id_i;

273: --
274: -- Use registered key values and clear globals
275: --
276: p_rec.node_value_id :=
277: pqh_rmv_ins.g_node_value_id_i;
278: pqh_rmv_ins.g_node_value_id_i := null;
279: Else
280: --
281: -- No registerd key values, so select the next sequence number

Line 278: pqh_rmv_ins.g_node_value_id_i := null;

274: -- Use registered key values and clear globals
275: --
276: p_rec.node_value_id :=
277: pqh_rmv_ins.g_node_value_id_i;
278: pqh_rmv_ins.g_node_value_id_i := null;
279: Else
280: --
281: -- No registerd key values, so select the next sequence number
282: --

Line 417: pqh_rmv_ins.pre_insert(p_rec);

413: hr_multi_message.end_validation_set;
414: --
415: -- Call the supporting pre-insert operation
416: --
417: pqh_rmv_ins.pre_insert(p_rec);
418: --
419: -- Insert the row
420: --
421: pqh_rmv_ins.insert_dml(p_rec);

Line 421: pqh_rmv_ins.insert_dml(p_rec);

417: pqh_rmv_ins.pre_insert(p_rec);
418: --
419: -- Insert the row
420: --
421: pqh_rmv_ins.insert_dml(p_rec);
422: --
423: -- Call the supporting post-insert operation
424: --
425: pqh_rmv_ins.post_insert

Line 425: pqh_rmv_ins.post_insert

421: pqh_rmv_ins.insert_dml(p_rec);
422: --
423: -- Call the supporting post-insert operation
424: --
425: pqh_rmv_ins.post_insert
426: (p_rec
427: );
428: --
429: -- Call to raise any errors on multi-message list

Line 493: pqh_rmv_ins.ins

489: --
490: -- Having converted the arguments into the pqh_rmv_rec
491: -- plsql record structure we call the corresponding record business process.
492: --
493: pqh_rmv_ins.ins
494: (l_rec
495: );
496: --
497: -- As the primary key argument(s)

Line 506: end pqh_rmv_ins;

502: --
503: hr_utility.set_location(' Leaving:'||l_proc, 10);
504: End ins;
505: --
506: end pqh_rmv_ins;