DBA Data[Home] [Help]

APPS.HR_PDC_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_pdc_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_pdc_bus.g_person_deplymt_contact_id := p_person_deplymt_contact_id;
85: hr_pdc_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_pdc_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 := 'contact_relationship_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_contact_relationship_id >------------------|

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

277: and ctr.contact_relationship_id = p_contact_relationship_id
278: and pdt.from_person_id = ctr.person_id;
279: --
280: begin
281: hr_utility.set_location('Entering:'||l_proc, 10);
282: --
283: -- Check mandatory parameters have been set
284: --
285: hr_api.mandatory_arg_error

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

329: --
330: l_proc varchar2(72) := g_package||'insert_validate';
331: --
332: Begin
333: hr_utility.set_location('Entering:'||l_proc, 5);
334: --
335: -- Call all supporting business operations
336: --
337: -- CLIENT_INFO not set. No lookup validation or joins to HR_LOOKUPS

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

345: (p_contact_relationship_id => p_rec.contact_relationship_id
346: ,p_person_deployment_id => p_rec.person_deployment_id);
347: --
348: --
349: hr_utility.set_location(' Leaving:'||l_proc, 10);
350: End insert_validate;
351: --
352: -- ----------------------------------------------------------------------------
353: -- |---------------------------< update_validate >----------------------------|

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

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

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

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

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

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

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

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