DBA Data[Home] [Help]

APPS.HR_HELPDESK_UTIL_SS dependencies on FND_FORM_FUNCTIONS

Line 128: where function_id IN (select function_id from fnd_form_functions

124: (select menu_id from fnd_responsibility where responsibility_id in(
125: select responsibility_id from fnd_user_resp_groups
126: where user_id = fnd_global.USER_ID))
127: connect by fme.menu_id = prior fme.sub_menu_id )
128: where function_id IN (select function_id from fnd_form_functions
129: where function_name = 'HR_HELPDESK_SS') ;
130:
131: if l_count > 0 then
132: return 'Y';

Line 149: SELECT type INTO func_type FROM fnd_form_functions WHERE function_name = func_name;

145:
146: func_type varchar2(5);
147: Begin
148:
149: SELECT type INTO func_type FROM fnd_form_functions WHERE function_name = func_name;
150: If func_type = 'FORM' then
151: return 'F';
152: Elsif func_type = 'JSP' then
153: return 'J';