DBA Data[Home] [Help]

APPS.PQH_RFE_INS dependencies on PQH_RFE_INS

Line 1: Package Body pqh_rfe_ins as

1: Package Body pqh_rfe_ins as
2: /* $Header: pqrferhi.pkb 120.0 2005/10/06 14:54 srajakum noship $ */
3: --
4: -- ----------------------------------------------------------------------------
5: -- | Private Global Definitions |

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

4: -- ----------------------------------------------------------------------------
5: -- | Private Global Definitions |
6: -- ----------------------------------------------------------------------------
7: --
8: g_package varchar2(33) := ' pqh_rfe_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_rfe_ins.g_rate_factor_on_elmnt_id_i := p_rate_factor_on_elmnt_id;

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

Line 229: pqh_rfe_ins.g_rate_factor_on_elmnt_id_i;

225: Cursor C_Sel2 is
226: Select null
227: from pqh_rate_factor_on_elmnts
228: where rate_factor_on_elmnt_id =
229: pqh_rfe_ins.g_rate_factor_on_elmnt_id_i;
230: --
231: l_proc varchar2(72) := g_package||'pre_insert';
232: l_exists varchar2(1);
233: --

Line 237: If (pqh_rfe_ins.g_rate_factor_on_elmnt_id_i is not null) Then

233: --
234: Begin
235: hr_utility.set_location('Entering:'||l_proc, 5);
236: --
237: If (pqh_rfe_ins.g_rate_factor_on_elmnt_id_i is not null) Then
238: --
239: -- Verify registered primary key values not already in use
240: --
241: Open C_Sel2;

Line 257: pqh_rfe_ins.g_rate_factor_on_elmnt_id_i;

253: --
254: -- Use registered key values and clear globals
255: --
256: p_rec.rate_factor_on_elmnt_id :=
257: pqh_rfe_ins.g_rate_factor_on_elmnt_id_i;
258: pqh_rfe_ins.g_rate_factor_on_elmnt_id_i := null;
259: Else
260: --
261: -- No registerd key values, so select the next sequence number

Line 258: pqh_rfe_ins.g_rate_factor_on_elmnt_id_i := null;

254: -- Use registered key values and clear globals
255: --
256: p_rec.rate_factor_on_elmnt_id :=
257: pqh_rfe_ins.g_rate_factor_on_elmnt_id_i;
258: pqh_rfe_ins.g_rate_factor_on_elmnt_id_i := null;
259: Else
260: --
261: -- No registerd key values, so select the next sequence number
262: --

Line 381: pqh_rfe_ins.pre_insert(p_rec);

377: hr_multi_message.end_validation_set;
378: --
379: -- Call the supporting pre-insert operation
380: --
381: pqh_rfe_ins.pre_insert(p_rec);
382: --
383: -- Insert the row
384: --
385: pqh_rfe_ins.insert_dml(p_rec);

Line 385: pqh_rfe_ins.insert_dml(p_rec);

381: pqh_rfe_ins.pre_insert(p_rec);
382: --
383: -- Insert the row
384: --
385: pqh_rfe_ins.insert_dml(p_rec);
386: --
387: -- Call the supporting post-insert operation
388: --
389: pqh_rfe_ins.post_insert

Line 389: pqh_rfe_ins.post_insert

385: pqh_rfe_ins.insert_dml(p_rec);
386: --
387: -- Call the supporting post-insert operation
388: --
389: pqh_rfe_ins.post_insert
390: (p_effective_date
391: ,p_rec
392: );
393: --

Line 439: pqh_rfe_ins.ins

435: --
436: -- Having converted the arguments into the pqh_rfe_rec
437: -- plsql record structure we call the corresponding record business process.
438: --
439: pqh_rfe_ins.ins
440: (p_effective_date
441: ,l_rec
442: );
443: --

Line 453: end pqh_rfe_ins;

449: --
450: hr_utility.set_location(' Leaving:'||l_proc, 10);
451: End ins;
452: --
453: end pqh_rfe_ins;