DBA Data[Home] [Help]

APPS.HR_EAP_UPD dependencies on HR_UTILITY

Line 59: hr_utility.set_location('Entering:'||l_proc, 5);

55: --
56: --Make sure that ext_application_id is not null
57: --
58:
59: hr_utility.set_location('Entering:'||l_proc, 5);
60:
61: hr_api.mandatory_arg_error
62: (p_api_name => l_proc
63: ,p_argument => 'EXT_APPLICATION_ID'

Line 67: hr_utility.set_location('Validating:'||l_proc, 10);

63: ,p_argument => 'EXT_APPLICATION_ID'
64: ,p_argument_value => p_ext_application_id
65: );
66:
67: hr_utility.set_location('Validating:'||l_proc, 10);
68:
69: OPEN csr_app_id;
70: FETCH csr_app_id INTO l_app_id;
71: IF csr_app_id%NOTFOUND THEN

Line 81: hr_utility.set_location('Calling update SSO:'||l_proc, 20);

77: END IF;
78: CLOSE csr_app_id;
79:
80:
81: hr_utility.set_location('Calling update SSO:'||l_proc, 20);
82:
83: -- update the application
84:
85: hr_sso_utl.PSTORE_MODIFY_APP_INFO (

Line 179: hr_utility.set_location('Entering:'||l_proc, 5);

175: --
176: l_proc varchar2(72) := g_package||'update_dml';
177: --
178: Begin
179: hr_utility.set_location('Entering:'||l_proc, 5);
180: --
181: --
182: --
183: --

Line 195: hr_utility.set_location(' Leaving:'||l_proc, 10);

191: where ext_application_id = p_rec.ext_application_id;
192: --
193: --
194: --
195: hr_utility.set_location(' Leaving:'||l_proc, 10);
196: --
197: Exception
198: When hr_api.check_integrity_violated Then
199: -- A check constraint has been violated

Line 257: hr_utility.set_location('Entering:'||l_proc, 5);

253: --
254: l_proc varchar2(72) := g_package||'pre_update';
255: --
256: Begin
257: hr_utility.set_location('Entering:'||l_proc, 5);
258: --
259: hr_utility.set_location(' Leaving:'||l_proc, 10);
260: End pre_update;
261: --

Line 259: hr_utility.set_location(' Leaving:'||l_proc, 10);

255: --
256: Begin
257: hr_utility.set_location('Entering:'||l_proc, 5);
258: --
259: hr_utility.set_location(' Leaving:'||l_proc, 10);
260: End pre_update;
261: --
262: -- ----------------------------------------------------------------------------
263: -- |-----------------------------< post_update >------------------------------|

Line 301: hr_utility.set_location('Entering:'||l_proc, 5);

297: --
298: l_proc varchar2(72) := g_package||'post_update';
299: --
300: Begin
301: hr_utility.set_location('Entering:'||l_proc, 5);
302: begin
303: --
304: hr_eap_rku.after_update
305: (p_ext_application_id

Line 325: hr_utility.set_location(' Leaving:'||l_proc, 10);

321: ,p_hook_type => 'AU');
322: --
323: end;
324: --
325: hr_utility.set_location(' Leaving:'||l_proc, 10);
326: End post_update;
327: --
328: -- ----------------------------------------------------------------------------
329: -- |-----------------------------< convert_defs >-----------------------------|

Line 403: hr_utility.set_location('Entering:'||l_proc, 5);

399: --
400: l_proc varchar2(72) := g_package||'upd';
401: --
402: Begin
403: hr_utility.set_location('Entering:'||l_proc, 5);
404: --
405: -- We must lock the row which we need to update.
406: --
407: hr_eap_shd.lck

Line 457: hr_utility.set_location('Entering:'||l_proc, 5);

453: l_rec hr_eap_shd.g_rec_type;
454: l_proc varchar2(72) := g_package||'upd';
455: --
456: Begin
457: hr_utility.set_location('Entering:'||l_proc, 5);
458: --
459: -- Call conversion function to turn arguments into the
460: -- l_rec structure.
461: --

Line 478: hr_utility.set_location(' Leaving:'||l_proc, 10);

474: (l_rec
475: );
476: --
477: --
478: hr_utility.set_location(' Leaving:'||l_proc, 10);
479: End upd;
480: --
481: end hr_eap_upd;