DBA Data[Home] [Help]

APPS.BIS_REPORT_FUNCTION_PVT SQL Statements

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

Line: 16

    select function_id, function_name, user_function_name
    from fnd_form_functions_vl
    where UPPER(PARAMETERS) like '%REPORT%'
      and TYPE = 'WWW';
Line: 68

    select 1
    from fnd_form_functions_vl
    where function_id = p_Report_Function_ID
    and  TYPE = 'BISTAR';
Line: 121

    select function_id into x_Report_Function_ID
    from fnd_form_functions_vl
    where function_name = p_Report_Function_Name
    and  TYPE = 'BISTAR';
Line: 129

    select function_id into x_Report_Function_ID
    from fnd_form_functions_vl
    where user_function_name = p_Report_user_Function_Name
    and  TYPE = 'BISTAR';