DBA Data[Home] [Help]

APPS.AP_ETAX_UTILITY_PKG dependencies on ZX_TRANSACTION_LINES_GT

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

400: | FUNCTION - Get_Corrected_Invoice_Info()
401: |
402: | DESCRIPTION
403: | This function return the additional information required to populate
404: | the zx_transaction_lines_gt global temporary table for eTax.
405: |
406: | PARAMETERS
407: | P_Corrected_Invoice_Id - Invoice Id for the corrected line
408: | P_corrected_Line_number - Line number for the corrected line

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

499: | FUNCTION - Get_Prepay_Invoice_Info()
500: |
501: | DESCRIPTION
502: | This function return the additional information required to populate
503: | the zx_transaction_lines_gt global temporary table for eTax.
504: |
505: | PARAMETERS
506: | P_Prepay_Invoice_Id - Invoice Id for the applied prepay line
507: | P_Prepay_Line_number - Line number for the applied prepay line

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

598: | FUNCTION - Get_Receipt_Info()
599: |
600: | DESCRIPTION
601: | This function return the additional information required to populate
602: | the zx_transaction_lines_gt global temporary table for eTax.
603: |
604: | PARAMETERS
605: | P_Rcv_Transaction_Id - Receipt id
606: | P_Application_Id - Application Id for the Receipt (201)

Line 695: | the zx_transaction_lines_gt and the zx_distribution_lines_gt global

691: | FUNCTION - Get_PO_Info()
692: |
693: | DESCRIPTION
694: | This function return the additional information required to populate
695: | the zx_transaction_lines_gt and the zx_distribution_lines_gt global
696: | temporary tables for eTax.
697: | The parameters po_line_location_id and po_distribution_id are mutual
698: | exclusive.
699: |

Line 4876: trans_lines_gt zx_transaction_lines_gt%ROWTYPE;

4872:
4873: l_debug_info VARCHAR2(240);
4874: l_curr_calling_sequence VARCHAR2(4000);
4875:
4876: trans_lines_gt zx_transaction_lines_gt%ROWTYPE;
4877: tax_lines_gt zx_import_tax_lines_gt%ROWTYPE;
4878:
4879: TYPE rej_lines_rec IS RECORD (
4880: invoice_id zx_validation_errors_gt.trx_id%TYPE,

Line 4891: FROM zx_transaction_lines_gt

4887: rej_lines rej_lines_tab;
4888:
4889: CURSOR Trx_Lines_c (c_line_number IN NUMBER) IS
4890: SELECT *
4891: FROM zx_transaction_lines_gt
4892: WHERE trx_id = P_Invoice_Header_Rec.invoice_id
4893: AND trx_line_id = c_line_number;
4894:
4895: CURSOR Tax_Lines_c (c_line_number IN NUMBER) IS