DBA Data[Home] [Help]

APPS.PO_REQAPPROVAL_INIT1 dependencies on FND_FORM_FUNCTIONS

Line 338: Get the function id given the function name as in FND_FORM_FUNCTIONS table

334:
335: /**
336: < Added this function as part of Bug #: 2810150 >
337: FUNCTION NAME: get_function_id
338: Get the function id given the function name as in FND_FORM_FUNCTIONS table
339: String p_function_name - Function name
340: Return Number - The function id
341:
342: CHANGE History : Created 27-Feb-2003 JPASALA

Line 347: FROM fnd_form_functions

343: */
344: FUNCTION get_function_id (p_function_name IN VARCHAR2) RETURN NUMBER IS
345: CURSOR l_cur IS
346: SELECT function_id
347: FROM fnd_form_functions
348: WHERE function_name = p_function_name;
349: l_function_id NUMBER:=0;
350: BEGIN
351: OPEN l_cur;