DBA Data[Home] [Help]

APPS.GHR_NLA_BUS dependencies on GHR_NATURE_OF_ACTIONS

Line 112: from ghr_nature_of_actions a

108: l_dummy varchar2(1);
109: --
110: cursor c1 is
111: select null
112: from ghr_nature_of_actions a
113: where a.nature_of_action_id = p_nature_of_action_id;
114: --
115: Begin
116: --

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

124: and nvl(p_nature_of_action_id,hr_api.g_number)
125: <> nvl(ghr_nla_shd.g_old_rec.nature_of_action_id,hr_api.g_number)
126: or not l_api_updating) then
127: --
128: -- check if nature_of_action_id value exists in ghr_nature_of_actions table
129: --
130: open c1;
131: --
132: fetch c1 into l_dummy;

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

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