DBA Data[Home] [Help]

APPS.PQH_RTM_BUS dependencies on PQH_ROLES

Line 262: from pqh_roles a

258: l_dummy varchar2(1);
259: --
260: cursor c1 is
261: select null
262: from pqh_roles a
263: where a.role_id = p_role_id;
264: --
265: Begin
266: --

Line 278: -- check if role_id value exists in pqh_roles table

274: and nvl(p_role_id,hr_api.g_number)
275: <> nvl(pqh_rtm_shd.g_old_rec.role_id,hr_api.g_number)
276: or not l_api_updating) then
277: --
278: -- check if role_id value exists in pqh_roles table
279: --
280: open c1;
281: --
282: fetch c1 into l_dummy;

Line 287: -- raise error as FK does not relate to PK in pqh_roles

283: if c1%notfound then
284: --
285: close c1;
286: --
287: -- raise error as FK does not relate to PK in pqh_roles
288: -- table.
289: --
290: pqh_rtm_shd.constraint_error('PQH_ROLE_TEMPLATES_FK1');
291: --

Line 340: from pqh_roles

336: l_role_enable_flag varchar2(10);
337: --
338: cursor c_role_enable_flag(p_role_id number) is
339: select enable_flag
340: from pqh_roles
341: where role_id=p_role_id;
342: Begin
343: --
344: hr_utility.set_location('Entering:'||l_proc, 5);