DBA Data[Home] [Help]

APPS.PQH_RMN_INS dependencies on PQH_RMN_INS

Line 1: Package Body pqh_rmn_ins as

1: Package Body pqh_rmn_ins as
2: /* $Header: pqrmnrhi.pkb 120.0 2005/05/29 02:33 appldev noship $ */
3: --
4: -- ----------------------------------------------------------------------------
5: -- | Private Global Definitions |

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

4: -- ----------------------------------------------------------------------------
5: -- | Private Global Definitions |
6: -- ----------------------------------------------------------------------------
7: --
8: g_package varchar2(33) := ' pqh_rmn_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_rmn_ins.g_rate_matrix_node_id_i := p_rate_matrix_node_id;

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

Line 235: pqh_rmn_ins.g_rate_matrix_node_id_i;

231: Cursor C_Sel2 is
232: Select null
233: from pqh_rate_matrix_nodes
234: where rate_matrix_node_id =
235: pqh_rmn_ins.g_rate_matrix_node_id_i;
236: --
237: l_proc varchar2(72) := g_package||'pre_insert';
238: l_exists varchar2(1);
239: --

Line 243: If (pqh_rmn_ins.g_rate_matrix_node_id_i is not null) Then

239: --
240: Begin
241: hr_utility.set_location('Entering:'||l_proc, 5);
242: --
243: If (pqh_rmn_ins.g_rate_matrix_node_id_i is not null) Then
244: --
245: -- Verify registered primary key values not already in use
246: --
247: Open C_Sel2;

Line 263: pqh_rmn_ins.g_rate_matrix_node_id_i;

259: --
260: -- Use registered key values and clear globals
261: --
262: p_rec.rate_matrix_node_id :=
263: pqh_rmn_ins.g_rate_matrix_node_id_i;
264: pqh_rmn_ins.g_rate_matrix_node_id_i := null;
265: Else
266: --
267: -- No registerd key values, so select the next sequence number

Line 264: pqh_rmn_ins.g_rate_matrix_node_id_i := null;

260: -- Use registered key values and clear globals
261: --
262: p_rec.rate_matrix_node_id :=
263: pqh_rmn_ins.g_rate_matrix_node_id_i;
264: pqh_rmn_ins.g_rate_matrix_node_id_i := null;
265: Else
266: --
267: -- No registerd key values, so select the next sequence number
268: --

Line 389: pqh_rmn_ins.pre_insert(p_rec);

385: hr_multi_message.end_validation_set;
386: --
387: -- Call the supporting pre-insert operation
388: --
389: pqh_rmn_ins.pre_insert(p_rec);
390: --
391: -- Insert the row
392: --
393: pqh_rmn_ins.insert_dml(p_rec);

Line 393: pqh_rmn_ins.insert_dml(p_rec);

389: pqh_rmn_ins.pre_insert(p_rec);
390: --
391: -- Insert the row
392: --
393: pqh_rmn_ins.insert_dml(p_rec);
394: --
395: -- Call the supporting post-insert operation
396: --
397: pqh_rmn_ins.post_insert

Line 397: pqh_rmn_ins.post_insert

393: pqh_rmn_ins.insert_dml(p_rec);
394: --
395: -- Call the supporting post-insert operation
396: --
397: pqh_rmn_ins.post_insert
398: (p_rec
399: );
400: --
401: -- Call to raise any errors on multi-message list

Line 451: pqh_rmn_ins.ins

447: --
448: -- Having converted the arguments into the pqh_rmn_rec
449: -- plsql record structure we call the corresponding record business process.
450: --
451: pqh_rmn_ins.ins
452: (l_rec
453: );
454: --
455: -- As the primary key argument(s)

Line 464: end pqh_rmn_ins;

460: --
461: hr_utility.set_location(' Leaving:'||l_proc, 10);
462: End ins;
463: --
464: end pqh_rmn_ins;