DBA Data[Home] [Help]

APPS.GHR_NRE_BUS dependencies on GHR_NATURE_OF_ACTIONS

Line 186: from ghr_nature_of_actions a

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

Line 202: -- check if nature_of_action_id value exists in ghr_nature_of_actions table

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

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

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