DBA Data[Home] [Help]

APPS.GHR_NRE_BUS dependencies on GHR_NATURE_OF_ACTIONS

Line 187: from ghr_nature_of_actions a

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

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

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

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

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