DBA Data[Home] [Help]

APPS.BIS_COMPUTED_TARGET_PVT dependencies on FND_FORM_FUNCTIONS_VL

Line 18: from fnd_form_functions_vl

14:
15: i NUMBER := 0;
16: cursor comp_target is
17: select function_id,function_name, user_function_name
18: from fnd_form_functions_vl
19: where parameters like G_BISTAR_CLAUSE ;
20: --where TYPE = 'BISTAR';
21:
22: l_rec Computed_target_Rec_Type;

Line 70: from fnd_form_functions_vl

66: IS
67:
68: CURSOR val_cur is
69: select 1
70: from fnd_form_functions_vl
71: where function_id = p_Computed_Target_ID
72: and parameters like G_BISTAR_CLAUSE ;
73: --and TYPE = 'BISTAR';
74: l_dummy number;

Line 142: from fnd_form_functions_vl

138: if (BIS_UTILITIES_PUB.Value_Not_Missing(p_Computed_Target_Short_Name)
139: = FND_API.G_TRUE) then
140:
141: select function_id into x_Computed_Target_ID
142: from fnd_form_functions_vl
143: where function_name = p_Computed_Target_Short_Name
144: and parameters like G_BISTAR_CLAUSE;
145: --and TYPE = 'BISTAR';
146:

Line 151: from fnd_form_functions_vl

147: elsif (BIS_UTILITIES_PUB.Value_Not_Missing(p_Computed_Target_Name)
148: = FND_API.G_TRUE) then
149:
150: select function_id into x_Computed_Target_ID
151: from fnd_form_functions_vl
152: where user_function_name = p_Computed_Target_Name
153: and parameters like G_BISTAR_CLAUSE ;
154: --and TYPE = 'BISTAR';
155: