DBA Data[Home] [Help]

APPS.XLA_UTIL dependencies on FND_FUNCTION

Line 112: -- Its a wrapper over FND_FUNCTION.GET_FUNCTION_ID

108: RETURN ( pg_query_context );
109: END;
110:
111: -- lgandhi bug 2969915 Created a new function to check the the existence of the function in the data base.
112: -- Its a wrapper over FND_FUNCTION.GET_FUNCTION_ID
113: -- returns: the function id, or NULL if it can't be found.
114:
115:
116: FUNCTION get_function_id(p_function_name in varchar2 ) RETURN NUMBER IS

Line 118: RETURN (fnd_function.get_function_id (p_function_name));

114:
115:
116: FUNCTION get_function_id(p_function_name in varchar2 ) RETURN NUMBER IS
117: BEGIN
118: RETURN (fnd_function.get_function_id (p_function_name));
119: END;
120:
121:
122: END XLA_UTIL;