DBA Data[Home] [Help]

APPS.PAY_NO_EMP_CONT_2007 dependencies on HR_LOOKUPS

Line 1716: from hr_lookups

1712: FUNCTION get_lookup_meaning (p_lookup_type IN varchar2,p_lookup_code IN varchar2) RETURN VARCHAR2 IS
1713:
1714: CURSOR csr_lookup IS
1715: select meaning
1716: from hr_lookups
1717: where lookup_type = p_lookup_type
1718: and lookup_code = p_lookup_code
1719: and enabled_flag = 'Y';
1720:

Line 1721: l_meaning hr_lookups.meaning%type;

1717: where lookup_type = p_lookup_type
1718: and lookup_code = p_lookup_code
1719: and enabled_flag = 'Y';
1720:
1721: l_meaning hr_lookups.meaning%type;
1722:
1723: BEGIN
1724:
1725: OPEN csr_lookup;