DBA Data[Home] [Help]

APPS.HR_FCN_BUS dependencies on HR_UTILITY

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

24: l_proc varchar2(72) := g_package||'set_security_group_id';
25: --
26: begin
27: --
28: hr_utility.set_location('Entering:'|| l_proc, 10);
29: --
30: -- No business group context. Security group is not applicable.
31: --
32: null;

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

30: -- No business group context. Security group is not applicable.
31: --
32: null;
33: --
34: hr_utility.set_location(' Leaving:'|| l_proc, 20);
35: --
36: end set_security_group_id;
37: --
38: -- ---------------------------------------------------------------------------

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

48: l_proc varchar2(72) := g_package||'return_legislation_code';
49: --
50: Begin
51: --
52: hr_utility.set_location('Entering:'|| l_proc, 10);
53: --
54: -- Legislation code not available for form canvases
55: --
56: l_legislation_code := null;

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

54: -- Legislation code not available for form canvases
55: --
56: l_legislation_code := null;
57: --
58: hr_utility.set_location(' Leaving:'|| l_proc, 40);
59: return l_legislation_code;
60: end return_legislation_code;
61: --
62: -- ----------------------------------------------------------------------------

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

146: l_proc varchar2(72) := g_package || 'chk_form_window_id';
147: l_api_updating boolean;
148: --
149: Begin
150: hr_utility.set_location('Entering:'||l_proc, 10);
151: --
152: -- Check value has been passed
153: --
154: hr_api.mandatory_arg_error

Line 160: hr_utility.set_location('Leaving:'||l_proc, 100);

156: ,p_argument => 'form_window_id'
157: ,p_argument_value => p_form_window_id
158: );
159: --
160: hr_utility.set_location('Leaving:'||l_proc, 100);
161: End chk_form_window_id;
162: --
163: -- ----------------------------------------------------------------------------
164: -- |----------------------------< chk_canvas_name >---------------------------|

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

173: l_proc varchar2(72) := g_package || 'chk_canvas_name';
174: l_api_updating boolean;
175: --
176: Begin
177: hr_utility.set_location('Entering:'||l_proc, 10);
178: --
179: -- Check value has been passed
180: --
181: hr_api.mandatory_arg_error

Line 196: hr_utility.set_location('Leaving:'||l_proc, 100);

192: fnd_message.set_token('STEP','10');
193: fnd_message.raise_error;
194: end if;
195: --
196: hr_utility.set_location('Leaving:'||l_proc, 100);
197: End chk_canvas_name;
198: --
199: -- ----------------------------------------------------------------------------
200: -- |----------------------------< chk_canvas_type >---------------------------|

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

209: l_proc varchar2(72) := g_package || 'chk_canvas_type';
210: l_api_updating boolean;
211: --
212: Begin
213: hr_utility.set_location('Entering:'||l_proc, 10);
214: --
215: -- Check mandatory arguments have been set
216: --
217: hr_api.mandatory_arg_error

Line 227: hr_utility.set_location(l_proc,20);

223: l_api_updating := hr_fcn_shd.api_updating
224: (p_form_canvas_id => p_form_canvas_id
225: ,p_object_version_number => p_object_version_number
226: );
227: hr_utility.set_location(l_proc,20);
228: --
229: -- Only proceed with SQL validation if absolutely necessary
230: --
231: if ( ( l_api_updating

Line 236: hr_utility.set_location(l_proc,30);

232: and nvl(hr_fcn_shd.g_old_rec.canvas_type,hr_api.g_varchar2) <>
233: nvl(p_canvas_type,hr_api.g_varchar2))
234: or (NOT l_api_updating)) then
235: --
236: hr_utility.set_location(l_proc,30);
237: --
238: -- Check value has been passed
239: --
240: hr_api.mandatory_arg_error

Line 246: hr_utility.set_location(l_proc,40);

242: ,p_argument => 'canvas_type'
243: ,p_argument_value => p_canvas_type
244: );
245: --
246: hr_utility.set_location(l_proc,40);
247: --
248: -- Must exist in hr_standard_lookups where lookup_type is CANVAS_TYPES
249: --
250: if hr_api.not_exists_in_hrstanlookups

Line 263: hr_utility.set_location('Leaving:'||l_proc, 100);

259: end if;
260: --
261: end if;
262: --
263: hr_utility.set_location('Leaving:'||l_proc, 100);
264: End chk_canvas_type;
265: --
266: -- ----------------------------------------------------------------------------
267: -- |------------------------------< chk_delete >------------------------------|

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

272: --
273: l_proc varchar2(72) := g_package||'chk_delete';
274: --
275: Begin
276: hr_utility.set_location('Entering:'||l_proc, 5);
277: --
278: -- No additional validation required
279: --
280: null;

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

278: -- No additional validation required
279: --
280: null;
281: --
282: hr_utility.set_location(' Leaving:'||l_proc, 10);
283: End chk_delete;
284: --
285: -- ----------------------------------------------------------------------------
286: -- |---------------------------< insert_validate >----------------------------|

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

292: --
293: l_proc varchar2(72) := g_package||'insert_validate';
294: --
295: Begin
296: hr_utility.set_location('Entering:'||l_proc, 5);
297: --
298: -- Check mandatory arguments have been set
299: --
300: hr_api.mandatory_arg_error

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

326: ,p_object_version_number => p_rec.object_version_number
327: ,p_canvas_type => p_rec.canvas_type
328: );
329: --
330: hr_utility.set_location(' Leaving:'||l_proc, 10);
331: End insert_validate;
332: --
333: -- ----------------------------------------------------------------------------
334: -- |---------------------------< update_validate >----------------------------|

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

340: --
341: l_proc varchar2(72) := g_package||'update_validate';
342: --
343: Begin
344: hr_utility.set_location('Entering:'||l_proc, 5);
345: --
346: -- Check mandatory arguments have been set
347: --
348: hr_api.mandatory_arg_error

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

379: ,p_object_version_number => p_rec.object_version_number
380: ,p_canvas_type => p_rec.canvas_type
381: );
382: --
383: hr_utility.set_location(' Leaving:'||l_proc, 10);
384: End update_validate;
385: --
386: -- ----------------------------------------------------------------------------
387: -- |---------------------------< delete_validate >----------------------------|

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

392: --
393: l_proc varchar2(72) := g_package||'delete_validate';
394: --
395: Begin
396: hr_utility.set_location('Entering:'||l_proc, 5);
397: --
398: -- Call all supporting business operations
399: --
400: chk_delete

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

400: chk_delete
401: (p_rec => p_rec
402: );
403: --
404: hr_utility.set_location(' Leaving:'||l_proc, 10);
405: End delete_validate;
406: --
407: end hr_fcn_bus;