DBA Data[Home] [Help]

APPS.ARP_AUTOMATIC_CLEARING_PKG dependencies on ARP_UTIL

Line 722: v_amount := arp_util.functional_amount(

718: -- 785113
719: -- Bank currency not equal to receipt currency. Calculate
720: -- new accounted amounts using the receipt amount and exch.rate.
721: --
722: v_amount := arp_util.functional_amount(
723: v_crh_amount,
724: ARP_GLOBAL.functional_currency,
725: nvl(v_ex_rate,nvl(v_ex_rate_old,1)),
726: NULL,NULL );

Line 727: v_fac_disc_amount := arp_util.functional_amount(

723: v_crh_amount,
724: ARP_GLOBAL.functional_currency,
725: nvl(v_ex_rate,nvl(v_ex_rate_old,1)),
726: NULL,NULL );
727: v_fac_disc_amount := arp_util.functional_amount(
728: nvl(v_crh_fac_disc_amt,0),
729: ARP_GLOBAL.functional_currency,
730: nvl(v_ex_rate,1),
731: NULL,NULL );

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

1037: p_worker_number,
1038: p_master_request_id );
1039:
1040: IF (l_request_id = 0) THEN
1041: arp_util.debug('Can not start for worker_id: ' ||p_worker_number );
1042: P_ERRBUF := fnd_Message.get;
1043: P_RETCODE := 2;
1044: return;
1045: ELSE

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

1043: P_RETCODE := 2;
1044: return;
1045: ELSE
1046: commit;
1047: arp_util.debug('Child request id: ' ||l_request_id || ' started for
1048: worker_id: ' ||p_worker_number );
1049: END IF;
1050:
1051: l_req_status_tab(p_worker_number).request_id := l_request_id;

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

1157: message =>l_req_status_tab(i).message);
1158:
1159: IF l_req_status_tab(i).dev_phase <> 'COMPLETE' THEN
1160: P_RETCODE := 2;
1161: arp_util.debug('Worker # '|| i||' has a phase
1162: '||l_req_status_tab(i).dev_phase);
1163:
1164: ELSIF l_req_status_tab(i).dev_phase = 'COMPLETE'
1165: AND l_req_status_tab(i).dev_status <> 'NORMAL' THEN

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

1163:
1164: ELSIF l_req_status_tab(i).dev_phase = 'COMPLETE'
1165: AND l_req_status_tab(i).dev_status <> 'NORMAL' THEN
1166: P_RETCODE := 2;
1167: arp_util.debug('Worker # '|| i||' completed with status
1168: '||l_req_status_tab(i).dev_status);
1169: ELSE
1170: arp_util.debug('Worker # '|| i||' completed successfully');
1171: END IF;

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

1166: P_RETCODE := 2;
1167: arp_util.debug('Worker # '|| i||' completed with status
1168: '||l_req_status_tab(i).dev_status);
1169: ELSE
1170: arp_util.debug('Worker # '|| i||' completed successfully');
1171: END IF;
1172:
1173: END LOOP;
1174: DELETE FROM ar_autoclear_interim

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

1178:
1179: IF P_RETCODE = 2 THEN
1180: fnd_file.put_line( FND_FILE.LOG, 'Master Program completed in Error.');
1181: fnd_file.put_line( FND_FILE.LOG, 'Possibly Child process(es) might have errored out.');
1182: arp_util.debug('Exception: ar_automatic_clearing_pkg '|| SQLERRM);
1183: RAISE error_in_child;
1184: END IF;
1185: fnd_file.put_line( FND_FILE.LOG, 'ar_automatic_clearing_in_parallel()-');
1186: return TRUE;

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

1185: fnd_file.put_line( FND_FILE.LOG, 'ar_automatic_clearing_in_parallel()-');
1186: return TRUE;
1187: EXCEPTION
1188: WHEN OTHERS THEN
1189: arp_util.debug('Exception: ar_automatic_clearing_pkg '|| SQLERRM);
1190: RAISE ;
1191: END;
1192: --
1193: procedure populate_interim_table

Line 1712: v_amount := arp_util.functional_amount(

1708: -- 785113
1709: -- Bank currency not equal to receipt currency. Calculate
1710: -- new accounted amounts using the receipt amount and exch.rate.
1711: --
1712: v_amount := arp_util.functional_amount(
1713: v_crh_amount,
1714: ARP_GLOBAL.functional_currency,
1715: nvl(v_ex_rate,nvl(v_ex_rate_old,1)),
1716: NULL,NULL );

Line 1717: v_fac_disc_amount := arp_util.functional_amount(

1713: v_crh_amount,
1714: ARP_GLOBAL.functional_currency,
1715: nvl(v_ex_rate,nvl(v_ex_rate_old,1)),
1716: NULL,NULL );
1717: v_fac_disc_amount := arp_util.functional_amount(
1718: nvl(v_crh_fac_disc_amt,0),
1719: ARP_GLOBAL.functional_currency,
1720: nvl(v_ex_rate,1),
1721: NULL,NULL );