DBA Data[Home] [Help]

APPS.PQH_PTX_BUS dependencies on PER_GRADES

Line 491: from per_grades a

487: l_dummy varchar2(1);
488: --
489: cursor c1 is
490: select null
491: from per_grades a
492: where a.grade_id = p_entry_grade_id;
493: --
494: Begin
495: --

Line 508: -- check if entry_grade_id value exists in per_grades table

504: <> nvl(pqh_ptx_shd.g_old_rec.entry_grade_id,hr_api.g_number)
505: or not l_api_updating) and
506: p_entry_grade_id is not null then
507: --
508: -- check if entry_grade_id value exists in per_grades table
509: --
510: open c1;
511: --
512: fetch c1 into l_dummy;

Line 517: -- raise error as FK does not relate to PK in per_grades

513: if c1%notfound then
514: --
515: close c1;
516: --
517: -- raise error as FK does not relate to PK in per_grades
518: -- table.
519: --
520: pqh_ptx_shd.constraint_error('PQH_POSITION_TRANSACTIONS_FK11');
521: --