DBA Data[Home] [Help]

APPS.HR_UCX_INS dependencies on HR_UCX_INS

Line 1: Package Body hr_ucx_ins as

1: Package Body hr_ucx_ins as
2: /* $Header: hrucxrhi.pkb 120.0 2005/05/31 03:38 appldev noship $ */
3: --
4: -- ----------------------------------------------------------------------------
5: -- | Private Global Definitions |

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

4: -- ----------------------------------------------------------------------------
5: -- | Private Global Definitions |
6: -- ----------------------------------------------------------------------------
7: --
8: g_package varchar2(33) := ' hr_ucx_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: hr_ucx_ins.g_ui_context_id_i := p_ui_context_id;

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

Line 177: hr_ucx_ins.g_ui_context_id_i;

173: Cursor C_Sel2 is
174: Select null
175: from hr_ki_ui_contexts
176: where ui_context_id =
177: hr_ucx_ins.g_ui_context_id_i;
178: --
179: l_proc varchar2(72) := g_package||'pre_insert';
180: l_exists varchar2(1);
181: --

Line 185: If (hr_ucx_ins.g_ui_context_id_i is not null) Then

181: --
182: Begin
183: hr_utility.set_location('Entering:'||l_proc, 5);
184: --
185: If (hr_ucx_ins.g_ui_context_id_i is not null) Then
186: --
187: -- Verify registered primary key values not already in use
188: --
189: Open C_Sel2;

Line 205: hr_ucx_ins.g_ui_context_id_i;

201: --
202: -- Use registered key values and clear globals
203: --
204: p_rec.ui_context_id :=
205: hr_ucx_ins.g_ui_context_id_i;
206: hr_ucx_ins.g_ui_context_id_i := null;
207: Else
208: --
209: -- No registerd key values, so select the next sequence number

Line 206: hr_ucx_ins.g_ui_context_id_i := null;

202: -- Use registered key values and clear globals
203: --
204: p_rec.ui_context_id :=
205: hr_ucx_ins.g_ui_context_id_i;
206: hr_ucx_ins.g_ui_context_id_i := null;
207: Else
208: --
209: -- No registerd key values, so select the next sequence number
210: --

Line 325: hr_ucx_ins.pre_insert(p_rec);

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

Line 329: hr_ucx_ins.insert_dml(p_rec);

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

Line 333: hr_ucx_ins.post_insert

329: hr_ucx_ins.insert_dml(p_rec);
330: --
331: -- Call the supporting post-insert operation
332: --
333: hr_ucx_ins.post_insert
334: (p_rec
335: );
336: --
337: -- Call to raise any errors on multi-message list

Line 377: hr_ucx_ins.ins

373: --
374: -- Having converted the arguments into the hr_ucx_rec
375: -- plsql record structure we call the corresponding record business process.
376: --
377: hr_ucx_ins.ins
378: (l_rec
379: );
380: --
381: -- As the primary key argument(s)

Line 390: end hr_ucx_ins;

386: --
387: hr_utility.set_location(' Leaving:'||l_proc, 10);
388: End ins;
389: --
390: end hr_ucx_ins;