DBA Data[Home] [Help]

APPS.BIS_REPORT_FUNCTION_PVT dependencies on FND_FORM_FUNCTIONS_VL

Line 17: from fnd_form_functions_vl

13:
14: i NUMBER := 0;
15: cursor web_reports is
16: select function_id, function_name, user_function_name
17: from fnd_form_functions_vl
18: where UPPER(PARAMETERS) like '%REPORT%'
19: and TYPE = 'WWW';
20:
21: l_rec Report_Function_Rec_Type;

Line 69: from fnd_form_functions_vl

65: IS
66:
67: CURSOR val_cur is
68: select 1
69: from fnd_form_functions_vl
70: where function_id = p_Report_Function_ID
71: and TYPE = 'BISTAR';
72: l_dummy number;
73:

Line 122: from fnd_form_functions_vl

118: if (BIS_UTILITIES_PUB.Value_Not_Missing(p_Report_Function_Name)
119: = FND_API.G_TRUE) then
120:
121: select function_id into x_Report_Function_ID
122: from fnd_form_functions_vl
123: where function_name = p_Report_Function_Name
124: and TYPE = 'BISTAR';
125:
126: elsif (BIS_UTILITIES_PUB.Value_Not_Missing(p_Report_user_Function_Name)

Line 130: from fnd_form_functions_vl

126: elsif (BIS_UTILITIES_PUB.Value_Not_Missing(p_Report_user_Function_Name)
127: = FND_API.G_TRUE) then
128:
129: select function_id into x_Report_Function_ID
130: from fnd_form_functions_vl
131: where user_function_name = p_Report_user_Function_Name
132: and TYPE = 'BISTAR';
133:
134: else