DBA Data[Home] [Help]

APPS.PER_CPL_BUS dependencies on HR_UTILITY

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

43: l_proc varchar2(72) := g_package||'set_security_group_id';
44: --
45: begin
46: --
47: hr_utility.set_location('Entering:'|| l_proc, 10);
48: --
49: -- Ensure that all the mandatory parameter are not null
50: --
51: hr_api.mandatory_arg_error

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

79: (p_security_group_id => l_security_group_id
80: );
81: end if;
82: --
83: hr_utility.set_location(' Leaving:'|| l_proc, 20);
84: --
85: end set_security_group_id;
86: --
87: -- ---------------------------------------------------------------------------

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

113: l_proc varchar2(72) := g_package||'return_legislation_code';
114: --
115: Begin
116: --
117: hr_utility.set_location('Entering:'|| l_proc, 10);
118: --
119: -- Ensure that all the mandatory parameter are not null
120: --
121: hr_api.mandatory_arg_error

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

134: -- call to this function. Just return the value in the global
135: -- variable.
136: --
137: l_legislation_code := per_cpl_bus.g_legislation_code;
138: hr_utility.set_location(l_proc, 20);
139: else
140: --
141: -- The ID is different to the last call to this function
142: -- or this is the first call to this function.

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

151: close csr_leg_code;
152: fnd_message.set_name('PAY','HR_7220_INVALID_PRIMARY_KEY');
153: fnd_message.raise_error;
154: end if;
155: hr_utility.set_location(l_proc,30);
156: --
157: -- Set the global variables so the values are
158: -- available for the next call to this function.
159: --

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

161: per_cpl_bus.g_competence_id := p_competence_id;
162: per_cpl_bus.g_language := p_language;
163: per_cpl_bus.g_legislation_code := l_legislation_code;
164: end if;
165: hr_utility.set_location(' Leaving:'|| l_proc, 40);
166: return l_legislation_code;
167: end return_legislation_code;
168: --
169: -- ----------------------------------------------------------------------------

Line 219: hr_utility.set_location(l_proc, 6);

215: fnd_message.raise_error;
216: END IF;
217: --
218: --
219: hr_utility.set_location(l_proc, 6);
220: --
221:
222: --
223: End chk_non_updateable_args;

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

274: and competence_alias = p_competence_alias;
275:
276: --
277: begin
278: hr_utility.set_location('Entering:'|| l_proc, 1);
279: --
280: -- Check mandatory parameters have been set
281: --
282: -- Only proceed with validation if :

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

297: --
298: open csr_chk_alias;
299: fetch csr_chk_alias into l_exists;
300: if csr_chk_alias%found then
301: hr_utility.set_location(l_proc, 3);
302: -- alias is not unique
303: close csr_chk_alias;
304: fnd_message.set_name('PER','HR_52700_ALIAS_NOT_UNIQUE');
305: fnd_message.raise_error;

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

305: fnd_message.raise_error;
306: end if;
307: close csr_chk_alias;
308: end if;
309: hr_utility.set_location('Leaving:'|| l_proc, 10);
310: end chk_alias;
311: --
312: --
313: -- ----------------------------------------------------------------------------

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

320: --
321: l_proc varchar2(72) := g_package||'insert_validate';
322: --
323: Begin
324: hr_utility.set_location('Entering:'||l_proc, 5);
325: --
326: -- Call all supporting business operations
327: --
328: --

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

337:
338: -- Validate Dependent Attributes
339: --
340: --
341: hr_utility.set_location(' Leaving:'||l_proc, 10);
342: End insert_validate;
343: --
344: -- ----------------------------------------------------------------------------
345: -- |---------------------------< update_validate >----------------------------|

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

351: --
352: l_proc varchar2(72) := g_package||'update_validate';
353: --
354: Begin
355: hr_utility.set_location('Entering:'||l_proc, 5);
356: --
357: -- Call all supporting business operations
358:
359: -- "-- No business group context. HR_STANDARD_LOOKUPS used for validation."

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

370: , p_language => p_rec.language
371: , p_competence_alias => p_rec.competence_alias
372: );
373: --
374: hr_utility.set_location(' Leaving:'||l_proc, 10);
375: End update_validate;
376: --
377: -- ----------------------------------------------------------------------------
378: -- |---------------------------< delete_validate >----------------------------|

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

383: --
384: l_proc varchar2(72) := g_package||'delete_validate';
385: --
386: Begin
387: hr_utility.set_location('Entering:'||l_proc, 5);
388: --
389: -- Call all supporting business operations
390: --
391: hr_utility.set_location(' Leaving:'||l_proc, 10);

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

387: hr_utility.set_location('Entering:'||l_proc, 5);
388: --
389: -- Call all supporting business operations
390: --
391: hr_utility.set_location(' Leaving:'||l_proc, 10);
392: End delete_validate;
393: --
394: --
395: -- ----------------------------------------------------------------------------