DBA Data[Home] [Help]

APPS.PQH_RNK_INS dependencies on PQH_RNK_INS

Line 1: Package Body pqh_rnk_ins as

1: Package Body pqh_rnk_ins as
2: /* $Header: pqrnkrhi.pkb 120.1 2005/06/23 13:27 nsanghal noship $ */
3: --
4: -- ----------------------------------------------------------------------------
5: -- | Private Global Definitions |

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

4: -- ----------------------------------------------------------------------------
5: -- | Private Global Definitions |
6: -- ----------------------------------------------------------------------------
7: --
8: g_package constant varchar2(33) := ' pqh_rnk_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_rnk_ins.g_rank_process_id_i := p_rank_process_id;

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

Line 193: pqh_rnk_ins.g_rank_process_id_i;

189: Cursor C_Sel2 is
190: Select null
191: from pqh_rank_processes
192: where rank_process_id =
193: pqh_rnk_ins.g_rank_process_id_i;
194: --
195: l_proc constant varchar2(72) := g_package||'pre_insert';
196: l_exists varchar2(1);
197: --

Line 201: If (pqh_rnk_ins.g_rank_process_id_i is not null) Then

197: --
198: Begin
199: hr_utility.set_location('Entering:'||l_proc, 5);
200: --
201: If (pqh_rnk_ins.g_rank_process_id_i is not null) Then
202: --
203: -- Verify registered primary key values not already in use
204: --
205: Open C_Sel2;

Line 221: pqh_rnk_ins.g_rank_process_id_i;

217: --
218: -- Use registered key values and clear globals
219: --
220: p_rec.rank_process_id :=
221: pqh_rnk_ins.g_rank_process_id_i;
222: pqh_rnk_ins.g_rank_process_id_i := null;
223: Else
224: --
225: -- No registerd key values, so select the next sequence number

Line 222: pqh_rnk_ins.g_rank_process_id_i := null;

218: -- Use registered key values and clear globals
219: --
220: p_rec.rank_process_id :=
221: pqh_rnk_ins.g_rank_process_id_i;
222: pqh_rnk_ins.g_rank_process_id_i := null;
223: Else
224: --
225: -- No registerd key values, so select the next sequence number
226: --

Line 352: pqh_rnk_ins.pre_insert(p_rec);

348: hr_multi_message.end_validation_set;
349: --
350: -- Call the supporting pre-insert operation
351: --
352: pqh_rnk_ins.pre_insert(p_rec);
353: --
354: -- Insert the row
355: --
356: pqh_rnk_ins.insert_dml(p_rec);

Line 356: pqh_rnk_ins.insert_dml(p_rec);

352: pqh_rnk_ins.pre_insert(p_rec);
353: --
354: -- Insert the row
355: --
356: pqh_rnk_ins.insert_dml(p_rec);
357: --
358: -- Call the supporting post-insert operation
359: --
360: pqh_rnk_ins.post_insert

Line 360: pqh_rnk_ins.post_insert

356: pqh_rnk_ins.insert_dml(p_rec);
357: --
358: -- Call the supporting post-insert operation
359: --
360: pqh_rnk_ins.post_insert
361: (p_effective_date
362: ,p_rec
363: );
364: --

Line 422: pqh_rnk_ins.ins

418: --
419: -- Having converted the arguments into the pqh_rnk_rec
420: -- plsql record structure we call the corresponding record business process.
421: --
422: pqh_rnk_ins.ins
423: (p_effective_date
424: ,l_rec
425: );
426: --

Line 436: end pqh_rnk_ins;

432: --
433: hr_utility.set_location(' Leaving:'||l_proc, 10);
434: End ins;
435: --
436: end pqh_rnk_ins;