DBA Data[Home] [Help]

APPS.PAY_SG_PAYSLIP_ARCHIVE dependencies on STANDARD

Line 157: hr_utility.set_location('Archiving Standard Element Details',20);

153: FOR csr_rec IN csr_std_elements(p_assignment_action_id,p_assignment_id)
154:
155: LOOP
156:
157: hr_utility.set_location('Archiving Standard Element Details',20);
158:
159: /* Start of Bug No : 2643038 */
160: IF nvl(csr_rec.exchange_rate,0) <> 0 THEN
161: l_foreign_currency_amount := csr_rec.amount / csr_rec.exchange_rate;

Line 198: hr_utility.set_location('End of archive Standard Element',4);

194:
195:
196: END LOOP;
197: hr_utility.trace('Closing Cursor csr_std_elements');
198: hr_utility.set_location('End of archive Standard Element',4);
199: hr_utility.set_location('Leaving Procedure pay_sg_payslip_archive.' || l_procedure_name,10);
200:
201: EXCEPTION
202: WHEN OTHERS THEN

Line 203: hr_utility.set_location('Error in archiving Standard Elements ',5);

199: hr_utility.set_location('Leaving Procedure pay_sg_payslip_archive.' || l_procedure_name,10);
200:
201: EXCEPTION
202: WHEN OTHERS THEN
203: hr_utility.set_location('Error in archiving Standard Elements ',5);
204: RAISE;
205:
206: END archive_stat_elements;
207: