DBA Data[Home] [Help]

APPS.PQH_CET_BUS dependencies on PQH_TRANSACTION_CATEGORIES

Line 349: from pqh_transaction_categories a

345: l_dummy varchar2(1);
346: --
347: cursor c1 is
348: select null
349: from pqh_transaction_categories a
350: where a.transaction_category_id = p_transaction_category_id;
351: --
352: Begin
353: --

Line 365: -- check if transaction_category_id value exists in pqh_transaction_categories table

361: and nvl(p_transaction_category_id,hr_api.g_number)
362: <> nvl(pqh_cet_shd.g_old_rec.transaction_category_id,hr_api.g_number)
363: or not l_api_updating) then
364: --
365: -- check if transaction_category_id value exists in pqh_transaction_categories table
366: --
367: open c1;
368: --
369: fetch c1 into l_dummy;

Line 374: -- raise error as FK does not relate to PK in pqh_transaction_categories

370: if c1%notfound then
371: --
372: close c1;
373: --
374: -- raise error as FK does not relate to PK in pqh_transaction_categories
375: -- table.
376: --
377: pqh_cet_shd.constraint_error('PQH_COPY_ENTITY_TXNS_FK1');
378: --