DBA Data[Home] [Help]

APPS.BEN_CRT_BUS dependencies on BEN_PL_F

Line 195: from ben_pl_f a

191: l_dummy varchar2(1);
192: --
193: cursor c1 is
194: select null
195: from ben_pl_f a
196: where a.pl_id = p_pl_id
197: and p_effective_date
198: between a.effective_start_date
199: and a.effective_end_date;

Line 203: from ben_pl_F pln

199: and a.effective_end_date;
200:
201: cursor c2 is
202: select null
203: from ben_pl_F pln
204: where pln.pl_id = p_pl_id
205: and p_effective_date
206: between pln.effective_start_date
207: and pln.effective_end_date

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

220: <> nvl(ben_crt_shd.g_old_rec.pl_id,hr_api.g_number)
221: or not l_api_updating)
222: and p_pl_id is not null then
223: --
224: -- check if pl_id value exists in ben_pl_f table
225: --
226: open c1;
227: --
228: fetch c1 into l_dummy;

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

229: if c1%notfound then
230: --
231: close c1;
232: --
233: -- raise error as FK does not relate to PK in ben_pl_f
234: -- table.
235: --
236: ben_crt_shd.constraint_error('BEN_CRT_ORDR_DT2');
237: --