DBA Data[Home] [Help]

APPS.PQH_RHT_BUS dependencies on PQH_TRANSACTION_CATEGORIES

Line 339: from pqh_transaction_categories a

335: l_dummy varchar2(1);
336: --
337: cursor c1 is
338: select null
339: from pqh_transaction_categories a
340: where a.transaction_category_id = p_transaction_category_id;
341: --
342: Begin
343: --

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

351: and nvl(p_transaction_category_id,hr_api.g_number)
352: <> nvl(pqh_rht_shd.g_old_rec.transaction_category_id,hr_api.g_number)
353: or not l_api_updating) then
354: --
355: -- check if transaction_category_id value exists in pqh_transaction_categories table
356: --
357: open c1;
358: --
359: fetch c1 into l_dummy;

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

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