DBA Data[Home] [Help]

APPS.BEN_BRG_BUS dependencies on BEN_BENFTS_GRP

Line 59: ben_brg_shd.constraint_error('BEN_BENFTS_GRP_RT_F_PK');

55: <> ben_brg_shd.g_old_rec.benfts_grp_rt_id) then
56: --
57: -- raise error as PK has changed
58: --
59: ben_brg_shd.constraint_error('BEN_BENFTS_GRP_RT_F_PK');
60: --
61: elsif not l_api_updating then
62: --
63: -- check if PK is null

Line 69: ben_brg_shd.constraint_error('BEN_BENFTS_GRP_RT_F_PK');

65: if p_benfts_grp_rt_id is not null then
66: --
67: -- raise error as PK is not null
68: --
69: ben_brg_shd.constraint_error('BEN_BENFTS_GRP_RT_F_PK');
70: --
71: end if;
72: --
73: end if;

Line 113: from ben_benfts_grp_rt_f

109: is
110: l_proc varchar2(72) := g_package||' chk_duplicate_ordr_num ';
111: l_dummy char(1);
112: cursor c1 is select null
113: from ben_benfts_grp_rt_f
114: where vrbl_rt_prfl_id = p_vrbl_rt_prfl_id
115: and benfts_grp_id <> nvl(p_benfts_grp_id,-1)
116: and p_effective_date between effective_start_date
117: and effective_end_date

Line 214: -- BEN_BENFTS_GRP table.

210: --
211: -- Description
212: -- This procedure is used to check that the foreign key for the table
213: -- is created properly. a corresponding record should exist in the
214: -- BEN_BENFTS_GRP table.
215: --
216: -- Pre Conditions
217: -- None.
218: --

Line 220: -- benfts_grp_id FK of pointing to BEN_BENFTS_GRP tables.

216: -- Pre Conditions
217: -- None.
218: --
219: -- In Parameters
220: -- benfts_grp_id FK of pointing to BEN_BENFTS_GRP tables.
221: -- business_group_id or record being inserted or updated
222: --
223: -- Post Success
224: -- Processing continues

Line 238: from BEN_BENFTS_GRP

234: --
235: l_proc varchar2(72) := g_package||'chk_benfts_grp_id';
236: l_dummy varchar2(1);
237: cursor c1 is select null
238: from BEN_BENFTS_GRP
239: where benfts_grp_id = p_benfts_grp_id
240: and business_group_id = p_business_group_id;
241: --
242:

Line 309: from ben_benfts_grp_rt_f

305: l_exists varchar2(1);
306: --
307: cursor c_dup is
308: select null
309: from ben_benfts_grp_rt_f
310: where benfts_grp_id = p_benfts_grp_id
311: and vrbl_rt_prfl_id = p_vrbl_rt_prfl_id
312: and benfts_grp_rt_id <> nvl(p_benfts_grp_rt_id,hr_api.g_number)
313: and business_group_id + 0 = p_business_group_id

Line 712: ben_benfts_grp_rt_f b

708: --
709: cursor csr_leg_code is
710: select a.legislation_code
711: from per_business_groups a,
712: ben_benfts_grp_rt_f b
713: where b.benfts_grp_rt_id = p_benfts_grp_rt_id
714: and a.business_group_id = b.business_group_id;
715: --
716: -- Declare local variables