DBA Data[Home] [Help]

APPS.HR_TIS_INS dependencies on HR_TIS_INS

Line 1: Package Body hr_tis_ins as

1: Package Body hr_tis_ins as
2: /* $Header: hrtisrhi.pkb 120.3 2008/02/25 13:24:06 avarri ship $ */
3: --
4: -- ----------------------------------------------------------------------------
5: -- | Private Global Definitions |

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

4: -- ----------------------------------------------------------------------------
5: -- | Private Global Definitions |
6: -- ----------------------------------------------------------------------------
7: --
8: g_package varchar2(33) := ' hr_tis_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_tis_ins.g_topic_integrations_id_i := p_topic_integrations_id;

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

Line 213: hr_tis_ins.g_topic_integrations_id_i;

209: Cursor C_Sel2 is
210: Select null
211: from hr_ki_topic_integrations
212: where topic_integrations_id =
213: hr_tis_ins.g_topic_integrations_id_i;
214: --
215: l_proc varchar2(72) := g_package||'pre_insert';
216: l_exists varchar2(1);
217: --

Line 221: If (hr_tis_ins.g_topic_integrations_id_i is not null) Then

217: --
218: Begin
219: hr_utility.set_location('Entering:'||l_proc, 5);
220: --
221: If (hr_tis_ins.g_topic_integrations_id_i is not null) Then
222: --
223: -- Verify registered primary key values not already in use
224: --
225: Open C_Sel2;

Line 241: hr_tis_ins.g_topic_integrations_id_i;

237: --
238: -- Use registered key values and clear globals
239: --
240: p_rec.topic_integrations_id :=
241: hr_tis_ins.g_topic_integrations_id_i;
242: hr_tis_ins.g_topic_integrations_id_i := null;
243: Else
244: --
245: -- No registerd key values, so select the next sequence number

Line 242: hr_tis_ins.g_topic_integrations_id_i := null;

238: -- Use registered key values and clear globals
239: --
240: p_rec.topic_integrations_id :=
241: hr_tis_ins.g_topic_integrations_id_i;
242: hr_tis_ins.g_topic_integrations_id_i := null;
243: Else
244: --
245: -- No registerd key values, so select the next sequence number
246: --

Line 363: hr_tis_ins.pre_insert(p_rec);

359: hr_multi_message.end_validation_set;
360: --
361: -- Call the supporting pre-insert operation
362: --
363: hr_tis_ins.pre_insert(p_rec);
364: --
365: -- Insert the row
366: --
367: hr_tis_ins.insert_dml(p_rec);

Line 367: hr_tis_ins.insert_dml(p_rec);

363: hr_tis_ins.pre_insert(p_rec);
364: --
365: -- Insert the row
366: --
367: hr_tis_ins.insert_dml(p_rec);
368: --
369: -- Call the supporting post-insert operation
370: --
371: hr_tis_ins.post_insert

Line 371: hr_tis_ins.post_insert

367: hr_tis_ins.insert_dml(p_rec);
368: --
369: -- Call the supporting post-insert operation
370: --
371: hr_tis_ins.post_insert
372: (p_rec
373: );
374: --
375: -- Call to raise any errors on multi-message list

Line 451: hr_tis_ins.ins

447: --
448: -- Having converted the arguments into the hr_tis_rec
449: -- plsql record structure we call the corresponding record business process.
450: --
451: hr_tis_ins.ins
452: (l_rec
453: );
454: --
455: -- As the primary key argument(s)

Line 464: end hr_tis_ins;

460: --
461: hr_utility.set_location(' Leaving:'||l_proc, 10);
462: End ins;
463: --
464: end hr_tis_ins;