DBA Data[Home] [Help]

APPS.JAI_AR_RCTA_ARIUD_T1 dependencies on JAI_AR_MATCH_TAX_PKG

Line 16: Issue: Procedure jai_ar_match_tax_pkg.acct_inclu_taxes inserts duplicate accounting entries for inclusive taxes in the gl_interface table

12: Fix: Added the code to call the procedure JAI_AR_RCTA_TRIGGER_PKG.ARD_T1
13: when the base table gets deleted.
14:
15: 2. 24/04/2009 JMEENA for bug#8451356
16: Issue: Procedure jai_ar_match_tax_pkg.acct_inclu_taxes inserts duplicate accounting entries for inclusive taxes in the gl_interface table
17: becase this trigger fires two time so the procedure also executes two time hence insert duplicate records.
18: Fix: Added condition before calling procedure
19:
20: 3. 16/09/2009 JMEENA for bug#8864023

Line 21: Added a condition before calling jai_ar_match_tax_pkg.acct_inclu_taxes to ensure that this procedure

17: becase this trigger fires two time so the procedure also executes two time hence insert duplicate records.
18: Fix: Added condition before calling procedure
19:
20: 3. 16/09/2009 JMEENA for bug#8864023
21: Added a condition before calling jai_ar_match_tax_pkg.acct_inclu_taxes to ensure that this procedure
22: is be called only if organization_id in not equal to -1.
23: Organization_id will be -1 If the invoice is created directly through AR transaction form and does not have any IL taxes in
24: that case this procedure should not be called.
25:

Line 689: jai_ar_match_tax_pkg.acct_inclu_taxes( pn_customer_trx_id => t_new_rec.customer_trx_id

685: CLOSE inclu_flag_cur;
686:
687: IF lv_inclu_tax_flag = 'Y'
688: THEN
689: jai_ar_match_tax_pkg.acct_inclu_taxes( pn_customer_trx_id => t_new_rec.customer_trx_id
690: , pn_org_id => t_new_rec.org_id
691: , pn_cust_trx_type_id => t_new_rec.cust_trx_type_id
692: , xv_process_flag => lv_return_code
693: , xv_process_message => lv_return_message);

Line 740: jai_ar_match_tax_pkg.acct_inclu_taxes( pn_customer_trx_id => t_new_rec.customer_trx_id

736: CLOSE inclu_flag_cur;
737:
738: IF lv_inclu_tax_flag = 'Y'
739: THEN
740: jai_ar_match_tax_pkg.acct_inclu_taxes( pn_customer_trx_id => t_new_rec.customer_trx_id
741: , pn_org_id => t_new_rec.org_id
742: , pn_cust_trx_type_id => t_new_rec.cust_trx_type_id
743: , xv_process_flag => lv_return_code
744: , xv_process_message => lv_return_message);