DBA Data[Home] [Help]

APPS.QP_PRICE_BOOK_UTIL dependencies on QP_LOOKUPS

Line 2484: select meaning into l_meaning from qp_lookups where lookup_code = p_code and

2480: FUNCTION value_to_meaning( p_code IN VARCHAR2,p_type IN VARCHAR2) RETURN VARCHAR2
2481: IS
2482: l_meaning VARCHAR2(80) := Null;
2483: BEGIN
2484: select meaning into l_meaning from qp_lookups where lookup_code = p_code and
2485: lookup_type = p_type;
2486: return l_meaning;
2487: exception
2488: when no_data_found then return NULL;