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 192: hr_utility.set_location('End of archive Standard Element',4);

188:
189:
190: END LOOP;
191: hr_utility.trace('Closing Cursor csr_std_elements');
192: hr_utility.set_location('End of archive Standard Element',4);
193: hr_utility.set_location('Leaving Procedure pay_sg_payslip_archive.' || l_procedure_name,10);
194:
195: EXCEPTION
196: WHEN OTHERS THEN

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

193: hr_utility.set_location('Leaving Procedure pay_sg_payslip_archive.' || l_procedure_name,10);
194:
195: EXCEPTION
196: WHEN OTHERS THEN
197: hr_utility.set_location('Error in archiving Standard Elements ',5);
198: RAISE;
199:
200: END archive_stat_elements;
201: