DBA Data[Home] [Help]

APPS.XLA_UTIL dependencies on FND_FUNCTION

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

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

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

117:
118:
119: FUNCTION get_function_id(p_function_name in varchar2 ) RETURN NUMBER IS
120: BEGIN
121: RETURN (fnd_function.get_function_id (p_function_name));
122: END;
123:
124:
125: END XLA_UTIL;