DBA Data[Home] [Help]

APPS.HR_EAP_DEL dependencies on HR_UTILITY

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

31: --
32: --Make sure that ext_application_id is not null
33: --
34:
35: hr_utility.set_location('Entering:'||l_proc, 5);
36:
37: hr_api.mandatory_arg_error
38: (p_api_name => l_proc
39: ,p_argument => 'EXTERNAL_APPLICATION_ID'

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

39: ,p_argument => 'EXTERNAL_APPLICATION_ID'
40: ,p_argument_value => p_sso_id
41: );
42:
43: hr_utility.set_location('Validating:'||l_proc, 10);
44:
45: OPEN csr_app_id;
46: FETCH csr_app_id INTO l_ext_application_id;
47: IF csr_app_id%NOTFOUND THEN

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

53: END IF;
54: CLOSE csr_app_id;
55:
56:
57: hr_utility.set_location('Calling update SSO:'||l_proc, 20);
58:
59: -- delete the application
60: hr_sso_utl.delete_application
61: (

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

123: --
124: l_proc varchar2(72) := g_package||'delete_dml';
125: --
126: Begin
127: hr_utility.set_location('Entering:'||l_proc, 5);
128: --
129: --
130: --
131: -- Delete the hr_ki_ext_applications row.

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

134: where ext_application_id = p_rec.ext_application_id;
135: --
136: --
137: --
138: hr_utility.set_location(' Leaving:'||l_proc, 10);
139: --
140: Exception
141: When hr_api.child_integrity_violated then
142: -- Child integrity has been violated

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

184: --
185: l_proc varchar2(72) := g_package||'pre_delete';
186: --
187: Begin
188: hr_utility.set_location('Entering:'||l_proc, 5);
189: --
190: hr_utility.set_location(' Leaving:'||l_proc, 10);
191: End pre_delete;
192: --

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

186: --
187: Begin
188: hr_utility.set_location('Entering:'||l_proc, 5);
189: --
190: hr_utility.set_location(' Leaving:'||l_proc, 10);
191: End pre_delete;
192: --
193: -- ----------------------------------------------------------------------------
194: -- |-----------------------------< post_delete >------------------------------|

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

226: --
227: l_proc varchar2(72) := g_package||'post_delete';
228: --
229: Begin
230: hr_utility.set_location('Entering:'||l_proc, 5);
231: begin
232: --
233: hr_eap_rkd.after_delete
234: (p_ext_application_id

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

248: ,p_hook_type => 'AD');
249: --
250: end;
251: --
252: hr_utility.set_location(' Leaving:'||l_proc, 10);
253: End post_delete;
254: --
255: -- ----------------------------------------------------------------------------
256: -- |---------------------------------< del >----------------------------------|

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

261: --
262: l_proc varchar2(72) := g_package||'del';
263: --
264: Begin
265: hr_utility.set_location('Entering:'||l_proc, 5);
266: --
267: -- We must lock the row which we need to delete.
268: --
269: hr_eap_shd.lck

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

304: l_rec hr_eap_shd.g_rec_type;
305: l_proc varchar2(72) := g_package||'del';
306: --
307: Begin
308: hr_utility.set_location('Entering:'||l_proc, 5);
309: --
310: -- As the delete procedure accepts a plsql record structure we do need to
311: -- convert the arguments into the record structure.
312: -- We don't need to call the supplied conversion argument routine as we

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

320: -- business process
321: --
322: hr_eap_del.del(l_rec);
323: --
324: hr_utility.set_location(' Leaving:'||l_proc, 10);
325: End del;
326: --
327: end hr_eap_del;