DBA Data[Home] [Help]

APPS.GHR_PRH_BUS dependencies on FND_USER

Line 261: -- Validates that the user_name exists in the table fnd_user and

257: -- |---------------------------< chk_user_name>----------------------------|
258: -- ----------------------------------------------------------------------------
259:
260: -- Description:
261: -- Validates that the user_name exists in the table fnd_user and
262: -- Pre-conditions:
263: --
264: --
265: -- In Arguments:

Line 302: from fnd_user

298: and gbu.user_name = p_user_name;
299:
300: cursor c_user_name is
301: select 1
302: from fnd_user
303: where upper(user_name) = upper(p_user_name);
304:
305: begin
306: l_proc := g_package ||'chk_user_name';