DBA Data[Home] [Help]

APPS.PAY_NO_EMP_CONT dependencies on HR_LOOKUPS

Line 1649: from hr_lookups

1645: FUNCTION get_lookup_meaning (p_lookup_type IN varchar2,p_lookup_code IN varchar2) RETURN VARCHAR2 IS
1646:
1647: CURSOR csr_lookup IS
1648: select meaning
1649: from hr_lookups
1650: where lookup_type = p_lookup_type
1651: and lookup_code = p_lookup_code
1652: and enabled_flag = 'Y';
1653:

Line 1654: l_meaning hr_lookups.meaning%type;

1650: where lookup_type = p_lookup_type
1651: and lookup_code = p_lookup_code
1652: and enabled_flag = 'Y';
1653:
1654: l_meaning hr_lookups.meaning%type;
1655:
1656: BEGIN
1657:
1658: OPEN csr_lookup;