DBA Data[Home] [Help]

APPS.BEN_CPY_BUS dependencies on BEN_PL_F

Line 273: from ben_pl_f a

269: l_dummy varchar2(1);
270: --
271: cursor c1 is
272: select null
273: from ben_pl_f a
274: where a.pl_id = p_pl_id
275: and p_effective_date
276: between a.effective_start_date
277: and a.effective_end_date;

Line 292: -- check if pl_id value exists in ben_pl_f table

288: and nvl(p_pl_id,hr_api.g_number)
289: <> nvl(ben_cpy_shd.g_old_rec.pl_id,hr_api.g_number)
290: or not l_api_updating) then
291: --
292: -- check if pl_id value exists in ben_pl_f table
293: --
294: open c1;
295: --
296: fetch c1 into l_dummy;

Line 301: -- raise error as FK does not relate to PK in ben_pl_f

297: if c1%notfound then
298: --
299: close c1;
300: --
301: -- raise error as FK does not relate to PK in ben_pl_f
302: -- table.
303: --
304: ben_cpy_shd.constraint_error('DATETRACK-ERROR');
305: --