DBA Data[Home] [Help]

APPS.PQH_BDT_BUS dependencies on PER_GRADES

Line 111: from per_grades a

107: l_dummy varchar2(1);
108: --
109: cursor c1 is
110: select null
111: from per_grades a
112: where a.grade_id = p_grade_id;
113: --
114: Begin
115: --

Line 128: -- check if grade_id value exists in per_grades table

124: <> nvl(pqh_bdt_shd.g_old_rec.grade_id,hr_api.g_number)
125: or not l_api_updating) and
126: p_grade_id is not null then
127: --
128: -- check if grade_id value exists in per_grades table
129: --
130: open c1;
131: --
132: fetch c1 into l_dummy;

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

133: if c1%notfound then
134: --
135: close c1;
136: --
137: -- raise error as FK does not relate to PK in per_grades
138: -- table.
139: --
140: pqh_bdt_shd.constraint_error('PQH_BUDGET_DETAILS_FK5');
141: --