DBA Data[Home] [Help]

APPS.BEN_EGL_BUS dependencies on BEN_ELIGY_CRITERIA

Line 56: ben_egl_shd.constraint_error('BEN_eligy_criteria_PK');

52: <> ben_egl_shd.g_old_rec.eligy_criteria_id) then
53: --
54: -- raise error as PK has changed
55: --
56: ben_egl_shd.constraint_error('BEN_eligy_criteria_PK');
57: --
58: elsif not l_api_updating then
59: --
60: -- check if PK is null

Line 66: ben_egl_shd.constraint_error('BEN_eligy_criteria_PK');

62: if p_eligy_criteria_id is not null then
63: --
64: -- raise error as PK is not null
65: --
66: ben_egl_shd.constraint_error('BEN_eligy_criteria_PK');
67: --
68: end if;
69: --
70: end if;

Line 110: from ben_eligy_criteria

106: l_proc varchar2(72) := g_package||'chk_name_unique';
107: l_dummy char(1);
108:
109: cursor c1 is select null
110: from ben_eligy_criteria
111: Where eligy_criteria_id <> nvl(p_eligy_criteria_id,-1)
112: and name = p_name
113: and business_group_id = p_business_group_id;
114:

Line 168: from ben_eligy_criteria

164: l_proc varchar2(72) := g_package||'chk_short_code_unique';
165: l_dummy char(1);
166:
167: cursor c1 is select null
168: from ben_eligy_criteria
169: Where eligy_criteria_id <> nvl(p_eligy_criteria_id,-1)
170: and short_code = p_short_code
171: and business_group_id = p_business_group_id;
172:

Line 611: -- BEN_ELIGY_CRITERIA is not a datetracked table

607: and p_access_calc_rule is not null
608: then
609: --
610: -- Bug 4303085 : Do not validate the formula id against effective date since
611: -- BEN_ELIGY_CRITERIA is not a datetracked table
612: --
613: open c_formula;
614: --
615: fetch c_formula into l_dummy;

Line 1833: ben_eligy_criteria b

1829: --
1830: cursor csr_leg_code is
1831: select a.legislation_code
1832: from per_business_groups a,
1833: ben_eligy_criteria b
1834: where b.eligy_criteria_id = p_eligy_criteria_id
1835: and a.business_group_id = b.business_group_id;
1836: --
1837: -- Declare local variables