DBA Data[Home] [Help]

APPS.MSC_X_HZ_PLAN dependencies on FND_LOOKUP_VALUES

Line 3980: -- get the graph title from the fnd_lookup_values table

3976: END;
3977:
3978: if v_pref IS NOT NULL OR arg_default_pref = 1 then
3979:
3980: -- get the graph title from the fnd_lookup_values table
3981: if v_graphtype <> 0 then
3982: v_graphtitle := get_lookup_name('MSC_X_GRAPH_OPTION', v_graphtype);
3983: end if;
3984:

Line 4838: * lookup types and codes from teh fnd_lookup_values table.

4834: END;
4835:
4836: /**
4837: * The foll function retrieves the meaning for different
4838: * lookup types and codes from teh fnd_lookup_values table.
4839: */
4840: FUNCTION get_lookup_name(v_lookup_type IN VARCHAR2, v_lookup_code IN NUMBER) RETURN VARCHAR2
4841: IS
4842: v_name VARCHAR2(250) := '';

Line 4845: FROM fnd_lookup_values

4841: IS
4842: v_name VARCHAR2(250) := '';
4843: BEGIN
4844: SELECT meaning INTO v_name
4845: FROM fnd_lookup_values
4846: WHERE lookup_type = v_lookup_type
4847: AND lookup_code = nvl(v_lookup_code,-1)
4848: AND language = userenv('lang');
4849: