DBA Data[Home] [Help]

APPS.PER_CNL_INS dependencies on PER_CNL_INS

Line 1: Package Body per_cnl_ins as

1: Package Body per_cnl_ins as
2: /* $Header: pecnlrhi.pkb 120.0 2005/05/31 06:55 appldev noship $ */
3: --
4: -- ----------------------------------------------------------------------------
5: -- | Private Global Definitions |

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

4: -- ----------------------------------------------------------------------------
5: -- | Private Global Definitions |
6: -- ----------------------------------------------------------------------------
7: --
8: g_package varchar2(33) := ' per_cnl_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: per_cnl_ins.g_location_id_i := p_location_id;

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

Line 219: per_cnl_ins.g_location_id_i;

215: Cursor C_Sel2 is
216: Select null
217: from per_ri_config_locations
218: where location_id =
219: per_cnl_ins.g_location_id_i;
220: --
221: l_proc varchar2(72) := g_package||'pre_insert';
222: l_exists varchar2(1);
223: --

Line 227: If (per_cnl_ins.g_location_id_i is not null) Then

223: --
224: Begin
225: hr_utility.set_location('Entering:'||l_proc, 5);
226: --
227: If (per_cnl_ins.g_location_id_i is not null) Then
228: --
229: -- Verify registered primary key values not already in use
230: --
231: Open C_Sel2;

Line 247: per_cnl_ins.g_location_id_i;

243: --
244: -- Use registered key values and clear globals
245: --
246: p_rec.location_id :=
247: per_cnl_ins.g_location_id_i;
248: per_cnl_ins.g_location_id_i := null;
249: Else
250: --
251: -- No registerd key values, so select the next sequence number

Line 248: per_cnl_ins.g_location_id_i := null;

244: -- Use registered key values and clear globals
245: --
246: p_rec.location_id :=
247: per_cnl_ins.g_location_id_i;
248: per_cnl_ins.g_location_id_i := null;
249: Else
250: --
251: -- No registerd key values, so select the next sequence number
252: --

Line 376: per_cnl_ins.pre_insert(p_rec);

372: hr_multi_message.end_validation_set;
373: --
374: -- Call the supporting pre-insert operation
375: --
376: per_cnl_ins.pre_insert(p_rec);
377: --
378: -- Insert the row
379: --
380: per_cnl_ins.insert_dml(p_rec);

Line 380: per_cnl_ins.insert_dml(p_rec);

376: per_cnl_ins.pre_insert(p_rec);
377: --
378: -- Insert the row
379: --
380: per_cnl_ins.insert_dml(p_rec);
381: --
382: -- Call the supporting post-insert operation
383: --
384: per_cnl_ins.post_insert

Line 384: per_cnl_ins.post_insert

380: per_cnl_ins.insert_dml(p_rec);
381: --
382: -- Call the supporting post-insert operation
383: --
384: per_cnl_ins.post_insert
385: (p_effective_date ,p_rec );
386: --
387: -- Call to raise any errors on multi-message list
388: hr_multi_message.end_validation_set;

Line 470: per_cnl_ins.ins

466: --
467: -- Having converted the arguments into the per_cnl_rec
468: -- plsql record structure we call the corresponding record business process.
469: --
470: per_cnl_ins.ins
471: (p_effective_date
472: ,l_rec
473: );
474: --

Line 484: end per_cnl_ins;

480: --
481: hr_utility.set_location(' Leaving:'||l_proc, 10);
482: End ins;
483: --
484: end per_cnl_ins;