DBA Data[Home] [Help]

APPS.AP_ETAX_UTILITY_PKG dependencies on ZX_TRANSACTION_LINES_GT

Line 491: | the zx_transaction_lines_gt global temporary table for eTax.

487: | FUNCTION - Get_Corrected_Invoice_Info()
488: |
489: | DESCRIPTION
490: | This function return the additional information required to populate
491: | the zx_transaction_lines_gt global temporary table for eTax.
492: |
493: | PARAMETERS
494: | P_Corrected_Invoice_Id - Invoice Id for the corrected line
495: | P_corrected_Line_number - Line number for the corrected line

Line 613: | the zx_transaction_lines_gt global temporary table for eTax.

609: | FUNCTION - Get_Prepay_Invoice_Info()
610: |
611: | DESCRIPTION
612: | This function return the additional information required to populate
613: | the zx_transaction_lines_gt global temporary table for eTax.
614: |
615: | PARAMETERS
616: | P_Prepay_Invoice_Id - Invoice Id for the applied prepay line
617: | P_Prepay_Line_number - Line number for the applied prepay line

Line 735: | the zx_transaction_lines_gt global temporary table for eTax.

731: | FUNCTION - Get_Receipt_Info()
732: |
733: | DESCRIPTION
734: | This function return the additional information required to populate
735: | the zx_transaction_lines_gt global temporary table for eTax.
736: |
737: | PARAMETERS
738: | P_Rcv_Transaction_Id - Receipt id
739: | P_Application_Id - Application Id for the Receipt (201)

Line 851: | the zx_transaction_lines_gt and the zx_distribution_lines_gt global

847: | FUNCTION - Get_PO_Info()
848: |
849: | DESCRIPTION
850: | This function return the additional information required to populate
851: | the zx_transaction_lines_gt and the zx_distribution_lines_gt global
852: | temporary tables for eTax.
853: | The parameters po_line_location_id and po_distribution_id are mutual
854: | exclusive.
855: |

Line 6043: trans_lines_gt zx_transaction_lines_gt%ROWTYPE;

6039:
6040: l_debug_info VARCHAR2(2000);
6041: l_curr_calling_sequence VARCHAR2(4000);
6042:
6043: trans_lines_gt zx_transaction_lines_gt%ROWTYPE;
6044: tax_lines_gt zx_import_tax_lines_gt%ROWTYPE;
6045:
6046: TYPE rej_lines_rec IS RECORD (
6047: invoice_id zx_validation_errors_gt.trx_id%TYPE,

Line 6058: FROM zx_transaction_lines_gt

6054: rej_lines rej_lines_tab;
6055:
6056: CURSOR Trx_Lines_c (c_line_number IN NUMBER) IS
6057: SELECT *
6058: FROM zx_transaction_lines_gt
6059: WHERE trx_id = P_Invoice_Header_Rec.invoice_id
6060: AND trx_line_id = c_line_number;
6061:
6062: CURSOR Tax_Lines_c (c_line_number IN NUMBER) IS