DBA Data[Home] [Help]

APPS.PAY_CN_DEDUCTIONS dependencies on PAY_ELEMENT_ENTRY_API

Line 1971: hr_cn_api.set_location (g_debug,'Employee is terminated. Not calling pay_element_entry_api.',15);

1967: --
1968: --
1969: IF l_asg_status = 'TERM_ASSIGN' THEN
1970: --
1971: hr_cn_api.set_location (g_debug,'Employee is terminated. Not calling pay_element_entry_api.',15);
1972: hr_cn_api.set_location(g_debug,' Leaving : '||g_procedure_name,15);
1973: RETURN l_message;
1974: --
1975: END IF;

Line 1995: hr_cn_api.set_location(g_debug,' Element Entry is end-dated this month. Not calling pay_element_entry_api.',18);

1991: --
1992: IF c_ee_end%FOUND THEN
1993: --
1994: CLOSE c_ee_end;
1995: hr_cn_api.set_location(g_debug,' Element Entry is end-dated this month. Not calling pay_element_entry_api.',18);
1996: hr_cn_api.set_location(g_debug,' Leaving : '||g_procedure_name,18);
1997: RETURN l_message;
1998: --
1999: ELSE

Line 2002: hr_cn_api.set_location(g_debug,' Element Entry is active this month. Can call pay_element_entry_api.',19);

1998: --
1999: ELSE
2000: --
2001: CLOSE c_ee_end;
2002: hr_cn_api.set_location(g_debug,' Element Entry is active this month. Can call pay_element_entry_api.',19);
2003: hr_cn_api.set_location(g_debug,' ' || g_procedure_name,19);
2004: --
2005: END IF;
2006: --

Line 2032: hr_cn_api.set_location(g_debug,' Employee is terminated on last day. Not calling pay_element_entry_api.',33);

2028: INTO l_asg_status;
2029:
2030: IF c_asg_status%NOTFOUND THEN
2031: --
2032: hr_cn_api.set_location(g_debug,' Employee is terminated on last day. Not calling pay_element_entry_api.',33);
2033: hr_cn_api.set_location(g_debug,' Leaving : '||g_procedure_name,33);
2034: RETURN l_message;
2035: --
2036: END IF;

Line 2085: hr_utility.trace ('. Calling pay_element_entry_api.');

2081: --
2082: hr_cn_api.set_location(g_debug,' ' || g_procedure_name,40);
2083: IF g_debug THEN
2084: hr_utility.trace(' ==============================================');
2085: hr_utility.trace ('. Calling pay_element_entry_api.');
2086: hr_utility.trace ('. Element Entry : '||TO_CHAR(p_element_entry_id));
2087: hr_utility.trace ('. Effective Date : '||TO_CHAR(p_calculation_date+1,'DD-MM-YYYY'));
2088: hr_utility.trace ('. Input Value Id : '||TO_CHAR(l_iv_id));
2089: hr_utility.trace ('. Entry Value : '||TO_CHAR(p_calculation_date,'DD-MM-YYYY'));

Line 2096: pay_element_entry_api.update_element_entry

2092: hr_utility.trace(' ==============================================');
2093: END IF;
2094:
2095: BEGIN
2096: pay_element_entry_api.update_element_entry
2097: (p_datetrack_update_mode => l_upd_mode
2098: ,p_effective_date => p_calculation_date + 1
2099: ,p_business_group_id => p_business_group_id
2100: ,p_element_entry_id => p_element_entry_id

Line 2112: hr_cn_api.set_location(g_debug,' . Error in pay_element_entry_api.',5);

2108:
2109: EXCEPTION
2110: WHEN OTHERS THEN
2111: --
2112: hr_cn_api.set_location(g_debug,' . Error in pay_element_entry_api.',5);
2113: hr_cn_api.set_location(g_debug,' Leaving : '||g_procedure_name,5);
2114: l_message := SUBSTRB(SQLERRM,1,240);
2115: RETURN l_message;
2116: --