DBA Data[Home] [Help]

APPS.AR_NOTIFICATION_STANDARD dependencies on FND_FORM_FUNCTIONS_VL

Line 17: cursor func is select function_id from fnd_form_functions_vl

13:
14: function createUrl(p_function in varchar2) return varchar2 is
15: l_url varchar2(1000);
16: l_function_id NUMBER;
17: cursor func is select function_id from fnd_form_functions_vl
18: where function_name = p_function;
19: begin
20: if ar_doc_transfer_standard.isDebugOn then ar_doc_transfer_standard.debug('AR_NOTIFICATION_STANDARD.createUrl(+)'); end if;
21: open func; fetch func into l_function_id; close func;