DBA Data[Home] [Help]

APPS.ARP_AUTOMATIC_CLEARING_PKG dependencies on ARP_UTIL

Line 736: v_amount := arp_util.functional_amount(

732: -- 785113
733: -- Bank currency not equal to receipt currency. Calculate
734: -- new accounted amounts using the receipt amount and exch.rate.
735: --
736: v_amount := arp_util.functional_amount(
737: v_crh_amount,
738: ARP_GLOBAL.functional_currency,
739: nvl(v_ex_rate,nvl(v_ex_rate_old,1)),
740: NULL,NULL );

Line 741: v_fac_disc_amount := arp_util.functional_amount(

737: v_crh_amount,
738: ARP_GLOBAL.functional_currency,
739: nvl(v_ex_rate,nvl(v_ex_rate_old,1)),
740: NULL,NULL );
741: v_fac_disc_amount := arp_util.functional_amount(
742: nvl(v_crh_fac_disc_amt,0),
743: ARP_GLOBAL.functional_currency,
744: nvl(v_ex_rate,1),
745: NULL,NULL );

Line 1069: arp_util.debug('Can not start for worker_id: ' ||p_worker_number );

1065: p_worker_number,
1066: p_master_request_id );
1067:
1068: IF (l_request_id = 0) THEN
1069: arp_util.debug('Can not start for worker_id: ' ||p_worker_number );
1070: P_ERRBUF := fnd_Message.get;
1071: P_RETCODE := 2;
1072: return;
1073: ELSE

Line 1075: arp_util.debug('Child request id: ' ||l_request_id || ' started for

1071: P_RETCODE := 2;
1072: return;
1073: ELSE
1074: commit;
1075: arp_util.debug('Child request id: ' ||l_request_id || ' started for
1076: worker_id: ' ||p_worker_number );
1077: END IF;
1078:
1079: l_req_status_tab(p_worker_number).request_id := l_request_id;

Line 1189: arp_util.debug('Worker # '|| i||' has a phase

1185: message =>l_req_status_tab(i).message);
1186:
1187: IF l_req_status_tab(i).dev_phase <> 'COMPLETE' THEN
1188: P_RETCODE := 2;
1189: arp_util.debug('Worker # '|| i||' has a phase
1190: '||l_req_status_tab(i).dev_phase);
1191:
1192: ELSIF l_req_status_tab(i).dev_phase = 'COMPLETE'
1193: AND l_req_status_tab(i).dev_status <> 'NORMAL' THEN

Line 1195: arp_util.debug('Worker # '|| i||' completed with status

1191:
1192: ELSIF l_req_status_tab(i).dev_phase = 'COMPLETE'
1193: AND l_req_status_tab(i).dev_status <> 'NORMAL' THEN
1194: P_RETCODE := 2;
1195: arp_util.debug('Worker # '|| i||' completed with status
1196: '||l_req_status_tab(i).dev_status);
1197: ELSE
1198: arp_util.debug('Worker # '|| i||' completed successfully');
1199: END IF;

Line 1198: arp_util.debug('Worker # '|| i||' completed successfully');

1194: P_RETCODE := 2;
1195: arp_util.debug('Worker # '|| i||' completed with status
1196: '||l_req_status_tab(i).dev_status);
1197: ELSE
1198: arp_util.debug('Worker # '|| i||' completed successfully');
1199: END IF;
1200:
1201: END LOOP;
1202: DELETE FROM ar_autoclear_interim

Line 1210: arp_util.debug('Exception: ar_automatic_clearing_pkg '|| SQLERRM);

1206:
1207: IF P_RETCODE = 2 THEN
1208: fnd_file.put_line( FND_FILE.LOG, 'Master Program completed in Error.');
1209: fnd_file.put_line( FND_FILE.LOG, 'Possibly Child process(es) might have errored out.');
1210: arp_util.debug('Exception: ar_automatic_clearing_pkg '|| SQLERRM);
1211: RAISE error_in_child;
1212: END IF;
1213: fnd_file.put_line( FND_FILE.LOG, 'ar_automatic_clearing_in_parallel()-');
1214: return TRUE;

Line 1217: arp_util.debug('Exception: ar_automatic_clearing_pkg '|| SQLERRM);

1213: fnd_file.put_line( FND_FILE.LOG, 'ar_automatic_clearing_in_parallel()-');
1214: return TRUE;
1215: EXCEPTION
1216: WHEN OTHERS THEN
1217: arp_util.debug('Exception: ar_automatic_clearing_pkg '|| SQLERRM);
1218: RAISE ;
1219: END;
1220: --
1221: procedure populate_interim_table

Line 1754: v_amount := arp_util.functional_amount(

1750: -- 785113
1751: -- Bank currency not equal to receipt currency. Calculate
1752: -- new accounted amounts using the receipt amount and exch.rate.
1753: --
1754: v_amount := arp_util.functional_amount(
1755: v_crh_amount,
1756: ARP_GLOBAL.functional_currency,
1757: nvl(v_ex_rate,nvl(v_ex_rate_old,1)),
1758: NULL,NULL );

Line 1759: v_fac_disc_amount := arp_util.functional_amount(

1755: v_crh_amount,
1756: ARP_GLOBAL.functional_currency,
1757: nvl(v_ex_rate,nvl(v_ex_rate_old,1)),
1758: NULL,NULL );
1759: v_fac_disc_amount := arp_util.functional_amount(
1760: nvl(v_crh_fac_disc_amt,0),
1761: ARP_GLOBAL.functional_currency,
1762: nvl(v_ex_rate,1),
1763: NULL,NULL );