DBA Data[Home] [Help]

APPS.PAY_CN_DEDUCTIONS dependencies on PAY_ELEMENT_ENTRY_API

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

1977: --
1978: --
1979: IF l_asg_status = 'TERM_ASSIGN' THEN
1980: --
1981: hr_cn_api.set_location (g_debug,'Employee is terminated. Not calling pay_element_entry_api.',15);
1982: hr_cn_api.set_location(g_debug,' Leaving : '||g_procedure_name,15);
1983: RETURN l_message;
1984: --
1985: END IF;

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

2001: --
2002: IF c_ee_end%FOUND THEN
2003: --
2004: CLOSE c_ee_end;
2005: hr_cn_api.set_location(g_debug,' Element Entry is end-dated this month. Not calling pay_element_entry_api.',18);
2006: hr_cn_api.set_location(g_debug,' Leaving : '||g_procedure_name,18);
2007: RETURN l_message;
2008: --
2009: ELSE

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

2008: --
2009: ELSE
2010: --
2011: CLOSE c_ee_end;
2012: hr_cn_api.set_location(g_debug,' Element Entry is active this month. Can call pay_element_entry_api.',19);
2013: hr_cn_api.set_location(g_debug,' ' || g_procedure_name,19);
2014: --
2015: END IF;
2016: --

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

2038: INTO l_asg_status;
2039:
2040: IF c_asg_status%NOTFOUND THEN
2041: --
2042: hr_cn_api.set_location(g_debug,' Employee is terminated on last day. Not calling pay_element_entry_api.',33);
2043: hr_cn_api.set_location(g_debug,' Leaving : '||g_procedure_name,33);
2044: RETURN l_message;
2045: --
2046: END IF;

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

2091: --
2092: hr_cn_api.set_location(g_debug,' ' || g_procedure_name,40);
2093: IF g_debug THEN
2094: hr_utility.trace(' ==============================================');
2095: hr_utility.trace ('. Calling pay_element_entry_api.');
2096: hr_utility.trace ('. Element Entry : '||TO_CHAR(p_element_entry_id));
2097: hr_utility.trace ('. Effective Date : '||TO_CHAR(p_calculation_date+1,'DD-MM-YYYY'));
2098: hr_utility.trace ('. Input Value Id : '||TO_CHAR(l_iv_id));
2099: hr_utility.trace ('. Entry Value : '||TO_CHAR(p_calculation_date,'DD-MM-YYYY'));

Line 2106: pay_element_entry_api.update_element_entry

2102: hr_utility.trace(' ==============================================');
2103: END IF;
2104:
2105: BEGIN
2106: pay_element_entry_api.update_element_entry
2107: (p_datetrack_update_mode => l_upd_mode
2108: ,p_effective_date => p_calculation_date + 1
2109: ,p_business_group_id => p_business_group_id
2110: ,p_element_entry_id => p_element_entry_id

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

2118:
2119: EXCEPTION
2120: WHEN OTHERS THEN
2121: --
2122: hr_cn_api.set_location(g_debug,' . Error in pay_element_entry_api.',5);
2123: hr_cn_api.set_location(g_debug,' Leaving : '||g_procedure_name,5);
2124: l_message := SUBSTRB(SQLERRM,1,240);
2125: RETURN l_message;
2126: --