DBA Data[Home] [Help]

APPS.PER_APR_BUS dependencies on FND_FUNCTION

Line 398: IF NOT fnd_function.test('HR_VIEW_SYSAPPR_MGR_SS') THEN -- HR Prof appraisal function

394: OPEN csr_fetch_type;
395: FETCH csr_fetch_type INTO l_person_type;
396: CLOSE csr_fetch_type;
397:
398: IF NOT fnd_function.test('HR_VIEW_SYSAPPR_MGR_SS') THEN -- HR Prof appraisal function
399: IF l_person_type in ('EMP','EMP_APL','CWK','CWK_APL') THEN
400: l_allow_appraisal :=TRUE;
401: ELSIF l_person_type IN ('EX_EMP','EX_EMP_APL') AND l_allow_term_emp = 'N' THEN
402: l_allow_appraisal :=FALSE;

Line 1664: --- if (NOT fnd_function.test('HR_VIEW_SYSAPPR_MGR_SS')

1660: -- Modified this procedure to add check on next appraisal date. Fix for bug 3061901
1661:
1662: l_proc varchar2(72) := g_package || 'chk_appraisal_dates';
1663: l_valid boolean;
1664: --- if (NOT fnd_function.test('HR_VIEW_SYSAPPR_MGR_SS')
1665: CURSOR csr_term_settings (p_appraisal_template_id IN NUMBER) IS
1666: SELECT NVL (show_term_employee ,'N'), NVL (show_term_contigent,'N'), NVL (show_future_term_employee,'N')
1667: FROM per_appraisal_templates
1668: WHERE appraisal_template_id = p_appraisal_template_id;

Line 1707: IF fnd_function.test('HR_VIEW_SYSAPPR_MGR_SS') THEN

1703: l_ret BOOLEAN;
1704: begin
1705: -- fetch person_typel
1706: -- IF HR Prof. then always alloww
1707: IF fnd_function.test('HR_VIEW_SYSAPPR_MGR_SS') THEN
1708: RETURN TRUE;
1709: END IF;
1710:
1711: open csr_no_term;

Line 1730: IF l_ret = FALSE AND (NOT fnd_function.test('HR_VIEW_SYSAPPR_MGR_SS') ) THEN

1726: l_ret := TRUE;
1727: ELSE
1728: l_ret := FALSE;
1729: END IF;
1730: IF l_ret = FALSE AND (NOT fnd_function.test('HR_VIEW_SYSAPPR_MGR_SS') ) THEN
1731: IF (p_term_emp = 'Y' OR p_future_term = 'Y') THEN
1732: IF l_person_type IN ('EX_EMP','EX_EMP_APL') THEN
1733: l_ret := TRUE;
1734: ELSE