DBA Data[Home] [Help]

APPS.PAY_AE_CHEQUE_REPORT dependencies on HR_LOOKUPS

Line 31: from hr_lookups

27: RETURN VARCHAR2 IS
28:
29: CURSOR csr_lookup IS
30: select meaning
31: from hr_lookups
32: where lookup_type = p_lookup_type
33: and lookup_code = p_lookup_code;
34: l_meaning hr_lookups.meaning%type;
35:

Line 34: l_meaning hr_lookups.meaning%type;

30: select meaning
31: from hr_lookups
32: where lookup_type = p_lookup_type
33: and lookup_code = p_lookup_code;
34: l_meaning hr_lookups.meaning%type;
35:
36: BEGIN
37:
38: OPEN csr_lookup;