DBA Data[Home] [Help]

APPS.BEN_EPY_BUS dependencies on PAY_ALL_PAYROLLS_F

Line 133: from pay_all_payrolls_f a

129: --
130: --
131: cursor c1 is
132: select null
133: from pay_all_payrolls_f a
134: where a.payroll_id = p_payroll_id
135: and a.business_group_id + 0 = p_business_group_id
136: and p_effective_date between a.effective_start_date
137: and a.effective_end_date;

Line 154: -- check if payroll_id value exists in pay_all_payrolls_f table

150: and nvl(p_payroll_id, hr_api.g_number)
151: <> nvl(ben_epy_shd.g_old_rec.payroll_id,hr_api.g_number)
152: or not l_api_updating) then
153: --
154: -- check if payroll_id value exists in pay_all_payrolls_f table
155: --
156: open c1;
157: --
158: fetch c1 into l_dummy;

Line 163: -- raise error as FK does not relate to PK in pay_all_payrolls_f

159: if c1%notfound then
160: --
161: close c1;
162: --
163: -- raise error as FK does not relate to PK in pay_all_payrolls_f
164: -- table.
165: --
166: ben_epb_shd.constraint_error('BEN_ELIG_PYRL_FK2');
167: --