DBA Data[Home] [Help]

APPS.HR_HTL_BUS dependencies on HR_UTILITY

Line 113: hr_utility.set_location(' Entering:' || l_proc,10);

109: l_found varchar2(30);
110:
111: Begin
112:
113: hr_utility.set_location(' Entering:' || l_proc,10);
114:
115: hr_api.mandatory_arg_error
116: (p_api_name => l_proc
117: ,p_argument => 'HIERARCHY_ID'

Line 132: hr_utility.set_location(' Leaving:' || l_proc,20);

128: end if;
129:
130: close csr_htl_parent;
131:
132: hr_utility.set_location(' Leaving:' || l_proc,20);
133:
134: Exception
135: when app_exception.application_exception then
136: IF hr_multi_message.exception_add

Line 139: hr_utility.set_location(' Leaving:'|| l_proc,30);

135: when app_exception.application_exception then
136: IF hr_multi_message.exception_add
137: (p_associated_column1 => 'HR_KI_HIERARCHIES_TL.HIERARCHY_ID'
138: ) THEN
139: hr_utility.set_location(' Leaving:'|| l_proc,30);
140: raise;
141: END IF;
142:
143: hr_utility.set_location(' Leaving:'|| l_proc,40);

Line 143: hr_utility.set_location(' Leaving:'|| l_proc,40);

139: hr_utility.set_location(' Leaving:'|| l_proc,30);
140: raise;
141: END IF;
142:
143: hr_utility.set_location(' Leaving:'|| l_proc,40);
144: --
145: End chk_hierarchy_id;
146:
147: -- ----------------------------------------------------------------------------

Line 197: hr_utility.set_location(' Entering:' || l_proc,10);

193: l_found varchar2(30);
194:
195: Begin
196:
197: hr_utility.set_location(' Entering:' || l_proc,10);
198:
199: hr_api.mandatory_arg_error
200: (p_api_name => l_proc
201: ,p_argument => 'NAME'

Line 216: hr_utility.set_location(' Leaving:' || l_proc,20);

212: end if;
213:
214: close csr_htl_name;
215:
216: hr_utility.set_location(' Leaving:' || l_proc,20);
217:
218: Exception
219: when app_exception.application_exception then
220: IF hr_multi_message.exception_add

Line 223: hr_utility.set_location(' Leaving:'|| l_proc,30);

219: when app_exception.application_exception then
220: IF hr_multi_message.exception_add
221: (p_associated_column1 => 'HR_KI_HIERARCHIES_TL.NAME'
222: ) THEN
223: hr_utility.set_location(' Leaving:'|| l_proc,30);
224: raise;
225: END IF;
226:
227: hr_utility.set_location(' Leaving:'|| l_proc,40);

Line 227: hr_utility.set_location(' Leaving:'|| l_proc,40);

223: hr_utility.set_location(' Leaving:'|| l_proc,30);
224: raise;
225: END IF;
226:
227: hr_utility.set_location(' Leaving:'|| l_proc,40);
228: --
229: End chk_name;
230:
231:

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

240: --
241: l_proc varchar2(72) := g_package||'insert_validate';
242: --
243: Begin
244: hr_utility.set_location('Entering:'||l_proc, 5);
245: --
246: -- Call all supporting business operations
247: --
248: --

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

253: chk_hierarchy_id(p_hierarchy_id);
254: chk_name(p_rec.language,p_rec.name,p_hierarchy_id);
255:
256:
257: hr_utility.set_location(' Leaving:'||l_proc, 10);
258: End insert_validate;
259: --
260: -- ----------------------------------------------------------------------------
261: -- |---------------------------< update_validate >----------------------------|

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

266: --
267: l_proc varchar2(72) := g_package||'update_validate';
268: --
269: Begin
270: hr_utility.set_location('Entering:'||l_proc, 5);
271: --
272: -- Call all supporting business operations
273: --
274: --

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

282:
283: chk_name(p_rec.language,p_rec.name,p_rec.hierarchy_id);
284: --
285: --
286: hr_utility.set_location(' Leaving:'||l_proc, 10);
287:
288: End update_validate;
289: --
290: -- ----------------------------------------------------------------------------

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

296: --
297: l_proc varchar2(72) := g_package||'delete_validate';
298: --
299: Begin
300: hr_utility.set_location('Entering:'||l_proc, 5);
301: --
302: -- Call all supporting business operations
303: --
304: hr_utility.set_location(' Leaving:'||l_proc, 10);

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

300: hr_utility.set_location('Entering:'||l_proc, 5);
301: --
302: -- Call all supporting business operations
303: --
304: hr_utility.set_location(' Leaving:'||l_proc, 10);
305: End delete_validate;
306: --
307: end hr_htl_bus;