DBA Data[Home] [Help]

APPS.PQH_SAT_BUS dependencies on PQH_TXN_CATEGORY_ATTRIBUTES

Line 186: from pqh_txn_category_attributes a

182: l_dummy varchar2(1);
183: --
184: cursor c1 is
185: select null
186: from pqh_txn_category_attributes a
187: where a.txn_category_attribute_id = p_txn_category_attribute_id;
188: --
189: Begin
190: --

Line 202: -- check if txn_category_attribute_id value exists in pqh_txn_category_attributes table

198: and nvl(p_txn_category_attribute_id,hr_api.g_number)
199: <> nvl(pqh_sat_shd.g_old_rec.txn_category_attribute_id,hr_api.g_number)
200: or not l_api_updating) then
201: --
202: -- check if txn_category_attribute_id value exists in pqh_txn_category_attributes table
203: --
204: open c1;
205: --
206: fetch c1 into l_dummy;

Line 211: -- raise error as FK does not relate to PK in pqh_txn_category_attributes

207: if c1%notfound then
208: --
209: close c1;
210: --
211: -- raise error as FK does not relate to PK in pqh_txn_category_attributes
212: -- table.
213: --
214: pqh_sat_shd.constraint_error('PQH_SPECIAL_ATTRIBUTES_FK1');
215: --