DBA Data[Home] [Help]

APPS.HR_FGI_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 data group items
55: --
56: l_legislation_code := null;

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

54: -- Legislation code not available for form data group items
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 148: hr_utility.set_location('Entering:'||l_proc, 10);

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

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

154: ,p_argument => 'form_data_group_id'
155: ,p_argument_value => p_form_data_group_id
156: );
157: --
158: hr_utility.set_location('Leaving:'||l_proc, 100);
159: End chk_form_data_group_id;
160: --
161: -- ----------------------------------------------------------------------------
162: -- |---------------------------< chk_form_item_id >---------------------------|

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

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

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

180: ,p_argument => 'form_item_id'
181: ,p_argument_value => p_form_item_id
182: );
183: --
184: hr_utility.set_location('Leaving:'||l_proc, 100);
185: End chk_form_item_id;
186: --
187: -- ----------------------------------------------------------------------------
188: -- |-----------------------< chk_data_group_and_item >------------------------|

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

213: l_item_application_id number;
214: l_item_form_id number;
215: --
216: Begin
217: hr_utility.set_location('Entering:'||l_proc, 10);
218: --
219: l_api_updating := hr_fgi_shd.api_updating
220: (p_form_data_group_item_id => p_form_data_group_item_id
221: ,p_object_version_number => p_object_version_number

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

219: l_api_updating := hr_fgi_shd.api_updating
220: (p_form_data_group_item_id => p_form_data_group_item_id
221: ,p_object_version_number => p_object_version_number
222: );
223: hr_utility.set_location(l_proc,20);
224: --
225: -- Only proceed with SQL validation if absolutely necessary
226: --
227: if ( ( l_api_updating

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

230: or (nvl(hr_fgi_shd.g_old_rec.form_item_id,hr_api.g_number) <>
231: nvl(p_form_item_id,hr_api.g_number))))
232: or (NOT l_api_updating)) then
233: --
234: hr_utility.set_location(l_proc,30);
235: --
236: -- Check the data group and item reference the same form
237: --
238: open csr_data_group;

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

245: fnd_message.raise_error;
246: end if;
247: close csr_data_group;
248: --
249: hr_utility.set_location(l_proc,40);
250: --
251: open csr_item;
252: fetch csr_item into l_item_application_id, l_item_form_id;
253: if not csr_item%found then

Line 262: hr_utility.set_location(l_proc,50);

258: fnd_message.raise_error;
259: end if;
260: close csr_item;
261: --
262: hr_utility.set_location(l_proc,50);
263: --
264: if ( nvl(l_data_group_application_id,hr_api.g_number) <> nvl(l_item_application_id,hr_api.g_number)
265: or nvl(l_data_group_form_id,hr_api.g_number) <> nvl(l_item_form_id,hr_api.g_number)) then
266: fnd_message.set_name('PAY', 'HR_6153_ALL_PROCEDURE_FAIL');

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

270: end if;
271: --
272: end if;
273: --
274: hr_utility.set_location('Leaving:'||l_proc, 100);
275: End chk_data_group_and_item;
276: --
277: -- ----------------------------------------------------------------------------
278: -- |------------------------------< chk_delete >------------------------------|

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

283: --
284: l_proc varchar2(72) := g_package||'chk_delete';
285: --
286: Begin
287: hr_utility.set_location('Entering:'||l_proc, 5);
288: --
289: -- No additional validation required
290: --
291: null;

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

289: -- No additional validation required
290: --
291: null;
292: --
293: hr_utility.set_location(' Leaving:'||l_proc, 10);
294: End chk_delete;
295: --
296: -- ----------------------------------------------------------------------------
297: -- |---------------------------< insert_validate >----------------------------|

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

302: --
303: l_proc varchar2(72) := g_package||'insert_validate';
304: --
305: Begin
306: hr_utility.set_location('Entering:'||l_proc, 5);
307: --
308: -- Call all supporting business operations
309: -- No business group context. HR_STANDARD_LOOKUPS used for validation.
310: --

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

326: ,p_form_data_group_id => p_rec.form_data_group_id
327: ,p_form_item_id => p_rec.form_item_id
328: );
329: --
330: hr_utility.set_location(' Leaving:'||l_proc, 10);
331: End insert_validate;
332: --
333: -- ----------------------------------------------------------------------------
334: -- |---------------------------< update_validate >----------------------------|

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

339: --
340: l_proc varchar2(72) := g_package||'update_validate';
341: --
342: Begin
343: hr_utility.set_location('Entering:'||l_proc, 5);
344: --
345: -- Call all supporting business operations
346: -- No business group context. HR_STANDARD_LOOKUPS used for validation.
347: --

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

367: ,p_form_data_group_id => p_rec.form_data_group_id
368: ,p_form_item_id => p_rec.form_item_id
369: );
370: --
371: hr_utility.set_location(' Leaving:'||l_proc, 10);
372: End update_validate;
373: --
374: -- ----------------------------------------------------------------------------
375: -- |---------------------------< delete_validate >----------------------------|

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

380: --
381: l_proc varchar2(72) := g_package||'delete_validate';
382: --
383: Begin
384: hr_utility.set_location('Entering:'||l_proc, 5);
385: --
386: -- Call all supporting business operations
387: --
388: chk_delete

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

388: chk_delete
389: (p_rec => p_rec
390: );
391: --
392: hr_utility.set_location(' Leaving:'||l_proc, 10);
393: End delete_validate;
394: --
395: end hr_fgi_bus;