28:
29: FUNCTION get_conversion_type (
30: p_conversion_type IN VARCHAR2) RETURN VARCHAR2
31: IS
32: l_user_conversion_type GL_DAILY_CONVERSION_TYPES.USER_CONVERSION_TYPE%TYPE;
33: BEGIN
34:
35: SELECT USER_CONVERSION_TYPE
36: INTO l_user_conversion_type
33: BEGIN
34:
35: SELECT USER_CONVERSION_TYPE
36: INTO l_user_conversion_type
37: from GL_DAILY_CONVERSION_TYPES
38: where conversion_type = p_conversion_type;
39:
40: return l_user_conversion_type;
41: END get_conversion_type;