DBA Data[Home] [Help]

APPS.PER_CTC_BUS dependencies on PER_ASG_SHD

Line 43: Procedure check_non_updateable_args(p_rec in per_asg_shd.g_rec_type

39: --
40: -- Access Status:
41: -- Internal Table Handler Use Only.
42: --
43: Procedure check_non_updateable_args(p_rec in per_asg_shd.g_rec_type
44: ,p_effective_date in date) is
45: --
46: l_proc varchar2(72) := g_package||'check_non_updateable_args';
47: l_error exception;

Line 56: if not per_asg_shd.api_updating

52: --
53: -- Only proceed with validation if a row exists for
54: -- the current record in the HR Schema
55: --
56: if not per_asg_shd.api_updating
57: (p_assignment_id => p_rec.assignment_id
58: ,p_object_version_number => p_rec.object_version_number
59: ,p_effective_date => p_effective_date
60: ) then

Line 69: nvl(per_asg_shd.g_old_rec.business_group_id, hr_api.g_number) then

65: --
66: hr_utility.set_location(l_proc, 6);
67: --
68: if nvl(p_rec.business_group_id, hr_api.g_number) <>
69: nvl(per_asg_shd.g_old_rec.business_group_id, hr_api.g_number) then
70: l_argument := 'business_group_id';
71: raise l_error;
72: end if;
73: hr_utility.set_location(l_proc, 7);

Line 76: nvl(per_asg_shd.g_old_rec.person_id, hr_api.g_number) then

72: end if;
73: hr_utility.set_location(l_proc, 7);
74: --
75: if nvl(p_rec.person_id,hr_api.g_number) <>
76: nvl(per_asg_shd.g_old_rec.person_id, hr_api.g_number) then
77: l_argument := 'person_id';
78: raise l_error;
79: end if;
80: --