DBA Data[Home] [Help]

APPS.GHR_NLA_BUS dependencies on GHR_NATURE_OF_ACTIONS

Line 111: from ghr_nature_of_actions a

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

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

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

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

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