DBA Data[Home] [Help]

APPS.PQH_RSS_INS dependencies on PQH_RSS_INS

Line 1: Package Body pqh_rss_ins as

1: Package Body pqh_rss_ins as
2: /* $Header: pqrssrhi.pkb 115.9 2002/12/13 13:57:40 joward noship $ */
3: --
4: -- ----------------------------------------------------------------------------
5: -- | Private Global Definitions |

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

4: -- ----------------------------------------------------------------------------
5: -- | Private Global Definitions |
6: -- ----------------------------------------------------------------------------
7: --
8: g_package varchar2(33) := ' pqh_rss_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_rss_ins.g_result_set_id_i := p_result_set_id;

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

Line 175: pqh_rss_ins.g_result_set_id_i;

171: Cursor C_Sel2 is
172: Select null
173: from pqh_de_result_sets
174: where result_set_id =
175: pqh_rss_ins.g_result_set_id_i;
176: --
177: l_proc varchar2(72) := g_package||'pre_insert';
178: l_exists varchar2(1);
179: --

Line 183: If (pqh_rss_ins.g_result_set_id_i is not null) Then

179: --
180: Begin
181: hr_utility.set_location('Entering:'||l_proc, 5);
182: --
183: If (pqh_rss_ins.g_result_set_id_i is not null) Then
184: --
185: -- Verify registered primary key values not already in use
186: --
187: Open C_Sel2;

Line 203: pqh_rss_ins.g_result_set_id_i;

199: --
200: -- Use registered key values and clear globals
201: --
202: p_rec.result_set_id :=
203: pqh_rss_ins.g_result_set_id_i;
204: pqh_rss_ins.g_result_set_id_i := null;
205: Else
206: --
207: -- No registerd key values, so select the next sequence number

Line 204: pqh_rss_ins.g_result_set_id_i := null;

200: -- Use registered key values and clear globals
201: --
202: p_rec.result_set_id :=
203: pqh_rss_ins.g_result_set_id_i;
204: pqh_rss_ins.g_result_set_id_i := null;
205: Else
206: --
207: -- No registerd key values, so select the next sequence number
208: --

Line 316: pqh_rss_ins.pre_insert(p_rec);

312: --
313: -- Call the supporting pre-insert operation
314: --
315:
316: pqh_rss_ins.pre_insert(p_rec);
317: --
318: -- Insert the row
319: --
320:

Line 321: pqh_rss_ins.insert_dml(p_rec);

317: --
318: -- Insert the row
319: --
320:
321: pqh_rss_ins.insert_dml(p_rec);
322: --
323: -- Call the supporting post-insert operation
324: --
325: pqh_rss_ins.post_insert

Line 325: pqh_rss_ins.post_insert

321: pqh_rss_ins.insert_dml(p_rec);
322: --
323: -- Call the supporting post-insert operation
324: --
325: pqh_rss_ins.post_insert
326: (p_effective_date
327: ,p_rec
328: );
329: --

Line 369: pqh_rss_ins.ins

365: --
366: -- Having converted the arguments into the pqh_rss_rec
367: -- plsql record structure we call the corresponding record business process.
368: --
369: pqh_rss_ins.ins
370: (p_effective_date
371: ,l_rec
372: );
373: --

Line 383: end pqh_rss_ins;

379: --
380: hr_utility.set_location(' Leaving:'||l_proc, 10);
381: End ins;
382: --
383: end pqh_rss_ins;