DBA Data[Home] [Help]

APPS.PSP_GENERAL dependencies on PSP_PAYROLL_SOURCES

Line 1519: FROM psp_payroll_sources

1515: FUNCTION get_source_type (p_source_type IN VARCHAR2,
1516: p_source_code IN VARCHAR2) RETURN VARCHAR2 IS
1517: CURSOR source_type_cur IS
1518: SELECT description
1519: FROM psp_payroll_sources
1520: WHERE source_type = p_source_type
1521: AND source_code = p_source_code;
1522:
1523: l_source_type psp_payroll_sources.description%TYPE;

Line 1523: l_source_type psp_payroll_sources.description%TYPE;

1519: FROM psp_payroll_sources
1520: WHERE source_type = p_source_type
1521: AND source_code = p_source_code;
1522:
1523: l_source_type psp_payroll_sources.description%TYPE;
1524:
1525: BEGIN
1526: OPEN source_type_cur;
1527: FETCH source_type_cur INTO l_source_type;