DBA Data[Home] [Help]

APPS.HR_EXU_BUS dependencies on HR_EXU_SHD

Line 281: Procedure insert_validate(p_rec in hr_exu_shd.g_rec_type) is

277: --
278: -- ----------------------------------------------------------------------------
279: -- |---------------------------< insert_validate >----------------------------|
280: -- ----------------------------------------------------------------------------
281: Procedure insert_validate(p_rec in hr_exu_shd.g_rec_type) is
282: --
283: l_proc varchar2(72) := g_package||'insert_validate';
284: --
285: Begin

Line 318: Procedure update_validate(p_rec in hr_exu_shd.g_rec_type) is

314: --
315: -- ----------------------------------------------------------------------------
316: -- |---------------------------< update_validate >----------------------------|
317: -- ----------------------------------------------------------------------------
318: Procedure update_validate(p_rec in hr_exu_shd.g_rec_type) is
319: --
320: l_proc varchar2(72) := g_package||'update_validate';
321: --
322: Begin

Line 327: /* if (hr_exu_shd.api_updating

323: hr_utility.set_location('Entering:'||l_proc, 5);
324: --
325: -- Call all supporting business operations
326: --
327: /* if (hr_exu_shd.api_updating
328: ( p_exception_usage_id => p_rec.exception_usage_id,
329: p_object_version_number => p_rec.object_version_number) and
330: nvl(p_rec.calendar_id, hr_exu.g_number) <>
331: nvl(hr_exu_shd.g_old_rec.calendar_id,hr_api.g_number)) then

Line 331: nvl(hr_exu_shd.g_old_rec.calendar_id,hr_api.g_number)) then

327: /* if (hr_exu_shd.api_updating
328: ( p_exception_usage_id => p_rec.exception_usage_id,
329: p_object_version_number => p_rec.object_version_number) and
330: nvl(p_rec.calendar_id, hr_exu.g_number) <>
331: nvl(hr_exu_shd.g_old_rec.calendar_id,hr_api.g_number)) then
332: (p_api_name => l_proc,
333: p_argument => 'calendar_id');
334: end if;
335:

Line 336: if (hr_exu_shd.api_updating

332: (p_api_name => l_proc,
333: p_argument => 'calendar_id');
334: end if;
335:
336: if (hr_exu_shd.api_updating
337: ( p_exception_usage_id => p_rec.exception_usage_id,
338: p_object_version_number => p_rec.object_version_number) and
339: nvl(p_rec.calendar_usage_id,hr_api.g_number) <>
340: nvl(hr_exu_shd.g_old_rec.calendar_usage_id,hr_api.g_varchar2)) then

Line 340: nvl(hr_exu_shd.g_old_rec.calendar_usage_id,hr_api.g_varchar2)) then

336: if (hr_exu_shd.api_updating
337: ( p_exception_usage_id => p_rec.exception_usage_id,
338: p_object_version_number => p_rec.object_version_number) and
339: nvl(p_rec.calendar_usage_id,hr_api.g_number) <>
340: nvl(hr_exu_shd.g_old_rec.calendar_usage_id,hr_api.g_varchar2)) then
341: (p_api_name => l_proc,
342: p_argument => 'calendar_usage_id');
343: end if;
344:

Line 345: if (hr_exu_shd.api_updating

341: (p_api_name => l_proc,
342: p_argument => 'calendar_usage_id');
343: end if;
344:
345: if (hr_exu_shd.api_updating
346: ( p_exception_usage_id => p_rec.exception_usage_id,
347: p_object_version_number => p_rec.object_version_number) and
348: p_rec.exception_id <> hr_exu_shd.g_old_rec.exception_id) then
349: (p_api_name => l_proc,

Line 348: p_rec.exception_id <> hr_exu_shd.g_old_rec.exception_id) then

344:
345: if (hr_exu_shd.api_updating
346: ( p_exception_usage_id => p_rec.exception_usage_id,
347: p_object_version_number => p_rec.object_version_number) and
348: p_rec.exception_id <> hr_exu_shd.g_old_rec.exception_id) then
349: (p_api_name => l_proc,
350: p_argument => 'exception_id');
351: end if;
352: */

Line 361: Procedure delete_validate(p_rec in hr_exu_shd.g_rec_type) is

357: --
358: -- ----------------------------------------------------------------------------
359: -- |---------------------------< delete_validate >----------------------------|
360: -- ----------------------------------------------------------------------------
361: Procedure delete_validate(p_rec in hr_exu_shd.g_rec_type) is
362: --
363: l_proc varchar2(72) := g_package||'delete_validate';
364: --
365: Begin