DBA Data[Home] [Help]

APPS.PQH_CRF_INS dependencies on PQH_CRF_INS

Line 1: Package Body pqh_crf_ins as

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

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

4: -- ----------------------------------------------------------------------------
5: -- | Private Global Definitions |
6: -- ----------------------------------------------------------------------------
7: --
8: g_package varchar2(33) := ' pqh_crf_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_crf_ins.g_criteria_rate_factor_id_i := p_criteria_rate_factor_id;

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

Line 227: pqh_crf_ins.g_criteria_rate_factor_id_i;

223: Cursor C_Sel2 is
224: Select null
225: from pqh_criteria_rate_factors
226: where criteria_rate_factor_id =
227: pqh_crf_ins.g_criteria_rate_factor_id_i;
228: --
229: l_proc varchar2(72) := g_package||'pre_insert';
230: l_exists varchar2(1);
231: --

Line 235: If (pqh_crf_ins.g_criteria_rate_factor_id_i is not null) Then

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

Line 255: pqh_crf_ins.g_criteria_rate_factor_id_i;

251: --
252: -- Use registered key values and clear globals
253: --
254: p_rec.criteria_rate_factor_id :=
255: pqh_crf_ins.g_criteria_rate_factor_id_i;
256: pqh_crf_ins.g_criteria_rate_factor_id_i := null;
257: Else
258: --
259: -- No registerd key values, so select the next sequence number

Line 256: pqh_crf_ins.g_criteria_rate_factor_id_i := null;

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

Line 373: pqh_crf_ins.pre_insert(p_rec);

369: hr_multi_message.end_validation_set;
370: --
371: -- Call the supporting pre-insert operation
372: --
373: pqh_crf_ins.pre_insert(p_rec);
374: --
375: -- Insert the row
376: --
377: pqh_crf_ins.insert_dml(p_rec);

Line 377: pqh_crf_ins.insert_dml(p_rec);

373: pqh_crf_ins.pre_insert(p_rec);
374: --
375: -- Insert the row
376: --
377: pqh_crf_ins.insert_dml(p_rec);
378: --
379: -- Call the supporting post-insert operation
380: --
381: pqh_crf_ins.post_insert

Line 381: pqh_crf_ins.post_insert

377: pqh_crf_ins.insert_dml(p_rec);
378: --
379: -- Call the supporting post-insert operation
380: --
381: pqh_crf_ins.post_insert
382: (p_rec
383: );
384: --
385: -- Call to raise any errors on multi-message list

Line 427: pqh_crf_ins.ins

423: --
424: -- Having converted the arguments into the pqh_crf_rec
425: -- plsql record structure we call the corresponding record business process.
426: --
427: pqh_crf_ins.ins
428: (l_rec
429: );
430: --
431: -- As the primary key argument(s)

Line 440: end pqh_crf_ins;

436: --
437: hr_utility.set_location(' Leaving:'||l_proc, 10);
438: End ins;
439: --
440: end pqh_crf_ins;