DBA Data[Home] [Help]

APPS.JAI_AP_MATCH_TAX_PROC_PKG dependencies on JAI_GENERAL_PKG

Line 1534: REM |pv_is_item_an_expense | jai_general_pkg.is_item_an_expense

1530: REM | | = 2 * pn_lines_to_insert | Partially recoverable tax will be split two part
1531: REM -------------------------------------------------------------------------------------------------------------------------------------
1532: REM |pv_accrue_on_receipt_flag | jai_rcv_trx_processing_pkg.get_accrue_on_receipt
1533: REM -------------------------------------------------------------------------------------------------------------------------------------
1534: REM |pv_is_item_an_expense | jai_general_pkg.is_item_an_expense
1535: REM |pv_tax_type | = 'RE' |Full Recoverable
1536: REM | | = 'NR' |Non Recoverable
1537: REM | | = 'PR' |Partially Recoverable
1538: REM |pn_rec_tax_amt | = recoverable tax amount

Line 1705: pv_is_item_an_expense := jai_general_pkg.is_item_an_expense (

1701:
1702: pv_accrue_on_receipt_flag := jai_rcv_trx_processing_pkg.get_accrue_on_receipt (
1703: p_po_distribution_id => ln_po_dist_id);
1704:
1705: pv_is_item_an_expense := jai_general_pkg.is_item_an_expense (
1706: p_organization_id => ln_organization_id,
1707: p_item_id => ln_item_id
1708: );
1709:

Line 3869: p_codepath := jai_general_pkg.plot_codepath(1,

3865: and PARENT_INVOICE_LINE_NUMBER = p_invoice_line_number;
3866: ln_po_tax_count number;
3867: ln_inv_tax_count number;
3868: begin
3869: p_codepath := jai_general_pkg.plot_codepath(1,
3870: p_codepath,
3871: 'jai_ap_match_tax_proc_pkg.tax_check_at_inv_validate',
3872: 'START');
3873: open c_po_tax_num(p_invoice_id);

Line 3878: p_codepath := jai_general_pkg.plot_codepath(2, p_codepath);

3874: fetch c_po_tax_num
3875: into ln_po_tax_count;
3876: close c_po_tax_num;
3877: if ln_po_tax_count > 0 then
3878: p_codepath := jai_general_pkg.plot_codepath(2, p_codepath);
3879: open c_inv_tax_num(p_invoice_id);
3880: fetch c_inv_tax_num
3881: into ln_inv_tax_count;
3882: close c_inv_tax_num;

Line 3884: p_codepath := jai_general_pkg.plot_codepath(3, p_codepath);

3880: fetch c_inv_tax_num
3881: into ln_inv_tax_count;
3882: close c_inv_tax_num;
3883: if ln_inv_tax_count > 0 then
3884: p_codepath := jai_general_pkg.plot_codepath(3, p_codepath);
3885: p_process_flag := 'S';
3886: P_process_message := 'Taxes from PO/Recepit have been copied!';
3887: else
3888: p_codepath := jai_general_pkg.plot_codepath(4, p_codepath);

Line 3888: p_codepath := jai_general_pkg.plot_codepath(4, p_codepath);

3884: p_codepath := jai_general_pkg.plot_codepath(3, p_codepath);
3885: p_process_flag := 'S';
3886: P_process_message := 'Taxes from PO/Recepit have been copied!';
3887: else
3888: p_codepath := jai_general_pkg.plot_codepath(4, p_codepath);
3889: p_process_flag := 'E';
3890: P_process_message := 'Taxes from PO/Recepit have not been copied yet!';
3891: end if;
3892: end if;