DBA Data[Home] [Help]

APPS.PO_REQAPPROVAL_INIT1 dependencies on FND_FORM_FUNCTIONS

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

402: END get_wf_role_for_users;
403: /**
404: < Added this function as part of Bug #: 2810150 >
405: FUNCTION NAME: get_function_id
406: Get the function id given the function name as in FND_FORM_FUNCTIONS table
407: String p_function_name - Function name
408: Return Number - The function id
409: CHANGE History : Created 27-Feb-2003 JPASALA
410: */

Line 419: FROM fnd_form_functions

415: IS
416: CURSOR l_cur
417: IS
418: SELECT function_id
419: FROM fnd_form_functions
420: WHERE function_name = p_function_name;
421:
422: l_function_id NUMBER:=0;
423: BEGIN