DBA Data[Home] [Help]

APPS.AP_INVOICES_UTILITY_PKG SQL Statements

The following lines contain the word 'select', 'insert', 'update' or 'delete':

Line: 25

      SELECT invoice_num
      FROM   ap_invoices
      WHERE invoice_id =
                (SELECT invoice_id
                   FROM ap_invoice_distributions
                  WHERE invoice_distribution_id = l_prepay_dist_id);
Line: 63

      SELECT distribution_line_number
      FROM   ap_invoice_distributions
      WHERE  invoice_distribution_id = l_prepay_dist_id;
Line: 111

       SELECT SUM(NVL(aid.amount,0))
         INTO distribution_total
         FROM ap_invoice_distributions_all aid,
              ap_invoice_lines_all ail
        WHERE ail.invoice_id = l_invoice_id
          AND aid.invoice_id = ail.invoice_id
          AND aid.invoice_line_number = ail.line_number
          AND ((aid.line_type_lookup_code NOT IN ('PREPAY', 'AWT')
                AND aid.prepay_distribution_id IS NULL)
              OR NVL(ail.invoice_includes_prepay_flag,'N') = l_y);
Line: 139

 |      'S' - Selected
 |      'P' - Partially Posted
 |      ---------------------------------------------------------------------
 |      -- Declare cursor to establish the invoice-level posting flag
 |      --
 |      -- The first two selects simply look at the posting flags. The 'S'
 |      -- one means the invoice distributions are selected for accounting
 |      -- processing. The 'P' is to cover one specific case when some of
 |      -- the distributions are fully posting (Y) and some are unposting (N).
 |      -- The status should be partial (P).
 |      --
 |      -- MOAC.  Use ap_invoice_distributions_all table instead of SO view
 |      -- since this procedure is called when policy context is not set to
 |      -- the corresponding OU for the invoice_id
 |
 |  MODIFICATION HISTORY
 |  Date         Author             Description of Change
 |  04-Mar-05    Yicao              Rewrite the procedure for SLA project
 *==========================================================================*/
  FUNCTION get_posting_status(l_invoice_id IN NUMBER)
    RETURN VARCHAR2 IS
      invoice_posting_flag           VARCHAR2(1);
Line: 167

      SELECT cash_posted_flag
      FROM   ap_invoice_distributions_all
      WHERE  invoice_id = l_invoice_id
      AND    l_cash_basis_flag = 'Y'
      UNION
      SELECT accrual_posted_flag
      FROM   ap_invoice_distributions_all
      WHERE  invoice_id = l_invoice_id
      AND    l_cash_basis_flag <>'Y'
      UNION
      SELECT 'P'
      FROM   ap_invoice_distributions_all
      WHERE  invoice_id = l_invoice_id
      AND  ((cash_posted_flag = 'Y'
             AND l_cash_basis_flag = 'Y')
      OR
           (accrual_posted_flag = 'Y'
            AND l_cash_basis_flag <> 'Y'))
      AND EXISTS
               (SELECT 'An N is also in the valid flags'
                FROM   ap_invoice_distributions_all
                WHERE  invoice_id = l_invoice_id
                AND    ((cash_posted_flag = 'N'
                         AND l_cash_basis_flag = 'Y')
                OR
                       (accrual_posted_flag = 'N'
                         AND l_cash_basis_flag <> 'Y'))) -- bug fix 6975868;
Line: 196

      SELECT cash_posted_flag
      FROM   ap_self_assessed_tax_dist_all
      WHERE  invoice_id = l_invoice_id
      AND    l_cash_basis_flag = 'Y'
      UNION
      SELECT accrual_posted_flag
      FROM   ap_self_assessed_tax_dist_all
      WHERE  invoice_id = l_invoice_id
      AND    l_cash_basis_flag <>'Y'
      UNION
      SELECT 'P'
      FROM   ap_self_assessed_tax_dist_all
      WHERE  invoice_id = l_invoice_id
      AND  ((cash_posted_flag = 'Y'
             AND l_cash_basis_flag = 'Y')
      OR
           (accrual_posted_flag = 'Y'
            AND l_cash_basis_flag <> 'Y'))
      AND EXISTS
               (SELECT 'An N is also in the valid flags'
                FROM   ap_self_assessed_tax_dist_all
                WHERE  invoice_id = l_invoice_id
                AND    ((cash_posted_flag = 'N'
                         AND l_cash_basis_flag = 'Y')
                OR
                       (accrual_posted_flag = 'N'
                         AND l_cash_basis_flag <> 'Y')));
Line: 229

    |  MOAC.  Added org_id to select statement.                        |
    +-----------------------------------------------------------------*/

      SELECT nvl(sob.sla_ledger_cash_basis_flag, 'N'),
             asp.org_id
      INTO   l_cash_basis_flag,
             l_org_id
      FROM ap_invoices_all ai,
           ap_system_parameters_all asp,
           gl_sets_of_books sob
      WHERE ai.invoice_id = l_invoice_id
      AND ai.org_id = asp.org_id
      AND asp.set_of_books_id = sob.set_of_books_id;
Line: 277

          SELECT 'D'
          INTO   invoice_posting_flag
          FROM   ap_invoice_distributions_all AID,
                  xla_events                   XE
          WHERE  AID.invoice_id = l_invoice_id
          AND    AID.accounting_event_id = XE.event_id
          AND    ((AID.accrual_posted_flag = 'N' AND l_cash_basis_flag = 'N') OR
                  (AID.cash_posted_flag = 'N' AND l_cash_basis_flag  = 'Y'))
          AND    XE.process_status_code = 'D'
          AND    rownum < 2;
Line: 330

      select count(1)
      into   dummy_a
      from   ap_invoices_all
      where  invoice_num = X_INVOICE_NUM
      and    vendor_id = X_VENDOR_ID
      and    org_id    = X_ORG_ID   -- Bug 5407785
      and    ((X_ROWID is null) or (rowid <> X_ROWID));
Line: 345

      select count(1)
      into   dummy_b
      from   ap_history_invoices_all
      where  invoice_num = X_INVOICE_NUM
      and    vendor_id = X_VENDOR_ID   -- Bug 5407785
      and    org_id    = X_ORG_ID;
Line: 405

      select count(1)
      into   dummy
      from   ap_invoices
      where  voucher_num = X_VOUCHER_NUM
      and    ((X_ROWID is null) or (rowid <> X_ROWID));
Line: 497

      SELECT nvl(match_status_flag, 'N')
      FROM   ap_invoice_distributions_all
      WHERE  invoice_id = l_invoice_id;
Line: 509

      SELECT NVL(fsp.purch_encumbrance_flag,'N'),
             ai.org_id,
	     ai.force_revalidation_flag
      INTO encumbrance_flag,
           l_org_id,
	   l_force_revalidation_flag
      FROM ap_invoices_all ai,
           financials_system_params_all fsp
      WHERE ai.invoice_id = l_invoice_id
      AND ai.set_of_books_id = fsp.set_of_books_id
      AND ai.org_id = fsp.org_id;
Line: 524

      SELECT count(*)
      INTO   invoice_holds
      FROM   ap_holds_all
      WHERE  invoice_id = l_invoice_id
      AND    release_lookup_code is NULL;
Line: 537

      SELECT count(*)
      INTO   dist_var_hold
      FROM   ap_holds_all
      WHERE  invoice_id = l_invoice_id
      AND    hold_lookup_code IN  (l_dist_variance, l_line_variance)
      AND    release_lookup_code is NULL;
Line: 547

      SELECT ai.cancelled_date
      INTO   cancelled_date
      FROM   ap_invoices_all ai
      WHERE  ai.invoice_id = l_invoice_id;
Line: 561

      SELECT count(*)
      INTO match_flag_cnt
      FROM ap_invoice_distributions_all aid
      WHERE aid.invoice_id = l_invoice_id
      AND aid.match_status_flag IS NOT NULL
      AND rownum < 2;
Line: 691

               SELECT count(*)
                 INTO l_validated_cnt
                 FROM ap_invoice_distributions_all aid
                WHERE aid.invoice_id = l_invoice_id
                  AND aid.match_status_flag = 'N'
                  AND rownum < 2;
Line: 720

           SELECT 'N'
           INTO invoice_approval_flag
           FROM ap_invoice_lines_all ail
           WHERE ail.invoice_id = l_invoice_id
           AND ail.amount <>
             ( SELECT NVL(SUM(NVL(aid.amount,0)),0)
      	       FROM ap_invoice_distributions_all aid
	       WHERE aid.invoice_id = ail.invoice_id
	       AND   aid.invoice_line_number = ail.line_number
	       --bugfix:4959567
               AND   ( aid.line_type_lookup_code <> 'RETAINAGE'
                        OR (ail.line_type_lookup_code = 'RETAINAGE RELEASE' AND
                            aid.line_type_lookup_code = 'RETAINAGE') )
               /*
	       AND   (ail.line_type_lookup_code <> 'ITEM'
	              OR (aid.line_type_lookup_code <> 'PREPAY'
	                  and aid.prepay_tax_parent_id IS  NULL)
                     )
               */
	       AND   (AIL.line_type_lookup_code NOT IN ('ITEM', 'RETAINAGE RELEASE')
                      OR (AIL.line_type_lookup_code IN ('ITEM', 'RETAINAGE RELEASE')
                          AND (AID.prepay_distribution_id IS NULL
                               OR (AID.prepay_distribution_id IS NOT NULL
                                   AND AID.line_type_lookup_code NOT IN ('PREPAY', 'REC_TAX', 'NONREC_TAX')))))
	       );
Line: 760

	   SELECT 'N'
           INTO   invoice_approval_flag
           FROM   ap_invoice_lines_all AIL, ap_invoices_all A
           WHERE  AIL.invoice_id = A.invoice_id
           AND    AIL.invoice_id = l_invoice_id
           AND    ((AIL.line_type_lookup_code <> 'TAX'
                   and (AIL.line_type_lookup_code NOT IN ('AWT','PREPAY')
                        or NVL(AIL.invoice_includes_prepay_flag,'N') = 'Y') OR
                  (AIL.line_type_lookup_code = 'TAX'
                  /* bug 5222316 */
                   and (AIL.prepay_invoice_id IS NULL
                        or (AIL.prepay_invoice_id is not null
                            and NVL(AIL.invoice_includes_prepay_flag, 'N') = 'Y')))))
               --    and AIL.prepay_invoice_id IS NULL)))
           GROUP BY A.invoice_id, A.invoice_amount, A.net_of_retainage_flag
           HAVING A.invoice_amount <>
                  nvl(SUM(nvl(AIL.amount,0) + decode(A.net_of_retainage_flag,
                                 'Y', nvl(AIL.retained_amount,0),0)),0);
Line: 805

         SELECT NVL(SUM(nvl(aid.amount,0)), 0)
           INTO sum_distributions
           FROM ap_invoice_distributions_all aid,
                ap_invoice_lines_all ail
          WHERE ail.invoice_id = l_invoice_id
            AND aid.invoice_id = ail.invoice_id
            AND aid.invoice_line_number = ail.line_number
            AND (aid.line_type_lookup_code <> 'RETAINAGE'
                 OR (ail.line_type_lookup_code = 'RETAINAGE RELEASE'
                     and aid.line_type_lookup_code = 'RETAINAGE') )
            AND ((aid.line_type_lookup_code NOT IN ('AWT','PREPAY')
                  AND aid.prepay_distribution_id IS NULL)
                OR NVL(ail.invoice_includes_prepay_flag,'N') = 'Y');
Line: 929

      SELECT DISTINCT ph.segment1, ph.po_header_id,
             NVL(SUM(L.amount),0)
      FROM   ap_invoice_lines_all L,
             po_headers PH
      WHERE  L.invoice_id = l_invoice_id
      AND    L.po_header_id = PH.po_header_id
      AND    L.match_type IN ( 'PRICE_CORRECTION', 'QTY_CORRECTION',
                               'ITEM_TO_PO', 'ITEM_TO_RECEIPT', 'AMOUNT_CORRECTION',
                               'RETRO PRICE ADJUSTMENT','ITEM_TO_SERVICE_PO')  --Bug6931134
      AND    NVL (L.discarded_flag, 'N' ) <> 'Y'
      AND    NVL (L.cancelled_flag, 'N' ) <> 'Y'
      GROUP BY PH.po_header_id, PH.segment1
      HAVING ( NVL(SUM(L.amount), 0) <> 0 OR
               NVL(SUM(L.quantity_invoiced), 0) <> 0);
Line: 957

          SELECT NVL(SUM(AIL.amount), 0)
          INTO   l_corrected_amount
          FROM   ap_invoice_lines_all AIL
          WHERE  corrected_inv_id = l_invoice_id
          AND    po_header_id = l_po_header_id
          AND    NVL( AIL.discarded_flag, 'N' ) <> 'Y'
          AND    NVL( AIL.cancelled_flag, 'N' ) <> 'Y' ;
Line: 1000

      SELECT DISTINCT(pll.shipment_type)
      FROM   ap_invoice_lines L,
             po_line_locations PLL
      WHERE  L.invoice_id = l_invoice_id
      AND   NOT EXISTS (SELECT  AIL.corrected_inv_id
                          FROM  ap_invoice_lines AIL
                         WHERE NVL( AIL.discarded_flag, 'N' ) <> 'Y'
                           AND NVL( AIL.cancelled_flag, 'N' ) <> 'Y'
                           AND  AIL.corrected_inv_id =  L.invoice_id)
      AND    L.po_line_location_id = PLL.line_location_id
      AND    L.match_type IN ( 'PRICE_CORRECTION', 'QTY_CORRECTION',
                               'ITEM_TO_PO', 'ITEM_TO_RECEIPT',
                               'RETRO PRICE ADJUSTMENT')
/*
5000309 fbreslin: exclude line if discared or cancled
*/
      AND    NVL (L.discarded_flag, 'N' ) <> 'Y'
      AND    NVL (L.cancelled_flag, 'N' ) <> 'Y'
      GROUP BY PLL.shipment_type
      HAVING ( NVL(SUM(L.amount), 0) <> 0 OR
               NVL(SUM(L.quantity_invoiced), 0) <> 0);
Line: 1024

      SELECT DISTINCT(PRL.release_num)
      FROM ap_invoice_lines L,
           po_line_locations PLL,
           po_releases PRL
      WHERE  L.invoice_id = l_invoice_id
      AND NOT EXISTS (SELECT  AIL.corrected_inv_id
                          FROM  ap_invoice_lines AIL
                         WHERE NVL( AIL.discarded_flag, 'N' ) <> 'Y'
                           AND NVL( AIL.cancelled_flag, 'N' ) <> 'Y'
                           AND  AIL.corrected_inv_id =  L.invoice_id)
      AND    L.po_line_location_id = PLL.line_location_id
      AND    L.match_type IN ( 'PRICE_CORRECTION', 'QTY_CORRECTION',
                               'ITEM_TO_PO', 'ITEM_TO_RECEIPT',
                                'RETRO PRICE ADJUSTMENT')
/*
5000309 fbreslin: exclude line if discared or cancled
*/
      AND    NVL (L.discarded_flag, 'N' ) <> 'Y'
      AND    NVL (L.cancelled_flag, 'N' ) <> 'Y'
      AND   PRL.po_release_id = PLL.po_release_id
      GROUP BY PRL.release_num
      HAVING ( NVL(SUM(L.amount), 0) <> 0 OR
               NVL(SUM(L.quantity_invoiced), 0) <> 0);
Line: 1103

      SELECT DISTINCT(rsh.receipt_num)
      FROM   ap_invoice_lines L,
             rcv_transactions RTXN,
             rcv_shipment_headers RSH
      WHERE  L.invoice_id = l_invoice_id
      AND NOT EXISTS (SELECT  AIL.corrected_inv_id
                          FROM  ap_invoice_lines AIL
                         WHERE NVL( AIL.discarded_flag, 'N' ) <> 'Y'
                           AND NVL( AIL.cancelled_flag, 'N' ) <> 'Y'
                           AND  AIL.corrected_inv_id =  L.invoice_id)
      AND    L.rcv_transaction_id = RTXN.transaction_id
      AND    RSH.shipment_header_id = RTXN.shipment_header_id
      AND    L.match_type IN ( 'PRICE_CORRECTION', 'QTY_CORRECTION',
                               'ITEM_TO_RECEIPT',
                               'RETRO PRICE ADJUSTMENT')
/*
5000309 fbreslin: exclude line if discared or cancled
*/
      AND    NVL (L.discarded_flag, 'N' ) <> 'Y'
      AND    NVL (L.cancelled_flag, 'N' ) <> 'Y'
      GROUP BY rsh.shipment_header_id, rsh.receipt_num
      HAVING ( NVL(SUM(L.amount), 0) <> 0 OR
               NVL(SUM(L.quantity_invoiced), 0) <> 0);
Line: 1170

      SELECT DISTINCT(ph.segment1)
      FROM   ap_invoice_lines L,
             po_headers PH
      WHERE  L.invoice_id = l_invoice_id
      AND   NOT EXISTS (SELECT  AIL.corrected_inv_id
                          FROM  ap_invoice_lines AIL
                         WHERE NVL( AIL.discarded_flag, 'N' ) <> 'Y'
                           AND NVL( AIL.cancelled_flag, 'N' ) <> 'Y'
                           AND  AIL.corrected_inv_id =  L.invoice_id)
      AND    L.po_header_id = PH.po_header_id
      AND    L.match_type IN ( 'PRICE_CORRECTION', 'QTY_CORRECTION',
                               'ITEM_TO_PO', 'ITEM_TO_RECEIPT',
                               'RETRO PRICE ADJUSTMENT')
/*
5000309 fbreslin: exclude line if discared or cancled
*/
      AND    NVL (L.discarded_flag, 'N' ) <> 'Y'
      AND    NVL (L.cancelled_flag, 'N' ) <> 'Y'
      GROUP BY PH.po_header_id, PH.segment1
      HAVING ( NVL(SUM(L.amount), 0) <> 0 OR
               NVL(SUM(L.quantity_invoiced), 0) <> 0);
Line: 1230

      select (0 - sum(nvl(amount,0)))
      into   amount_withheld
      from   ap_invoice_distributions
      where  invoice_id = l_invoice_id
      and    line_type_lookup_code = 'AWT';
Line: 1289

      SELECT COUNT(*)
      INTO   notes_count
      FROM   po_note_references
      WHERE  table_name = 'AP_INVOICES'
      AND    foreign_id = l_invoice_id;
Line: 1320

      SELECT COUNT(*)
      INTO   holds_count
      FROM   ap_holds
      WHERE  release_lookup_code is null
      AND    invoice_id = l_invoice_id;
Line: 1351

      SELECT COUNT(*)
      INTO   holds_count
      FROM   ap_payment_schedules_all
      WHERE  hold_flag = 'Y'
      AND    invoice_id = l_invoice_id;
Line: 1387

      SELECT  COUNT(*)
      INTO   prepay_count
      FROM   ap_invoices ai
      WHERE  vendor_id = l_vendor_id
      AND    (( l_org_id IS NOT NULL AND
                ai.org_id = l_org_id)
             OR l_org_id IS NULL)
      AND    invoice_type_lookup_code = 'PREPAYMENT'
      AND    earliest_settlement_date IS NOT NULL
      AND    AP_INVOICES_UTILITY_PKG.get_prepay_amount_remaining(ai.invoice_id) > 0;
Line: 1429

           which just selects the prepayment invoices for the vendor.This
           is done for performance overheads.The comparison of earliest
           settlement date would be done with the cursor variable,also the
           earlier select statement which would call the get_total_prepays
           as a filter is removed and logic is implemented here as this                    would reduce the wait time*/
         CURSOR prepayment_invoices IS
         SELECT earliest_settlement_date,invoice_id
         from
         ap_invoices
         where vendor_id=l_vendor_id
         and invoice_type_lookup_code='PREPAYMENT'
         /*7015402*/
         and payment_status_flag = 'Y'
         and earliest_settlement_date is not null
         AND    (( l_org_id IS NOT NULL AND
                   org_id = l_org_id)
                   OR l_org_id IS NULL);
Line: 1510

      SELECT nvl(encumbered_flag,'N')
      FROM   ap_invoice_distributions
      WHERE  invoice_id = l_invoice_id;
Line: 1519

      SELECT nvl(encumbered_flag,'N')
      FROM   ap_self_assessed_tax_dist
      WHERE  invoice_id = l_invoice_id;
Line: 1525

      SELECT NVL(fsp.purch_encumbrance_flag,'N'), ai.org_id
        INTO l_purch_encumbrance_flag, l_org_id
        FROM ap_invoices_all ai,
             financials_system_params_all fsp
       WHERE ai.invoice_id = l_invoice_id
         AND ai.org_id = fsp.org_id;
Line: 1602

      SELECT 'Y'
        FROM ap_holds
       WHERE invoice_id = l_invoice_id
         AND hold_lookup_code = l_amount
         AND release_lookup_code IS NULL;
Line: 1643

      SELECT 'Y'
        FROM ap_holds
       WHERE invoice_id = l_invoice_id
         AND hold_lookup_code = l_vendor
         AND release_lookup_code IS NULL;
Line: 1687

      SELECT invoice_num
        FROM ap_invoices
       WHERE vendor_id = P_vendor_id
         AND vendor_site_id = P_vendor_site_id
         AND invoice_amount = P_invoice_amount
         AND invoice_currency_code = P_invoice_currency_code
         AND invoice_type_lookup_code =
                 DECODE(P_invoice_type_lookup_code,
                        'CREDIT','DEBIT',
                        'DEBIT','CREDIT');
Line: 1771

      SELECT vendor_id
      INTO l_vendor_id
      FROM PO_VENDOR_SITES_ALL
      WHERE vendor_site_id = P_vendor_site_id;
Line: 1838

      SELECT vendor_id
      INTO l_vendor_id
      FROM PO_VENDOR_SITES_ALL
      WHERE vendor_site_id = P_vendor_site_id;
Line: 1876

 |  FUNCTION - selected_for_payment_flag
 |
 |  DESCRIPTION
 |      returns 'Y' if an invoice has been selected for payment; function
Line: 1891

    FUNCTION selected_for_payment_flag (P_invoice_id IN number)
    RETURN varchar2
    IS
      l_flag varchar2(1) := 'N';
Line: 1895

      CURSOR selected_for_payment_cursor IS
      SELECT 'Y'
        FROM   AP_SELECTED_INVOICES
       WHERE  invoice_id = P_invoice_id
      UNION
      SELECT 'Y'
        FROM AP_PAYMENT_SCHEDULES_ALL
        WHERE invoice_id = P_invoice_id
        AND checkrun_id IS NOT NULL;
Line: 1907

       OPEN selected_for_payment_cursor;
Line: 1908

      FETCH selected_for_payment_cursor
       INTO l_flag;
Line: 1910

      CLOSE selected_for_payment_cursor;
Line: 1914

    END selected_for_payment_flag;
Line: 1938

      SELECT 'Y'
      FROM   ap_invoice_payments
      WHERE  invoice_id = P_invoice_id
      AND    nvl(discount_taken,0) <> 0;
Line: 1977

      SELECT 'Y', p.org_id
        FROM ap_invoice_payments p,
             ap_checks c,
             ap_system_parameters SP
       WHERE  p.invoice_id = P_invoice_id
         AND  p.org_id = sp.org_id
         AND  nvl(p.cash_posted_flag,'N') <> 'Y'
         AND  p.check_id = c.check_id
         AND  c.void_date IS NOT NULL
         AND  (sp.accounting_method_option = 'Cash' OR
               sp.secondary_accounting_method = 'Cash');
Line: 2054

      SELECT 'Y'
        FROM ap_invoice_payments
       WHERE invoice_id = P_invoice_id;
Line: 2144

        SELECT SUM(nvl(prepay_amount_remaining,amount))
        FROM  ap_invoice_distributions_all aid,ap_invoices_all ai
        WHERE aid.invoice_id = P_invoice_id
        AND   aid.line_type_lookup_code IN ('ITEM','TAX')
        AND   nvl(aid.reversal_flag,'N') <> 'Y'
        AND  ai.invoice_id = P_invoice_id
        AND  ai.invoice_type_lookup_code = 'PREPAYMENT'
        AND  ai.earliest_settlement_date IS NOT NULL
        AND  ai.earliest_settlement_date <= trunc(SYSDATE);
Line: 2183

      SELECT decode(AI.EARLIEST_SETTLEMENT_DATE,null,'PERMANENT','TEMPORARY')
        FROM ap_invoices_all ai
       WHERE ai.invoice_id = P_invoice_id;
Line: 2218

      select decode(count(distinct(packet_id)),1,max(packet_id),'')
        from ap_invoice_distributions
       where invoice_id = P_Invoice_Id
         and packet_id is not null;
Line: 2257

      CURSOR c_select_payment_status (cv_invoice_id NUMBER ) IS
      SELECT payment_status_flag
        FROM ap_payment_schedules
       WHERE invoice_id = cv_invoice_id;
Line: 2264

      OPEN c_select_payment_status ( p_invoice_id );
Line: 2266

      FETCH c_select_payment_status into temp_ps_flag;
Line: 2267

      EXIT when c_select_payment_status%NOTFOUND;
Line: 2281

      CLOSE c_select_payment_status;
Line: 2326

      select asp.accounting_method_option,
             nvl(asp.secondary_accounting_method, 'None'),
             asp.org_id
        into l_primary_acctg_method,
             l_secondary_acctg_method,
             l_org_id
        from ap_system_parameters_all asp
        where asp.org_id = P_org_id;
Line: 2353

        select count(*)
          into l_count_pmt_posted
          from ap_invoice_payments aip
         where aip.posted_flag = 'Y'
           and aip.invoice_id = p_invoice_id;
Line: 2359

        select count(*)
          into l_count_pmt_hist_posted
          from ap_payment_history aph
         where aph.posted_flag = 'Y'
           and aph.check_id in (select check_id
                                  from ap_invoice_payments aip
                                 where aip.invoice_id = p_invoice_id);
Line: 2382

        select count(*)
          into l_count_prepaid_posted
          from ap_invoice_distributions aid
         where aid.posted_flag <> 'N'
           and aid.invoice_id = p_invoice_id
           and aid.line_type_lookup_code = 'PREPAY';
Line: 2427

      SELECT SUM(aid1.amount * -1)
        INTO l_prepay_amt_applied
        FROM ap_invoice_distributions aid1, ap_invoice_distributions aid2
       WHERE aid1.invoice_id = P_invoice_id
         AND aid1.line_type_lookup_code = 'PREPAY'
         AND aid1.prepay_distribution_id = aid2.invoice_distribution_id
         AND aid2.invoice_id = P_prepay_id
         AND aid2.last_update_date = P_application_date ;
Line: 2463

      SELECT count(invoice_distribution_id)
        INTO l_count_distributions
        FROM ap_invoice_distributions
       WHERE invoice_id = p_invoice_id;
Line: 2481

 |      prepayment. This has been added to do not use a new select statement in
 |      the expense report import program.
 |
 |  KNOWN ISSUES:
 |
 |  NOTES:
 |
 |  MODIFICATION HISTORY
 |  Date         Author             Description of Change
 |
 *===========================================================================*/

    FUNCTION get_amt_applied_per_prepay (
                 P_invoice_id          IN NUMBER,
                 P_prepay_id           IN NUMBER)
    RETURN number
    IS
      l_prepay_amt_applied NUMBER := 0;
Line: 2502

      SELECT SUM(aid1.amount * -1)
        INTO l_prepay_amt_applied
        FROM ap_invoice_distributions aid1, ap_invoice_distributions aid2
       WHERE aid1.invoice_id = P_invoice_id
         AND aid1.line_type_lookup_code = 'PREPAY'
         AND aid1.prepay_distribution_id = aid2.invoice_distribution_id
         AND aid2.invoice_id = P_prepay_id;
Line: 2537

      SELECT count(*)
      INTO   l_explines_count
      FROM   ap_expense_report_lines
      WHERE  report_header_id = p_expense_report_id;
Line: 2581

        SELECT 'E'
        INTO   l_return_type
        FROM   ap_expense_report_headers aerh
        WHERE  aerh.vouchno = p_invoice_id;
Line: 2626

      SELECT nvl( MAX(line_number),0 )
        INTO l_max_inv_line_num
        FROM ap_invoice_lines
       WHERE invoice_id = P_invoice_id;
Line: 2661

       SELECT SUM(NVL(amount,0))
         INTO line_total
         FROM ap_invoice_lines ail
        WHERE ail.invoice_id = p_invoice_id
          AND ((ail.line_type_lookup_code not in ('PREPAY','AWT') --Bug 7372061 Excluded 'AWT' amount from the total line amount.
               AND ail.prepay_invoice_id IS NULL
               AND ail.prepay_line_number IS NULL)
               OR nvl(ail.invoice_includes_prepay_flag,'N') = 'Y');
Line: 2732

      SELECT decode(x_reporting_ledger_id, null, AI.base_amount, null),
             AI.invoice_amount, -- invoice amount
             AI.invoice_currency_code, -- invoice_currency_code
             ASP.base_currency_code -- base_currency_code
        FROM ap_invoices AI, ap_system_parameters ASP
       WHERE AI.invoice_id = X_invoice_id
         AND ASP.org_id = AI.org_id;
Line: 2768

          SELECT SUM(base_amount), SUM(amount)
            INTO l_sum_base_amt, l_sum_amt
            FROM ap_invoice_lines AIL
           WHERE AIL.invoice_id = X_INVOICE_ID
             AND line_type_lookup_code <> 'AWT'
             AND (invoice_includes_prepay_flag = 'Y' OR
                 line_type_lookup_code <> 'PREPAY');
Line: 2783

          X_Rounded_Line_Numbers.delete;
Line: 2793

        X_Rounded_Line_Numbers.delete;
Line: 2811

        SELECT ail1.line_number
          BULK COLLECT INTO l_Rounded_Line_Numbers
          FROM ap_invoice_lines ail1
         WHERE ail1.invoice_id = X_invoice_id
           AND ail1.amount <> 0
           AND (EXISTS
                (SELECT 'UNPOSTED'
                   FROM ap_invoice_distributions D1
                  WHERE D1.invoice_id = ail1.invoice_id
                    AND D1.invoice_line_number = ail1.line_number
                    AND NVL(D1.posted_flag, 'N') = 'N') OR
                (NOT EXISTS
                 (SELECT 'X'
                    FROM ap_invoice_distributions D2
                   WHERE D2.invoice_id = ail1.invoice_id
                     AND D2.invoice_line_number = ail1.line_number)))
          ORDER BY ail1.base_amount desc;
Line: 2841

      X_Rounded_Line_Numbers.delete;
Line: 2888

        SELECT 1
        INTO   l_active_count
        FROM   ap_invoice_lines AIL
        WHERE  ( NVL( AIL.discarded_flag, 'N' ) <> 'Y' AND
                 NVL( AIL.cancelled_flag, 'N' ) <> 'Y' )
        AND    AIL.corrected_inv_id = p_invoice_id
        AND    ROWNUM = 1 ;
Line: 2903

        SELECT 1
        INTO   l_quick_credit_count
        FROM   ap_invoices AI
        WHERE  AI.credited_invoice_id = P_invoice_id
        AND  NVL(AI.quick_credit, 'N') = 'Y'
        AND  AI.cancelled_date is null
        AND  ROWNUM = 1 ;
Line: 2953

    SELECT i.invoice_id
      FROM ap_invoices_all i
     WHERE i.invoice_id = P_Invoice_Id
       AND EXISTS
           (SELECT il.invoice_id
              FROM ap_invoice_lines_all il
             WHERE il.invoice_id = i.invoice_id
               AND NVL(il.discarded_flag, 'N') <> 'Y'
               AND NVL(il.cancelled_flag, 'N') <> 'Y'
               AND il.match_type IN ('PRICE_CORRECTION',
                                     'QTY_CORRECTION'));
Line: 3041

    SELECT i.invoice_id
      FROM ap_invoices_all i
     WHERE i.invoice_id = P_Invoice_Id
       AND EXISTS
           (SELECT il.invoice_id
              FROM ap_invoice_lines_all il
             WHERE il.invoice_id = i.invoice_id
              AND il.line_type_lookup_code = 'PREPAY'
              AND NVL(il.discarded_flag, 'N') <> 'Y'
              AND NVL(il.cancelled_flag, 'N') <> 'Y');
Line: 3128

    SELECT i.invoice_id
      FROM ap_invoices_all i
     WHERE i.invoice_id = P_Invoice_Id
       AND EXISTS
           (SELECT il.invoice_id
              FROM ap_invoice_lines_all il
             WHERE il.invoice_id = i.invoice_id
               AND il.line_type_lookup_code = 'AWT'
               AND NVL(il.discarded_flag, 'N') <> 'Y'
               AND NVL(il.cancelled_flag, 'N') <> 'Y');
Line: 3214

    SELECT i.invoice_id
      FROM ap_invoices_all i
     WHERE i.invoice_id = P_Invoice_Id
       AND EXISTS
           (SELECT ail.invoice_id
              FROM ap_invoice_lines_all ail,
                   po_line_locations_all pll
             WHERE ail.invoice_id = i.invoice_id
               AND ail.po_line_location_id = pll.line_location_id
               AND ail.org_id = pll.org_id
               AND pll.closed_code = 'FINALLY CLOSED');
Line: 3289

     select nvl(max(distribution_line_number),0)
     into   l_max_dist_line_num
     from   ap_invoice_distributions
     where  invoice_id = P_invoice_id
     and    invoice_line_number = P_invoice_line_number;
Line: 3309

   SELECT invoice_num
   INTO l_invoice_num
   FROM ap_invoices
   WHERE invoice_id = p_invoice_id;
Line: 3343

       SELECT SUM(NVL(amount,0))
         INTO retained_total
         FROM ap_invoice_distributions_all aid
        WHERE aid.invoice_id = p_invoice_id
          AND aid.line_type_lookup_code = 'RETAINAGE'
          AND EXISTS
                  (SELECT 'X' FROM ap_invoice_lines_all ail
                    WHERE ail.invoice_id = p_invoice_id
                      AND ail.line_number = aid.invoice_line_number
                      AND ail.line_type_lookup_code <> 'RETAINAGE RELEASE');
Line: 3380

      select sum(nvl(amount,0)) - sum(nvl(included_tax_amount,0))
      into   item_total
      from   ap_invoice_lines_all
      where  invoice_id = p_invoice_id
      and    line_type_lookup_code IN ('ITEM','RETAINAGE RELEASE');
Line: 3412

      select sum(nvl(amount,0)) - sum(nvl(included_tax_amount,0))
      into   freight_total
      from   ap_invoice_lines_all
      where  invoice_id = p_invoice_id
      and    org_id     = p_org_id
      and    line_type_lookup_code = 'FREIGHT';
Line: 3446

      select sum(nvl(amount,0)) - sum(nvl(included_tax_amount,0))
      into   misc_total
      from   ap_invoice_lines_all
      where  invoice_id = p_invoice_id
      and    org_id     = p_org_id
      and    line_type_lookup_code = 'MISCELLANEOUS';
Line: 3479

      select sum(nvl(amount,0))
      into   prepay_app_total
      from   ap_invoice_distributions_all
      where  invoice_id = p_invoice_id
      and    org_id     = p_org_id
      and    line_type_lookup_code = 'PREPAY';
Line: 3527

      SELECT ai.cancelled_date,
             ai.approval_ready_flag,
             ai.invoice_type_lookup_code,
             ai.source
      INTO   l_cancelled_date,
             l_approval_ready_flag,
             l_invoice_type_lookup_code,
             l_invoice_source
      FROM   ap_invoices_all ai
      WHERE  ai.invoice_id = p_invoice_id
        AND  ai.source = 'ISP';
Line: 3559

		      SELECT count(*)
		      INTO   l_negotiate_lines_count
		      FROM   ap_apinv_approvers
		      WHERE  invoice_id = p_invoice_id
		      AND    approval_status = 'NEGOTIATE'
		      AND rownum =1;
Line: 3572

		      SELECT count(*)
		      INTO   l_negotiate_lines_count
		      FROM   ap_holds_all
		      WHERE  invoice_id = p_invoice_id
		      AND    wf_status = 'NEGOTIATE'
		      AND rownum =1;
Line: 3602

		select  bank_account_name,
			bank_account_id,
			bank_account_number
		from (
		SELECT  b.bank_account_name,
			b.ext_bank_account_id bank_account_id,
			b.bank_account_number,
			rank() over (partition by ibyu.instrument_id, ibyu.instrument_type order by ibyu.instrument_payment_use_id) not_dup
		  FROM  IBY_PMT_INSTR_USES_ALL ibyu,
			IBY_EXT_BANK_ACCOUNTS_V b,
			IBY_EXTERNAL_PAYEES_ALL ibypayee
		 WHERE ibyu.instrument_id = b.ext_bank_account_id
		   AND ibyu.instrument_type = 'BANKACCOUNT'
		   AND (b.currency_code = p_invoice_currency_code OR b.currency_code is null
			OR NVL(b.foreign_payment_use_flag,'N')='Y')
		   AND ibyu.ext_pmt_party_id = ibypayee.ext_payee_id
		   AND ibyu.payment_flow = 'DISBURSEMENTS'
		   AND ibypayee.payment_function = 'PAYABLES_DISB'
		   AND ibypayee.payee_party_id = p_party_id
		   AND trunc(sysdate) between trunc(NVL(ibyu.start_date,sysdate-1)) AND trunc(NVL(ibyu.end_date,sysdate+1))
		   AND trunc(sysdate) between trunc(NVL(b.start_date,sysdate-1)) AND trunc(NVL(b.end_date,sysdate+1))
		   AND (ibypayee.party_site_id is null OR ibypayee.party_site_id = p_party_site_id)
		   AND (ibypayee.supplier_site_id is null OR ibypayee.supplier_site_id = p_supplier_site_id)
		   AND (ibypayee.org_id is null OR
			(ibypayee.org_id = p_org_id AND ibypayee.org_type = 'OPERATING_UNIT')))
		where not_dup=1;