DBA Data[Home] [Help]

APPS.ARP_TEST_TAX dependencies on ARP_UTIL

Line 148: | arp_util.debug |

144: | Calls update_header for every transaction that has |
145: | One and only invoice automatically generated tax line per invoice line |
146: | |
147: | EXETERNAL PROCEDURES/FUNCTIONS ACCESSED |
148: | arp_util.debug |
149: | arp_ct_pkg.fetch_p |
150: | |
151: | NOTES |
152: | |

Line 197: arp_util.debug('update_all_headers: ' || 'arp_test_tax - ' || to_char(sysdate, 'DD-MON-YYYY HH24:MI') );

193: row number := 0;
194:
195: BEGIN
196: IF PG_DEBUG in ('Y', 'C') THEN
197: arp_util.debug('update_all_headers: ' || 'arp_test_tax - ' || to_char(sysdate, 'DD-MON-YYYY HH24:MI') );
198: END IF;
199: FOR hdr in c_trx
200: LOOP
201: row := row +1;

Line 212: arp_util.debug('update_all_headers: ' || 'arp_test_tax - ' || rpad(hdr.trx_number||'-'||hdr.count_tax,30, '.') || ' ' || 'Pass ' || to_char(sysdate, 'HH24:MI:SS') );

208:
209: IF l_pass
210: THEN
211: IF PG_DEBUG in ('Y', 'C') THEN
212: arp_util.debug('update_all_headers: ' || 'arp_test_tax - ' || rpad(hdr.trx_number||'-'||hdr.count_tax,30, '.') || ' ' || 'Pass ' || to_char(sysdate, 'HH24:MI:SS') );
213: END IF;
214: ELSE
215: IF PG_DEBUG in ('Y', 'C') THEN
216: arp_util.debug('update_all_headers: ' || 'arp_test_tax - ' || rpad(hdr.trx_number||'-'||hdr.count_tax,30, '.') || ' ' || 'Fail ' ||

Line 216: arp_util.debug('update_all_headers: ' || 'arp_test_tax - ' || rpad(hdr.trx_number||'-'||hdr.count_tax,30, '.') || ' ' || 'Fail ' ||

212: arp_util.debug('update_all_headers: ' || 'arp_test_tax - ' || rpad(hdr.trx_number||'-'||hdr.count_tax,30, '.') || ' ' || 'Pass ' || to_char(sysdate, 'HH24:MI:SS') );
213: END IF;
214: ELSE
215: IF PG_DEBUG in ('Y', 'C') THEN
216: arp_util.debug('update_all_headers: ' || 'arp_test_tax - ' || rpad(hdr.trx_number||'-'||hdr.count_tax,30, '.') || ' ' || 'Fail ' ||
217: to_char(sysdate, 'HH24:MI:SS') || ' ' || substr(msg,1,100) );
218: END IF;
219: END IF;
220:

Line 296: arp_util.debug( 'arp_test_tax.check_dist( ' || p_customer_trx_id || ' )+');

292:
293: BEGIN
294:
295: IF PG_DEBUG in ('Y', 'C') THEN
296: arp_util.debug( 'arp_test_tax.check_dist( ' || p_customer_trx_id || ' )+');
297: END IF;
298:
299: FOR t in c_tax(p_customer_trx_id)
300: LOOP

Line 303: arp_util.debug('check_dist: ' || t.invoice_currency_code || ' ' ||

299: FOR t in c_tax(p_customer_trx_id)
300: LOOP
301: l_pass := FALSE;
302: IF PG_DEBUG in ('Y', 'C') THEN
303: arp_util.debug('check_dist: ' || t.invoice_currency_code || ' ' ||
304: t.customer_trx_line_id || ' ' ||
305: t.extended_amount || ' ' ||
306: t.amount || ' ' ||
307: t.acctd_amount || ' ' ||

Line 315: arp_util.debug( 'arp_test_tax.check_dist()-');

311: EXIT WHEN NOT l_pass;
312: END LOOP;
313:
314: IF PG_DEBUG in ('Y', 'C') THEN
315: arp_util.debug( 'arp_test_tax.check_dist()-');
316: END IF;
317:
318: return(l_pass);
319: