DBA Data[Home] [Help]

APPS.AHL_UTILITY_PVT dependencies on FND_LOOKUP_VALUES

Line 754: -- Return fnd_lookup_values_vl.meaning, given lookup_type and lookup_code.

750: -- FUNCTION
751: -- GET_LOOKUP_MEANING
752: --
753: -- PURPOSE
754: -- Return fnd_lookup_values_vl.meaning, given lookup_type and lookup_code.
755: -- This function will either return the correct meaning, or return null.
756: -- This function also will not raise any error.
757: --======================================================================
758: FUNCTION GET_LOOKUP_MEANING

Line 770: FROM fnd_lookup_values

766:
767: CURSOR get_meaning
768: IS
769: SELECT meaning
770: FROM fnd_lookup_values
771: WHERE lookup_type = p_lookup_type
772: AND lookup_code = p_lookup_code
773: AND language = userenv('LANG');
774: BEGIN