DBA Data[Home] [Help]

APPS.PQH_FYN_BUS dependencies on PQH_TRANSACTION_CATEGORIES

Line 111: from pqh_transaction_categories a

107: l_dummy varchar2(1);
108: --
109: cursor c1 is
110: select null
111: from pqh_transaction_categories a
112: where a.transaction_category_id = p_transaction_category_id;
113: --
114: Begin
115: --

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

123: and nvl(p_transaction_category_id,hr_api.g_number)
124: <> nvl(pqh_fyn_shd.g_old_rec.transaction_category_id,hr_api.g_number)
125: or not l_api_updating) then
126: --
127: -- check if transaction_category_id value exists in pqh_transaction_categories table
128: --
129: open c1;
130: --
131: fetch c1 into l_dummy;

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

132: if c1%notfound then
133: --
134: close c1;
135: --
136: -- raise error as FK does not relate to PK in pqh_transaction_categories
137: -- table.
138: --
139: pqh_fyn_shd.constraint_error('PQH_FYI_NOTIFY_FK1');
140: --