DBA Data[Home] [Help]

APPS.PQH_CER_BUS dependencies on PQH_COPY_ENTITY_TXNS

Line 180: from pqh_copy_entity_txns a

176: l_dummy varchar2(1);
177: --
178: cursor c1 is
179: select null
180: from pqh_copy_entity_txns a
181: where a.copy_entity_txn_id = p_copy_entity_txn_id;
182: --
183: Begin
184: --

Line 196: -- check if copy_entity_txn_id value exists in pqh_copy_entity_txns table

192: and nvl(p_copy_entity_txn_id,hr_api.g_number)
193: <> nvl(pqh_cer_shd.g_old_rec.copy_entity_txn_id,hr_api.g_number)
194: or not l_api_updating) then
195: --
196: -- check if copy_entity_txn_id value exists in pqh_copy_entity_txns table
197: --
198: open c1;
199: --
200: fetch c1 into l_dummy;

Line 205: -- raise error as FK does not relate to PK in pqh_copy_entity_txns

201: if c1%notfound then
202: --
203: close c1;
204: --
205: -- raise error as FK does not relate to PK in pqh_copy_entity_txns
206: -- table.
207: --
208: pqh_cer_shd.constraint_error('PQH_COPY_ENTITY_RESULTS_FK1');
209: --