DBA Data[Home] [Help]

APPS.SOA_REMOVE dependencies on FND_FORM_FUNCTIONS_TL

Line 180: from fnd_form_functions_tl

176: ) IS
177:
178: cursor c_derived_function_tl(c_derived_function_id in pls_integer) is
179: select *
180: from fnd_form_functions_tl
181: where function_id = c_derived_function_id;
182:
183: begin
184:

Line 195: delete from fnd_form_functions_tl where function_id = p_derived_function_id;

191: LOOP
192: dbms_output.put_line(c_derived_function_tl_rec.language);
193: END LOOP;*/
194: remove_class_lang_entry(p_derived_class_id,p_err_code,p_err_message);
195: delete from fnd_form_functions_tl where function_id = p_derived_function_id;
196: p_err_code := 0;
197: p_err_message := wf_core.translate('WF_WS_DELETE_SUCCESS');
198:
199: exception