DBA Data[Home] [Help]

APPS.PE_JEI_BUS dependencies on PE_JEI_SHD

Line 378: Procedure chk_non_updateable_args (p_rec in pe_jei_shd.g_rec_type) is

374: -- Internal Table Handler Use Only.
375: --
376: -- {End Of Comments}
377: -- ----------------------------------------------------------------------------
378: Procedure chk_non_updateable_args (p_rec in pe_jei_shd.g_rec_type) is
379: --
380: l_proc varchar2(72) := g_package||'chk_non_updateable_args';
381: l_error exception;
382: l_argument varchar2(30);

Line 390: if not pe_jei_shd.api_updating

386: --
387: -- Only proceed with validation if a row exists for
388: -- the current record in the HR Schema
389: --
390: if not pe_jei_shd.api_updating
391: (p_job_extra_info_id => p_rec.job_extra_info_id
392: ,p_object_version_number => p_rec.object_version_number) then
393: hr_utility.set_message(801, 'HR_6153_ALL_PROCEDURE_FAIL');
394: hr_utility.set_message_token('PROCEDURE', l_proc);

Line 401: nvl(pe_jei_shd.g_old_rec.information_type, hr_api.g_varchar2) then

397: --
398: hr_utility.set_location(l_proc, 30);
399: --
400: if nvl(p_rec.information_type, hr_api.g_varchar2) <>
401: nvl(pe_jei_shd.g_old_rec.information_type, hr_api.g_varchar2) then
402: l_argument := 'information_type';
403: raise l_error;
404: end if;
405: --

Line 409: nvl(pe_jei_shd.g_old_rec.job_id, hr_api.g_number) then

405: --
406: hr_utility.set_location(l_proc, 40);
407: --
408: if nvl(p_rec.job_id, hr_api.g_number) <>
409: nvl(pe_jei_shd.g_old_rec.job_id, hr_api.g_number) then
410: l_argument := 'job_id';
411: raise l_error;
412: end if;
413: --

Line 429: Procedure insert_validate(p_rec in pe_jei_shd.g_rec_type) is

425: end chk_non_updateable_args;
426:
427: -- |---------------------------< insert_validate >----------------------------|
428: -- ----------------------------------------------------------------------------
429: Procedure insert_validate(p_rec in pe_jei_shd.g_rec_type) is
430: --- ----------------------------------------------------------------------------
431: --
432: l_proc varchar2(72) := g_package||'insert_validate';
433: --

Line 588: Procedure update_validate(p_rec in pe_jei_shd.g_rec_type) is

584: --
585: -- ----------------------------------------------------------------------------
586: -- |---------------------------< update_validate >----------------------------|
587: -- ----------------------------------------------------------------------------
588: Procedure update_validate(p_rec in pe_jei_shd.g_rec_type) is
589: --
590: l_proc varchar2(72) := g_package||'update_validate';
591: --
592: Begin

Line 735: Procedure delete_validate(p_rec in pe_jei_shd.g_rec_type) is

731: --
732: -- ----------------------------------------------------------------------------
733: -- |---------------------------< delete_validate >----------------------------|
734: -- ----------------------------------------------------------------------------
735: Procedure delete_validate(p_rec in pe_jei_shd.g_rec_type) is
736: --
737: l_proc varchar2(72) := g_package||'delete_validate';
738: --
739: Begin