DBA Data[Home] [Help]

APPS.HR_HNM_BUS dependencies on HR_KI_USER_INTERFACES

Line 226: -- the master table hr_ki_user_interfaces if not null.

222: -- {Start Of Comments}
223: --
224: -- Description:
225: -- This procedure ensures that the user interface id entered is present in
226: -- the master table hr_ki_user_interfaces if not null.
227:
228: -- Pre Conditions:
229: -- g_rec has been populated with details of the values
230: -- from the ins or the upd procedures

Line 237: -- hr_ki_user_interfaces.

233: -- p_user_interface_id
234:
235: -- Post Success:
236: -- Processing continues if user interface id is present in
237: -- hr_ki_user_interfaces.
238: --
239: -- Post Failure:
240: -- An application error is raised if user interface id does not exist in
241: -- hr_ki_user_interfaces.

Line 241: -- hr_ki_user_interfaces.

237: -- hr_ki_user_interfaces.
238: --
239: -- Post Failure:
240: -- An application error is raised if user interface id does not exist in
241: -- hr_ki_user_interfaces.
242: --
243: -- {End Of Comments}
244: -- ----------------------------------------------------------------------------
245:

Line 256: hr_ki_user_interfaces itf

252: CURSOR csr_itf_id is
253: select
254: 'found'
255: From
256: hr_ki_user_interfaces itf
257: where
258: itf.user_interface_id = p_user_interface_id;
259:
260: