DBA Data[Home] [Help]

APPS.HR_EAP_INS dependencies on HR_EAP_INS

Line 1: Package Body hr_eap_ins as

1: Package Body hr_eap_ins as
2: /* $Header: hreaprhi.pkb 115.0 2004/01/09 00:17 vkarandi noship $ */
3: --
4: -- ----------------------------------------------------------------------------
5: -- | Private Global Definitions |

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

4: -- ----------------------------------------------------------------------------
5: -- | Private Global Definitions |
6: -- ----------------------------------------------------------------------------
7: --
8: g_package varchar2(33) := ' hr_eap_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 99: hr_eap_ins.ins

95:
96:
97: -- insert record into hr_ki_ext_applications
98:
99: hr_eap_ins.ins
100: (
101: p_ext_application_id => l_ki_app_id
102: ,p_external_application_name => p_app_code
103: ,p_external_application_id => l_app_id

Line 122: hr_eap_ins.g_ext_application_id_i := p_ext_application_id;

118: --
119: Begin
120: hr_utility.set_location('Entering:'||l_proc, 10);
121: --
122: hr_eap_ins.g_ext_application_id_i := p_ext_application_id;
123: --
124: hr_utility.set_location(' Leaving:'||l_proc, 20);
125: End set_base_key_value;
126: --

Line 267: hr_eap_ins.g_ext_application_id_i;

263: Cursor C_Sel2 is
264: Select null
265: from hr_ki_ext_applications
266: where ext_application_id =
267: hr_eap_ins.g_ext_application_id_i;
268: --
269: l_proc varchar2(72) := g_package||'pre_insert';
270: l_exists varchar2(1);
271: --

Line 275: If (hr_eap_ins.g_ext_application_id_i is not null) Then

271: --
272: Begin
273: hr_utility.set_location('Entering:'||l_proc, 5);
274: --
275: If (hr_eap_ins.g_ext_application_id_i is not null) Then
276: --
277: -- Verify registered primary key values not already in use
278: --
279: Open C_Sel2;

Line 295: hr_eap_ins.g_ext_application_id_i;

291: --
292: -- Use registered key values and clear globals
293: --
294: p_rec.ext_application_id :=
295: hr_eap_ins.g_ext_application_id_i;
296: hr_eap_ins.g_ext_application_id_i := null;
297: Else
298: --
299: -- No registerd key values, so select the next sequence number

Line 296: hr_eap_ins.g_ext_application_id_i := null;

292: -- Use registered key values and clear globals
293: --
294: p_rec.ext_application_id :=
295: hr_eap_ins.g_ext_application_id_i;
296: hr_eap_ins.g_ext_application_id_i := null;
297: Else
298: --
299: -- No registerd key values, so select the next sequence number
300: --

Line 399: hr_eap_ins.pre_insert(p_rec);

395: hr_multi_message.end_validation_set;
396: --
397: -- Call the supporting pre-insert operation
398: --
399: hr_eap_ins.pre_insert(p_rec);
400: --
401: -- Insert the row
402: --
403: hr_eap_ins.insert_dml(p_rec);

Line 403: hr_eap_ins.insert_dml(p_rec);

399: hr_eap_ins.pre_insert(p_rec);
400: --
401: -- Insert the row
402: --
403: hr_eap_ins.insert_dml(p_rec);
404: --
405: -- Call the supporting post-insert operation
406: --
407: hr_eap_ins.post_insert

Line 407: hr_eap_ins.post_insert

403: hr_eap_ins.insert_dml(p_rec);
404: --
405: -- Call the supporting post-insert operation
406: --
407: hr_eap_ins.post_insert
408: (p_rec
409: );
410: --
411: -- Call to raise any errors on multi-message list

Line 445: hr_eap_ins.ins

441: --
442: -- Having converted the arguments into the hr_eap_rec
443: -- plsql record structure we call the corresponding record business process.
444: --
445: hr_eap_ins.ins
446: (l_rec
447: );
448: --
449: -- As the primary key argument(s)

Line 458: end hr_eap_ins;

454: --
455: hr_utility.set_location(' Leaving:'||l_proc, 10);
456: End ins;
457: --
458: end hr_eap_ins;