DBA Data[Home] [Help]

APPS.PQH_TCA_BUS dependencies on PQH_ATTRIBUTES

Line 338: from pqh_attributes a

334: l_dummy varchar2(1);
335: --
336: cursor c1 is
337: select null
338: from pqh_attributes a
339: where a.attribute_id = p_attribute_id;
340: --
341: Begin
342: --

Line 354: -- check if attribute_id value exists in pqh_attributes table

350: and nvl(p_attribute_id,hr_api.g_number)
351: <> nvl(pqh_tca_shd.g_old_rec.attribute_id,hr_api.g_number)
352: or not l_api_updating) then
353: --
354: -- check if attribute_id value exists in pqh_attributes table
355: --
356: open c1;
357: --
358: fetch c1 into l_dummy;

Line 363: -- raise error as FK does not relate to PK in pqh_attributes

359: if c1%notfound then
360: --
361: close c1;
362: --
363: -- raise error as FK does not relate to PK in pqh_attributes
364: -- table.
365: --
366: pqh_tca_shd.constraint_error('PQH_TXN_CATEGORY_ATTRIBUTE_FK1');
367: --