DBA Data[Home] [Help]

APPS.PER_CNF_INS dependencies on PER_CNF_INS

Line 1: Package Body per_cnf_ins as

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

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

4: -- ----------------------------------------------------------------------------
5: -- | Private Global Definitions |
6: -- ----------------------------------------------------------------------------
7: --
8: g_package varchar2(33) := ' per_cnf_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_cnf_ins.g_configuration_code_i := p_configuration_code;

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

Line 173: per_cnf_ins.g_configuration_code_i;

169: Cursor C_Sel2 is
170: Select null
171: from per_ri_configurations
172: where configuration_code =
173: per_cnf_ins.g_configuration_code_i;
174: --
175: l_proc varchar2(72) := g_package||'pre_insert';
176: l_exists varchar2(1);
177: --

Line 181: If (per_cnf_ins.g_configuration_code_i is not null) Then

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

Line 201: per_cnf_ins.g_configuration_code_i;

197: --
198: -- Use registered key values and clear globals
199: --
200: p_rec.configuration_code :=
201: per_cnf_ins.g_configuration_code_i;
202: per_cnf_ins.g_configuration_code_i := null;
203: Else
204: --
205: -- No registerd key values, so select the next sequence number

Line 202: per_cnf_ins.g_configuration_code_i := null;

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

Line 315: per_cnf_ins.pre_insert(p_rec);

311: hr_multi_message.end_validation_set;
312: --
313: -- Call the supporting pre-insert operation
314: --
315: per_cnf_ins.pre_insert(p_rec);
316: --
317: -- Insert the row
318: --
319: per_cnf_ins.insert_dml(p_rec);

Line 319: per_cnf_ins.insert_dml(p_rec);

315: per_cnf_ins.pre_insert(p_rec);
316: --
317: -- Insert the row
318: --
319: per_cnf_ins.insert_dml(p_rec);
320: --
321: -- Call the supporting post-insert operation
322: --
323: per_cnf_ins.post_insert

Line 323: per_cnf_ins.post_insert

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

Line 365: per_cnf_ins.ins

361: --
362: -- Having converted the arguments into the per_cnf_rec
363: -- plsql record structure we call the corresponding record business process.
364: --
365: per_cnf_ins.ins
366: (p_effective_date
367: ,l_rec
368: );
369: --

Line 379: end per_cnf_ins;

375: --
376: hr_utility.set_location(' Leaving:'||l_proc, 10);
377: End ins;
378: --
379: end per_cnf_ins;