DBA Data[Home] [Help]

APPS.PQH_PTX_BUS dependencies on PER_POSITION_DEFINITIONS

Line 187: from per_position_definitions a

183: l_dummy varchar2(1);
184: --
185: cursor c1 is
186: select null
187: from per_position_definitions a
188: where a.position_definition_id = p_position_definition_id;
189: --
190: Begin
191: --

Line 204: -- check if position_definition_id value exists in per_position_definitions table

200: <> nvl(pqh_ptx_shd.g_old_rec.position_definition_id,hr_api.g_number)
201: or not l_api_updating) and
202: p_position_definition_id is not null then
203: --
204: -- check if position_definition_id value exists in per_position_definitions table
205: --
206: open c1;
207: --
208: fetch c1 into l_dummy;

Line 213: -- raise error as FK does not relate to PK in per_position_definitions

209: if c1%notfound then
210: --
211: close c1;
212: --
213: -- raise error as FK does not relate to PK in per_position_definitions
214: -- table.
215: --
216: pqh_ptx_shd.constraint_error('PQH_POSITION_TRANSACTIONS_FK6');
217: --