DBA Data[Home] [Help]

APPS.PER_SSB_INS dependencies on PER_SSB_INS

Line 1: Package Body per_ssb_ins as

1: Package Body per_ssb_ins as
2: /* $Header: pessbrhi.pkb 115.1 2003/08/06 01:25:57 kavenkat noship $ */
3: --
4: -- ----------------------------------------------------------------------------
5: -- | Private Global Definitions |

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

4: -- ----------------------------------------------------------------------------
5: -- | Private Global Definitions |
6: -- ----------------------------------------------------------------------------
7: --
8: g_package varchar2(33) := ' per_ssb_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_ssb_ins.g_setup_sub_task_code_i := p_setup_sub_task_code;

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

Line 186: per_ssb_ins.g_setup_sub_task_code_i;

182: Cursor C_Sel2 is
183: Select null
184: from per_ri_setup_sub_tasks
185: where setup_sub_task_code =
186: per_ssb_ins.g_setup_sub_task_code_i;
187: --
188: l_proc varchar2(72) := g_package||'pre_insert';
189: l_exists varchar2(1);
190: --

Line 194: If (per_ssb_ins.g_setup_sub_task_code_i is not null) Then

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

Line 214: per_ssb_ins.g_setup_sub_task_code_i;

210: --
211: -- Use registered key values and clear globals
212: --
213: p_rec.setup_sub_task_code :=
214: per_ssb_ins.g_setup_sub_task_code_i;
215: per_ssb_ins.g_setup_sub_task_code_i := null;
216: Else
217: --
218: -- No registerd key values, so raise error

Line 215: per_ssb_ins.g_setup_sub_task_code_i := null;

211: -- Use registered key values and clear globals
212: --
213: p_rec.setup_sub_task_code :=
214: per_ssb_ins.g_setup_sub_task_code_i;
215: per_ssb_ins.g_setup_sub_task_code_i := null;
216: Else
217: --
218: -- No registerd key values, so raise error
219: --

Line 327: per_ssb_ins.pre_insert(p_rec);

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

Line 331: per_ssb_ins.insert_dml(p_rec);

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

Line 335: per_ssb_ins.post_insert

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

Line 391: per_ssb_ins.ins

387: --
388: -- Having converted the arguments into the per_ssb_rec
389: -- plsql record structure we call the corresponding record business process.
390: --
391: per_ssb_ins.ins
392: (p_effective_date
393: ,l_rec
394: );
395: --

Line 405: end per_ssb_ins;

401: --
402: hr_utility.set_location(' Leaving:'||l_proc, 10);
403: End ins;
404: --
405: end per_ssb_ins;