DBA Data[Home] [Help]

APPS.FND_RUN_FUNCTION SQL Statements

The following lines contain the word 'select', 'insert', 'update' or 'delete':

Line: 33

 cursor c_func is select function_id from fnd_form_functions
                  where function_name = p_function_name;
Line: 35

 cursor c_app is select application_id from fnd_application
                 where application_short_name = p_resp_appl;
Line: 37

 cursor c_resp is select responsibility_id from fnd_responsibility
                  where responsibility_key = p_resp_key;
Line: 39

 cursor c_sec is select security_group_id from fnd_security_groups
                 where security_group_key = p_security_group_key;
Line: 195

 cursor lc is select userenv('LANG') from dual;
Line: 339

 cursor c1 is select type, user_function_name, form_id
              from fnd_form_functions_vl
              where function_id = p_function_id;