DBA Data[Home] [Help]

APPS.HR_PDE_BUS dependencies on HR_UTILITY

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

39: l_proc varchar2(72) := g_package||'return_legislation_code';
40: --
41: Begin
42: --
43: hr_utility.set_location('Entering:'|| l_proc, 10);
44: --
45: -- Ensure that all the mandatory parameter are not null
46: --
47: hr_api.mandatory_arg_error

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

57: -- call to this function. Just return the value in the global
58: -- variable.
59: --
60: l_legislation_code := hr_pde_bus.g_legislation_code;
61: hr_utility.set_location(l_proc, 20);
62: else
63: --
64: -- The ID is different to the last call to this function
65: -- or this is the first call to this function.

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

74: close csr_leg_code;
75: fnd_message.set_name('PAY','HR_7220_INVALID_PRIMARY_KEY');
76: fnd_message.raise_error;
77: end if;
78: hr_utility.set_location(l_proc,30);
79: --
80: -- Set the global variables so the values are
81: -- available for the next call to this function.
82: --

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

83: close csr_leg_code;
84: hr_pde_bus.g_person_deplymt_eit_id := p_person_deplymt_eit_id;
85: hr_pde_bus.g_legislation_code := l_legislation_code;
86: end if;
87: hr_utility.set_location(' Leaving:'|| l_proc, 40);
88: return l_legislation_code;
89: end return_legislation_code;
90: --
91: -- ----------------------------------------------------------------------------

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

124: l_argument varchar2(30);
125: --
126: Begin
127: --
128: hr_utility.set_location('Entering:'|| l_proc,10);
129: --
130: -- Only proceed with the validation if a row exists for the current
131: -- record in the HR Schema.
132: --

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

139: fnd_message.set_token('STEP ', '5');
140: fnd_message.raise_error;
141: END IF;
142: --
143: hr_utility.set_location (l_proc, 20);
144: --
145: if nvl(p_rec.person_deployment_id,hr_api.g_number)
146: <> nvl(hr_pde_shd.g_old_rec.person_deployment_id,hr_api.g_number) then
147: l_argument := 'person_deployment_id';

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

153: l_argument := 'person_extra_info_id';
154: raise l_error;
155: end if;
156: --
157: hr_utility.set_location(' Leaving : '|| l_proc, 30);
158: --
159: exception
160: when l_error then
161: hr_api.argument_changed_error

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

204: from hr_person_deployments
205: where person_deployment_id = p_person_deployment_id;
206: --
207: begin
208: hr_utility.set_location('Entering:'||l_proc, 10);
209: --
210: -- Check mandatory parameters have been set
211: --
212: hr_api.mandatory_arg_error

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

225: else
226: close csr_deployment;
227: end if;
228: --
229: hr_utility.set_location('Leaving:'||l_proc, 20);
230: end chk_person_deployment_id;
231: --
232: -- ---------------------------------------------------------------------------
233: -- |------------------------< chk_person_extra_info_id >---------------------|

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

293: where pdt.person_deployment_id = p_person_deployment_id
294: and pdt.to_business_group_id = bg.business_group_id;
295: --
296: begin
297: hr_utility.set_location('Entering:'||l_proc, 10);
298: --
299: -- Check mandatory parameters have been set
300: --
301: hr_api.mandatory_arg_error

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

359: --
360: l_proc varchar2(72) := g_package||'insert_validate';
361: --
362: Begin
363: hr_utility.set_location('Entering:'||l_proc, 5);
364: --
365: -- CLIENT_INFO not set. No lookup validation or joins to HR_LOOKUPS
366: --
367: -- Call all supporting business operations

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

374: hr_pde_bus.chk_person_extra_info_id
375: (p_person_extra_info_id => p_rec.person_extra_info_id
376: ,p_person_deployment_id => p_rec.person_deployment_id);
377: --
378: hr_utility.set_location(' Leaving:'||l_proc, 10);
379: End insert_validate;
380: --
381: -- ----------------------------------------------------------------------------
382: -- |---------------------------< update_validate >----------------------------|

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

387: --
388: l_proc varchar2(72) := g_package||'update_validate';
389: --
390: Begin
391: hr_utility.set_location('Entering:'||l_proc, 5);
392: --
393: -- CLIENT_INFO not set. No lookup validation or joins to HR_LOOKUPS
394: --
395: -- Call all supporting business operations

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

401: );
402: --
403: -- None of the columns are user-updateable so no other checks are necessary
404: --
405: hr_utility.set_location(' Leaving:'||l_proc, 10);
406: End update_validate;
407: --
408: -- ----------------------------------------------------------------------------
409: -- |---------------------------< delete_validate >----------------------------|

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

414: --
415: l_proc varchar2(72) := g_package||'delete_validate';
416: --
417: Begin
418: hr_utility.set_location('Entering:'||l_proc, 5);
419: --
420: -- Call all supporting business operations
421: --
422: hr_utility.set_location(' Leaving:'||l_proc, 10);

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

418: hr_utility.set_location('Entering:'||l_proc, 5);
419: --
420: -- Call all supporting business operations
421: --
422: hr_utility.set_location(' Leaving:'||l_proc, 10);
423: End delete_validate;
424: --
425: end hr_pde_bus;