DBA Data[Home] [Help]

APPS.PER_RSL_BUS dependencies on HR_UTILITY

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

50: l_proc varchar2(72) := g_package||'set_security_group_id';
51: --
52: begin
53: --
54: hr_utility.set_location('Entering:'|| l_proc, 10);
55: --
56: -- Ensure that all the mandatory parameter are not null
57: --
58: hr_api.mandatory_arg_error

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

86: (p_security_group_id => l_security_group_id
87: );
88: end if;
89: --
90: hr_utility.set_location(' Leaving:'|| l_proc, 20);
91: --
92: end set_security_group_id;
93: -- ---------------------------------------------------------------------------
94: -- |---------------------< return_legislation_code >-------------------------|

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

126: l_proc varchar2(72) := g_package||'return_legislation_code';
127: --
128: Begin
129: --
130: hr_utility.set_location('Entering:'|| l_proc, 10);
131: --
132: -- Ensure that all the mandatory parameter are not null
133: --
134: hr_api.mandatory_arg_error

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

147: -- call to this function. Just return the value in the global
148: -- variable.
149: --
150: l_legislation_code := per_rsl_bus.g_legislation_code;
151: hr_utility.set_location(l_proc, 20);
152: else
153: --
154: -- The ID is different to the last call to this function
155: -- or this is the first call to this function.

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

164: close csr_leg_code;
165: fnd_message.set_name('PAY','HR_7220_INVALID_PRIMARY_KEY');
166: fnd_message.raise_error;
167: end if;
168: hr_utility.set_location(l_proc,30);
169: --
170: -- Set the global variables so the values are
171: -- available for the next call to this function.
172: --

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

174: per_rsl_bus.g_rating_scale_id := p_rating_scale_id;
175: per_rsl_bus.g_language := p_language;
176: per_rsl_bus.g_legislation_code := l_legislation_code;
177: end if;
178: hr_utility.set_location(' Leaving:'|| l_proc, 40);
179: return l_legislation_code;
180: end return_legislation_code;
181: --
182: -- ----------------------------------------------------------------------------

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

304: rsc.business_group_id is null)
305: and p_business_group_id is not null;
306: --
307: begin
308: hr_utility.set_location ('Entering:'|| l_proc, 1);
309: --
310: --
311: if p_name is null then
312: hr_utility.set_message(801, 'HR_51571_RSC_NAME_MANDATORY');

Line 312: hr_utility.set_message(801, 'HR_51571_RSC_NAME_MANDATORY');

308: hr_utility.set_location ('Entering:'|| l_proc, 1);
309: --
310: --
311: if p_name is null then
312: hr_utility.set_message(801, 'HR_51571_RSC_NAME_MANDATORY');
313: hr_utility.raise_error;
314: end if;
315: --
316: -- Only proceed with validation if:

Line 313: hr_utility.raise_error;

309: --
310: --
311: if p_name is null then
312: hr_utility.set_message(801, 'HR_51571_RSC_NAME_MANDATORY');
313: hr_utility.raise_error;
314: end if;
315: --
316: -- Only proceed with validation if:
317: -- a) The current g_old_rec is current and

Line 325: hr_utility.set_location (l_proc, 3);

321: (p_rating_scale_id => p_rating_scale_id
322: ,p_language => p_language
323: );
324: --
325: hr_utility.set_location (l_proc, 3);
326: --
327: if (l_api_updating AND
328: nvl(per_rsl_shd.g_old_rec.name, hr_api.g_varchar2)
329: <> nvl(p_name, hr_api.g_varchar2)

Line 333: hr_utility.set_location (l_proc, 4);

329: <> nvl(p_name, hr_api.g_varchar2)
330: or not l_api_updating)
331: then
332: --
333: hr_utility.set_location (l_proc, 4);
334: --
335: -- Check that NAME is UNIQUE
336: --
337: open csr_name_exists;

Line 338: hr_utility.set_location (l_proc, 100);

334: --
335: -- Check that NAME is UNIQUE
336: --
337: open csr_name_exists;
338: hr_utility.set_location (l_proc, 100);
339: fetch csr_name_exists into l_exists;
340: if csr_name_exists%found then
341: hr_utility.set_location(l_proc, 10);
342: close csr_name_exists;

Line 341: hr_utility.set_location(l_proc, 10);

337: open csr_name_exists;
338: hr_utility.set_location (l_proc, 100);
339: fetch csr_name_exists into l_exists;
340: if csr_name_exists%found then
341: hr_utility.set_location(l_proc, 10);
342: close csr_name_exists;
343: hr_utility.set_location(to_char(l_exists), 99);
344: if l_exists is null then
345: fnd_message.set_name('PER', 'HR_52696_RSC_NAME_IN_GLOB');

Line 343: hr_utility.set_location(to_char(l_exists), 99);

339: fetch csr_name_exists into l_exists;
340: if csr_name_exists%found then
341: hr_utility.set_location(l_proc, 10);
342: close csr_name_exists;
343: hr_utility.set_location(to_char(l_exists), 99);
344: if l_exists is null then
345: fnd_message.set_name('PER', 'HR_52696_RSC_NAME_IN_GLOB');
346: fnd_message.raise_error;
347: else

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

351: end if;
352: close csr_name_exists;
353: end if;
354: --
355: hr_utility.set_location ('Leaving '||l_proc, 20);
356: end chk_name;
357: --
358: -- ----------------------------------------------------------------------------
359: -- |------------------------< validate_translation>--------------------------|

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

375: l_rsc_rec csr_rating_scale%ROWTYPE;
376: --
377: Begin
378: --
379: hr_utility.set_location('Entering:'||l_proc,5);
380: --
381: open csr_rating_scale;
382: --
383: fetch csr_rating_scale into l_rsc_rec;

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

406: -- Description Amended with comment
407: l_proc varchar2(72) := g_package||'insert_validate';
408: --
409: Begin
410: hr_utility.set_location('Entering:'||l_proc, 5);
411: --
412: -- Call all supporting business operations
413: --
414: --

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

419: --
420: -- Validate Dependent Attributes
421: --
422: --
423: hr_utility.set_location(' Leaving:'||l_proc, 10);
424: End insert_validate;
425: --
426: -- ----------------------------------------------------------------------------
427: -- |---------------------------< update_validate >----------------------------|

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

432: --
433: l_proc varchar2(72) := g_package||'update_validate';
434: --
435: Begin
436: hr_utility.set_location('Entering:'||l_proc, 5);
437: --
438: -- Call all supporting business operations
439: --
440: --

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

452: ( p_rec
453: );
454: --
455: --
456: hr_utility.set_location(' Leaving:'||l_proc, 10);
457: End update_validate;
458: --
459: -- ----------------------------------------------------------------------------
460: -- |---------------------------< delete_validate >----------------------------|

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

465: --
466: l_proc varchar2(72) := g_package||'delete_validate';
467: --
468: Begin
469: hr_utility.set_location('Entering:'||l_proc, 5);
470: --
471: -- Call all supporting business operations
472: --
473: hr_utility.set_location(' Leaving:'||l_proc, 10);

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

469: hr_utility.set_location('Entering:'||l_proc, 5);
470: --
471: -- Call all supporting business operations
472: --
473: hr_utility.set_location(' Leaving:'||l_proc, 10);
474: End delete_validate;
475: --
476: -- ----------------------------------------------------------------------------
477: -- |-----------------------< set_translation_globals >------------------------|

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

506: l_proc varchar2(72) := g_package||'set_translation_globals';
507: --
508: BEGIN
509: --
510: hr_utility.set_location('Entering:'||l_proc,5);
511: --
512: g_business_group_id := p_business_group_id;
513: --
514: hr_utility.set_location('Leaving:'||l_proc,10);

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

510: hr_utility.set_location('Entering:'||l_proc,5);
511: --
512: g_business_group_id := p_business_group_id;
513: --
514: hr_utility.set_location('Leaving:'||l_proc,10);
515: --
516: END;
517: --
518: -- ----------------------------------------------------------------------------

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

552: l_proc varchar2(72) := g_package||'validate_translation';
553: --
554: BEGIN
555: --
556: hr_utility.set_location('Entering:'||l_proc,5);
557: --
558: chk_name
559: ( p_rating_scale_id => p_rating_scale_id
560: , p_language => p_language

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

561: , p_name => p_name
562: , p_business_group_id => nvl(p_business_group_id, g_business_group_id)
563: );
564: --
565: hr_utility.set_location('Leaving:'||l_proc,10);
566: --
567: END;
568: --
569: end per_rsl_bus;