DBA Data[Home] [Help]

APPS.AR_INVOICE_TABLE_HANDLER dependencies on ARP_ETAX_INVAPI_UTIL

Line 373: arp_etax_invapi_util.cleanup_tax(p_customer_trx_id);

369:
370: l_ret_stat NUMBER;
371: BEGIN
372:
373: arp_etax_invapi_util.cleanup_tax(p_customer_trx_id);
374:
375: delete from ra_customer_trx where customer_trx_id = p_customer_trx_id;
376: delete from ra_customer_trx_lines where customer_trx_id = p_customer_trx_id;
377: delete from ra_cust_trx_line_gl_dist where customer_trx_id = p_customer_trx_id;

Line 399: arp_etax_invapi_util.cleanup_tax(c_bad.customer_trx_id);

395:
396: BEGIN
397: /* Get the tax audit tables */
398: FOR c_bad IN c_failed_trx LOOP
399: arp_etax_invapi_util.cleanup_tax(c_bad.customer_trx_id);
400: END LOOP;
401:
402: /* Delete everything else */
403: delete from ra_customer_trx

Line 772: is now handled in arp_etax_invapi_util.calculate_tax */

768: ar_invoice_utils.debug ('Line Type = TAX (+)' );
769: END IF;
770:
771: /* 4188835 - Removed entire manual tax block. This behavior
772: is now handled in arp_etax_invapi_util.calculate_tax */
773:
774: END IF; -- end of if line_type = 'LINE'
775: IF pg_debug = 'Y'
776: THEN

Line 849: arp_etax_invapi_util.calculate_tax(g_request_id, l_etax_error_count,

845: THEN
846: ar_invoice_utils.debug('calling etax for entire API batch');
847: END IF;
848:
849: arp_etax_invapi_util.calculate_tax(g_request_id, l_etax_error_count,
850: l_return_status);
851:
852: /* 6743811 - raise error if etax returns an error (E or U) status
853: the returned values are 0=success, 1=Error, 2=Unexpected Error */