DBA Data[Home] [Help]

APPS.PAY_AE_PAYROLL_REGISTER dependencies on HR_LOOKUPS

Line 1959: from hr_lookups

1955: ,p_lookup_code varchar2)
1956: RETURN VARCHAR2 IS
1957: CURSOR csr_lookup IS
1958: select meaning
1959: from hr_lookups
1960: where lookup_type = p_lookup_type
1961: and lookup_code = p_lookup_code;
1962: l_meaning hr_lookups.meaning%type;
1963: BEGIN

Line 1962: l_meaning hr_lookups.meaning%type;

1958: select meaning
1959: from hr_lookups
1960: where lookup_type = p_lookup_type
1961: and lookup_code = p_lookup_code;
1962: l_meaning hr_lookups.meaning%type;
1963: BEGIN
1964: OPEN csr_lookup;
1965: FETCH csr_lookup INTO l_Meaning;
1966: CLOSE csr_lookup;