DBA Data[Home] [Help]

APPS.BEN_BEC_BUS dependencies on PER_ALL_PEOPLE_F

Line 113: from per_all_people_f a

109: l_dummy varchar2(1);
110: --
111: cursor c1 is
112: select null
113: from per_all_people_f a
114: where a.person_id = p_person_id
115: and p_effective_date
116: between a.effective_start_date
117: and a.effective_end_date;

Line 132: -- check if person_id value exists in per_all_people_f table

128: and nvl(p_person_id,hr_api.g_number)
129: <> nvl(ben_bec_shd.g_old_rec.person_id,hr_api.g_number)
130: or not l_api_updating) then
131: --
132: -- check if person_id value exists in per_all_people_f table
133: --
134: open c1;
135: --
136: fetch c1 into l_dummy;

Line 141: -- raise error as FK does not relate to PK in per_all_people_f

137: if c1%notfound then
138: --
139: close c1;
140: --
141: -- raise error as FK does not relate to PK in per_all_people_f
142: -- table.
143: --
144: ben_bec_shd.constraint_error('BEN_BATCH_ELCTBL_CHC_INFO_DT4');
145: --