DBA Data[Home] [Help]

APPS.PQH_BDT_BUS dependencies on PER_JOBS

Line 187: from per_jobs a

183: l_dummy varchar2(1);
184: --
185: cursor c1 is
186: select null
187: from per_jobs a
188: where a.job_id = p_job_id;
189: --
190: Begin
191: --

Line 204: -- check if job_id value exists in per_jobs table

200: <> nvl(pqh_bdt_shd.g_old_rec.job_id,hr_api.g_number)
201: or not l_api_updating) and
202: p_job_id is not null then
203: --
204: -- check if job_id value exists in per_jobs table
205: --
206: open c1;
207: --
208: fetch c1 into l_dummy;

Line 213: -- raise error as FK does not relate to PK in per_jobs

209: if c1%notfound then
210: --
211: close c1;
212: --
213: -- raise error as FK does not relate to PK in per_jobs
214: -- table.
215: --
216: pqh_bdt_shd.constraint_error('PQH_BUDGET_DETAILS_FK4');
217: --