DBA Data[Home] [Help]

APPS.PQH_WDT_BUS dependencies on PER_JOBS

Line 373: from per_jobs a

369: l_dummy varchar2(1);
370: --
371: cursor c1 is
372: select null
373: from per_jobs a
374: where a.job_id = p_job_id;
375: --
376: Begin
377: --

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

386: <> nvl(pqh_wdt_shd.g_old_rec.job_id,hr_api.g_number)
387: or not l_api_updating) and
388: p_job_id is not null then
389: --
390: -- check if job_id value exists in per_jobs table
391: --
392: open c1;
393: --
394: fetch c1 into l_dummy;

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

395: if c1%notfound then
396: --
397: close c1;
398: --
399: -- raise error as FK does not relate to PK in per_jobs
400: -- table.
401: --
402: pqh_wdt_shd.constraint_error('PQH_WORKSHEET_DETAILS_FK5');
403: --