DBA Data[Home] [Help]

APPS.PAY_CN_SOE dependencies on HR_CN_API

Line 37: hr_cn_api.set_location (g_debug,'Entering ' || l_procedure,10);

33: WHERE locked_action_id = p_assignment_action_id;
34: BEGIN
35:
36: l_procedure := 'getelements';
37: hr_cn_api.set_location (g_debug,'Entering ' || l_procedure,10);
38:
39: OPEN csr_prepayments_action_id;
40: FETCH csr_prepayments_action_id INTO l_assignment_action_id;
41: CLOSE csr_prepayments_action_id;

Line 54: hr_cn_api.set_location (g_debug,'Leaving ' || l_procedure,10);

50: FROM pay_cn_asg_elements_v
51: WHERE assignment_action_id = ' || l_assignment_action_id || '
52: AND classification_name = ''' || p_classification_name || '''';
53:
54: hr_cn_api.set_location (g_debug,'Leaving ' || l_procedure,10);
55:
56: RETURN g_sql;
57:
58: END getelements;

Line 78: hr_cn_api.set_location (g_debug,'Entering ' || l_procedure,10);

74: l_procedure VARCHAR2(50);
75: BEGIN
76:
77: l_procedure := 'get_taxable_earnings';
78: hr_cn_api.set_location (g_debug,'Entering ' || l_procedure,10);
79:
80: RETURN getElements(p_assignment_action_id => p_assignment_action_id
81: ,p_classification_name => 'Taxable Earnings'
82: );

Line 105: hr_cn_api.set_location (g_debug,'Entering ' || l_procedure,10);

101: l_procedure VARCHAR2(50);
102: BEGIN
103:
104: l_procedure := 'get_non_taxable_earnings';
105: hr_cn_api.set_location (g_debug,'Entering ' || l_procedure,10);
106:
107: RETURN getElements( p_assignment_action_id => p_assignment_action_id
108: , p_classification_name => 'Non Taxable Earnings'
109: );

Line 132: hr_cn_api.set_location (g_debug,'Entering ' || l_procedure,10);

128: l_procedure VARCHAR2(50);
129: BEGIN
130:
131: l_procedure := 'get_statutory_deductions';
132: hr_cn_api.set_location (g_debug,'Entering ' || l_procedure,10);
133:
134: RETURN getElements( p_assignment_action_id => p_assignment_action_id
135: , p_classification_name => 'Statutory Deductions'
136: );

Line 159: hr_cn_api.set_location (g_debug,'Entering ' || l_procedure,10);

155: l_procedure VARCHAR2(50);
156: BEGIN
157:
158: l_procedure := 'get_non_statutory_deductions';
159: hr_cn_api.set_location (g_debug,'Entering ' || l_procedure,10);
160:
161: RETURN getElements( p_assignment_action_id => p_assignment_action_id
162: , p_classification_name => 'Pre Tax Non Statutory Deductions'
163: );

Line 186: hr_cn_api.set_location (g_debug,'Entering ' || l_procedure,10);

182: l_procedure VARCHAR2(50);
183: BEGIN
184:
185: l_procedure := 'get_voluntary_deductions';
186: hr_cn_api.set_location (g_debug,'Entering ' || l_procedure,10);
187:
188: RETURN getElements( p_assignment_action_id => p_assignment_action_id
189: , p_classification_name => 'Voluntary Dedn'
190: );