DBA Data[Home] [Help]

APPS.PQH_RNG_BUS dependencies on PER_ALL_POSITIONS

Line 111: from per_all_positions a

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

Line 128: -- check if position_id value exists in per_all_positions table

124: <> nvl(pqh_rng_shd.g_old_rec.position_id,hr_api.g_number)
125: or not l_api_updating) and
126: p_position_id is not null then
127: --
128: -- check if position_id value exists in per_all_positions table
129: --
130: open c1;
131: --
132: fetch c1 into l_dummy;

Line 137: -- raise error as FK does not relate to PK in per_all_positions

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