DBA Data[Home] [Help]

APPS.UMX_REG_FLOW_PVT dependencies on FND_FORM_FUNCTIONS

Line 54: from umx_reg_services_b umx, fnd_form_functions f

50: ----------------------------------------------------------------------------
51: function validate_reg_service_code(p_regSrv in varchar2) return boolean is
52: CURSOR isRegSrvValid IS
53: select UMX.reg_service_type, UMX.reg_function_id, UMX.end_date, f.function_id
54: from umx_reg_services_b umx, fnd_form_functions f
55: where UMX.reg_service_code = p_regSrv
56: and UMX.reg_function_id = f.function_id(+);
57: begin
58: if p_regSrv is null then

Line 143: FROM fnd_form_functions

139: WHERE application_short_name = 'FND';
140:
141: SELECT function_id
142: INTO l_function_id
143: FROM fnd_form_functions
144: WHERE function_name = 'UMX_FLOW_LAUNCHER';
145: exception
146: when others then
147: return -1;

Line 186: FROM fnd_form_functions

182: WHERE application_short_name = 'FND';
183:
184: SELECT function_id
185: INTO l_function_id
186: FROM fnd_form_functions
187: WHERE function_name = 'UMX_FLOW_LAUNCHER';
188: exception
189: when others then
190: return -1;