DBA Data[Home] [Help]

APPS.BEN_EPR_BUS dependencies on BEN_ACTL_PREM_F

Line 113: from ben_actl_prem_f a

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

Line 132: -- check if actl_prem_id value exists in ben_actl_prem_f table

128: and nvl(p_actl_prem_id,hr_api.g_number)
129: <> nvl(ben_epr_shd.g_old_rec.actl_prem_id,hr_api.g_number)
130: or not l_api_updating) then
131: --
132: -- check if actl_prem_id value exists in ben_actl_prem_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 ben_actl_prem_f

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