DBA Data[Home] [Help]

APPS.PER_ENV_INS dependencies on PER_ENV_INS

Line 1: Package Body per_env_ins as

1: Package Body per_env_ins as
2: /* $Header: peenvrhi.pkb 120.1 2005/08/04 03:23:12 vegopala noship $ */
3: --
4: -- ----------------------------------------------------------------------------
5: -- | Private Global Definitions |

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

4: -- ----------------------------------------------------------------------------
5: -- | Private Global Definitions |
6: -- ----------------------------------------------------------------------------
7: --
8: g_package varchar2(33) := ' per_env_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_env_ins.g_cal_entry_value_id_i := p_cal_entry_value_id;

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

Line 188: per_env_ins.g_cal_entry_value_id_i;

184: Cursor C_Sel2 is
185: Select null
186: from per_cal_entry_values
187: where cal_entry_value_id =
188: per_env_ins.g_cal_entry_value_id_i;
189: --
190: l_proc varchar2(72) := g_package||'pre_insert';
191: l_exists varchar2(1);
192: --

Line 196: If (per_env_ins.g_cal_entry_value_id_i is not null) Then

192: --
193: Begin
194: hr_utility.set_location('Entering:'||l_proc, 5);
195: --
196: If (per_env_ins.g_cal_entry_value_id_i is not null) Then
197: --
198: -- Verify registered primary key values not already in use
199: --
200: Open C_Sel2;

Line 216: per_env_ins.g_cal_entry_value_id_i;

212: --
213: -- Use registered key values and clear globals
214: --
215: p_rec.cal_entry_value_id :=
216: per_env_ins.g_cal_entry_value_id_i;
217: per_env_ins.g_cal_entry_value_id_i := null;
218: Else
219: --
220: -- No registerd key values, so select the next sequence number

Line 217: per_env_ins.g_cal_entry_value_id_i := null;

213: -- Use registered key values and clear globals
214: --
215: p_rec.cal_entry_value_id :=
216: per_env_ins.g_cal_entry_value_id_i;
217: per_env_ins.g_cal_entry_value_id_i := null;
218: Else
219: --
220: -- No registerd key values, so select the next sequence number
221: --

Line 329: per_env_ins.pre_insert(p_rec);

325: hr_multi_message.end_validation_set;
326: --
327: -- Call the supporting pre-insert operation
328: --
329: per_env_ins.pre_insert(p_rec);
330: --
331: -- Insert the row
332: --
333: per_env_ins.insert_dml(p_rec);

Line 333: per_env_ins.insert_dml(p_rec);

329: per_env_ins.pre_insert(p_rec);
330: --
331: -- Insert the row
332: --
333: per_env_ins.insert_dml(p_rec);
334: --
335: -- Call the supporting post-insert operation
336: --
337: per_env_ins.post_insert

Line 337: per_env_ins.post_insert

333: per_env_ins.insert_dml(p_rec);
334: --
335: -- Call the supporting post-insert operation
336: --
337: per_env_ins.post_insert
338: (p_effective_date
339: ,p_rec
340: );
341: --

Line 395: per_env_ins.ins

391: --
392: -- Having converted the arguments into the per_env_rec
393: -- plsql record structure we call the corresponding record business process.
394: --
395: per_env_ins.ins
396: (p_effective_date
397: ,l_rec
398: );
399: --

Line 409: end per_env_ins;

405: --
406: hr_utility.set_location(' Leaving:'||l_proc, 10);
407: End ins;
408: --
409: end per_env_ins;