DBA Data[Home] [Help]

APPS.JAI_AP_RPT_PRRG_PKG SQL Statements

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

Line: 19

                      Added WHO columns in insert to jai_po_rep_prrg_t


01/11/2006  SACSETHI for bug 5228046, File version 120.4
            Forward porting the change in 11i bug 5365523 (Additional CVD Enhancement).
            This bug has datamodel and spec changes.

01/17/2008  Kevin Cheng for Inclusive Tax calculation
            Add query criteria to eliminate Inclusive taxes from results.

25-FEB-2008  Changes done by nprashar for bug # 6803557.
Added a column invoice_distribution-id in cursor definition c_get_tax_from_ap also
changed the cursor c_get_tax_type.Added a parameter to cursor c_get_misc_tax_line_amt , p_invoice_distribution_id.

8-july-2008 Changes by nprashar for bug # 7225946. Changes in defintion of cursor c_inv_select_cursor,c_inv_item_lines.

05-Nov-2008 Modified by JMEENA for bug#7621541
			Removed the input parameter 'ITEM' from cursor c_inv_select_cursor,c_inv_item_lines.
*/

PROCEDURE process_report
  (
  p_invoice_date_from             IN  date,
  p_invoice_date_to               IN  date,
  p_vendor_id                     IN  number,
  p_vendor_site_id                IN  number,
  p_org_id                      IN  NUMBER,
  p_run_no OUT NOCOPY number,
  p_error_message OUT NOCOPY varchar2
  ) IS

    cursor c_get_run_no is
    select JAI_PO_REP_PRRG_T_RUNNO_S.nextval
    from dual;
Line: 54

   cursor c_inv_select_cursor is /*Signature change of cursor by nprahsar for bug # 7225946*/ --rchandan for bug#4428980
    select invoice_id, invoice_num, org_id, vendor_id, vendor_site_id, invoice_date,
      invoice_currency_code, nvl(exchange_rate,1) exchange_rate, voucher_num
    from   ap_invoices_all  aia
    where  cancelled_date is null
    and    (p_vendor_id is null or vendor_id = p_vendor_id)
    and    (p_vendor_site_id is null or vendor_site_id = p_vendor_site_id)
    and    (p_org_id is null or org_id = p_org_id)
    and    exists
         (select '1'
        from   ap_invoice_distributions_all
        where  invoice_id = aia.invoice_id
        and    line_type_lookup_code in ('ITEM','ACCRUAL')--nprahsar for bug # 7225946*/
        and    po_distribution_id is not null
        and    nvl(reversal_flag, 'N') <> 'Y'
        and    accounting_date >= p_invoice_date_from /* Modified by Ramananda for bug:4071409 */
        and    accounting_date <= p_invoice_date_to /* Modified by Ramananda for bug:4071409 */
         );
Line: 74

    select
      distribution_line_number,
      po_distribution_id,
      rcv_transaction_id,
      amount,
      invoice_distribution_id,
      invoice_line_number
      /*
        In the above cursor added invoice_line_number by  Brathod, for Bug#4510143 to pass invoice_line_number
        as parameter to jai_ap_utils_pkg.get_apportion_factor
      */
    from ap_invoice_distributions_all
    where invoice_id = p_invoice_id
    and    line_type_lookup_code in ('ITEM','ACCRUAL')
    and    po_distribution_id is not null
    and    nvl(reversal_flag, 'N') <> 'Y'
    and    accounting_date >= p_invoice_date_from /* Modified by Ramananda for bug:4071409 */
    and    accounting_date <= p_invoice_date_to;    /* Modified by Ramananda for bug:4071409 */
Line: 97

    select
      po_header_id,
      segment1,
      trunc(creation_date) po_date
    from   po_headers_all
    where  po_header_id =
      ( select  po_header_id
        from    po_distributions_all
        where   po_distribution_id = p_po_distribution_id);
Line: 108

    select  release_num, release_date
    from    po_releases_all
    where   po_release_id in
      (
        select po_release_id
        from po_line_locations_all
        where  (po_header_id, po_line_id, line_location_id ) in
            (
              select  po_header_id, po_line_id, line_location_id
              from    po_distributions_all
              where   po_distribution_id = p_po_distribution_id
            )
      );
Line: 125

    select receipt_num, trunc(creation_date) receipt_date
    from   rcv_shipment_headers
    where  shipment_header_id =
      ( select  shipment_header_id
        from    rcv_transactions
        where   transaction_id = p_transaction_id);
Line: 136

    select distribution_line_number, tax_id,invoice_distribution_id /*Changed by nprashar for bug # 6803557 */
    from   JAI_AP_MATCH_INV_TAXES
    where  invoice_id = p_invoice_id
    and    parent_invoice_distribution_id = p_parent_distribution_id
    and    po_distribution_id = p_po_distribution_id
    union
    select distribution_line_number, tax_id,invoice_distribution_id /*Changed by nprashar for bug # 6803557 */
    from   JAI_AP_MATCH_INV_TAXES
    where  invoice_id = p_invoice_id
    and    parent_invoice_distribution_id is null
    and    po_distribution_id is null
    and    (po_header_id, po_line_id, line_location_id)
         in
         (
        select po_header_id, po_line_id, line_location_id
        from   po_distributions_all
        where  po_distribution_id = p_po_distribution_id
        );
Line: 156

    select  UPPER(tax_type) tax_type /*Changes by nprashar for bug  7678389, replaced initcap by Upper function Changes by nprashar for bug # 6803557 */
    from    JAI_CMN_TAXES_ALL
    where   tax_id = p_tax_id;
Line: 161

    select amount
    from   ap_invoice_distributions_all
    where  invoice_id = p_invoice_id
    and    distribution_line_number = p_distribution_line_number
    and    invoice_distribution_id = p_invoice_distribution_id /*Added by nprashar for Bug # 6803557*/
    and    accounting_date >= p_invoice_date_from /* Modified by Ramananda for bug:4071409 */
    and    accounting_date <= p_invoice_date_to;    /* Modified by Ramananda for bug:4071409 */
Line: 177

    select A.tax_id, upper(A.tax_type) tax_type, A.currency, A.tax_amount
    from   JAI_RCV_LINE_TAXES A, JAI_CMN_TAXES_ALL B -- Added by Kevin Cheng for Inclusive Tax
    where (A.shipment_header_id, A.shipment_line_id)
           in
         (select shipment_header_id, shipment_line_id
          from   rcv_transactions
        where  transaction_id = p_rcv_transaction_id)
    and    A.tax_id not in
        (
          select tax_id
          from   JAI_AP_MATCH_INV_TAXES
          where  invoice_id = p_invoice_id
          and    parent_invoice_distribution_id = p_parent_distribution_id
          and    po_distribution_id = p_po_distribution_id
          union
          select tax_id
          from   JAI_AP_MATCH_INV_TAXES
          where  invoice_id = p_invoice_id
          and    parent_invoice_distribution_id is null
          and    po_distribution_id is null
          and      (po_header_id, po_line_id, line_location_id)
               in
               (
              select po_header_id, po_line_id, line_location_id
              from   po_distributions_all
              where  po_distribution_id = p_po_distribution_id
              )
        )
    AND A.tax_id = B.tax_id -- Added by Kevin Cheng for Inclusive Tax
    AND nvl(B.inclusive_tax_flag, 'N') = 'N' -- Added by Kevin Cheng for Inclusive Tax
        ;
Line: 218

    select A.tax_id, upper(A.tax_type) tax_type, A.currency, A.tax_amount
    from   JAI_PO_TAXES A, JAI_CMN_TAXES_ALL B -- Added by Kevin Cheng for Inclusive Tax
    where  (A.po_header_id, A.po_line_id, A.line_location_id)
         in
         (select po_header_id, po_line_id, line_location_id
        from   po_distributions_all
        where  po_distribution_id = p_po_distribution_id)
    and    A.tax_id not in
        (
          select tax_id
          from   JAI_AP_MATCH_INV_TAXES
          where  invoice_id = p_invoice_id
          and    parent_invoice_distribution_id = p_parent_distribution_id
          and    po_distribution_id = p_po_distribution_id
          union
          select tax_id
          from   JAI_AP_MATCH_INV_TAXES
          where  invoice_id = p_invoice_id
          and    parent_invoice_distribution_id is null
          and    po_distribution_id is null
          and      (po_header_id, po_line_id, line_location_id)
               in
               (
              select po_header_id, po_line_id, line_location_id
              from   po_distributions_all
              where  po_distribution_id = p_po_distribution_id
              )
        )
    AND A.tax_id = B.tax_id -- Added by Kevin Cheng for Inclusive Tax
    AND nvl(B.inclusive_tax_flag, 'N') = 'N'; -- Added by Kevin Cheng for Inclusive Tax
Line: 320

                           Depending on the input parameter, all invoices are selected.
                           Taxes that have been already brought over to payable invoice
                           as 'miscellaneous' distribution lines are considered by their tax
                           type.

                           For each line the taxes from the corresponding Receipt / PO are
                           again considered for any tax that is not brought over to AP. This is
                           possible as third party taxes and taxes like cvd and customs are not brought
                           over to AP. These taxes are also grouped by their tax type. These taxes
                           from purchasing side are checked for apportion factor for changes in Quantity,
                           Price and UOM for each line. Each tax line's currency is also compared against
                           invoice currency and is converted to invoice currency if required.

                           Taxes are grouped as follows,

                excise
                customs
                cvd
                cst
                lst
                freight
                octroi
                others

   2         31/12/2004   Created by Ramananda for bug#4071409. Version#115.1

             Issue:-
                           The report JAINPRRG.rdf calls this procedure process_report.
                           A set of from and to dates are being passed to this report.Currently the report
                           picks up the invoices based on these parameters and the details of these
                           picked up invoices are displayed in the report
             Reason:-
                           Invoice date is checked against the input date parameters to pick the invoices
             Fix:-
                           Accounting date is used against the input date parameters to pick the invoices
             Dependency due to this bug:-
       None


   Future Dependencies For the release Of this Object:-
   ==================================================
   Please add a row in the section below only if your bug introduces a dependency
   like,spec change/ A new call to a object/A datamodel change.

   --------------------------------------------------------------------------------
   Version       Bug       Dependencies (including other objects like files if any)
   --------------------------------------------------------------------------------
   115.0       3633078    Datamodel dependencies

  --------------------------------------------------------------------------------- */

    -- get the run_no
    v_statement_id:= 1;
Line: 378

	 --JMEENA for bug#7621541, Removed Input parameter 'ITEM' from c_inv_select_cursor
    for c_inv_select_rec in c_inv_select_cursor LOOP  --rchandan for bug#4428980

      v_statement_id:= 3;
Line: 385

      for c_item_lines_rec in c_inv_item_lines(c_inv_select_rec.invoice_id) loop

        v_statement_id:= 4;
Line: 462

          c_inv_select_rec.invoice_id,
          c_item_lines_rec.invoice_distribution_id,
          c_item_lines_rec.po_distribution_id)
        loop

          v_statement_id:= 8;
Line: 479

          (c_inv_select_rec.invoice_id, c_get_tax_from_ap_rec.distribution_line_number,
           c_get_tax_from_ap_rec.invoice_distribution_id); /*Added by nprashar for bug # 6803557 */
Line: 528

        v_conversion_factor := jai_ap_utils_pkg.get_apportion_factor(c_inv_select_rec.invoice_id, c_item_lines_rec.invoice_line_number);
Line: 544

          c_inv_select_rec.invoice_id,
          c_item_lines_rec.invoice_distribution_id,
          c_item_lines_rec.po_distribution_id,
          c_item_lines_rec.rcv_transaction_id
          )
          loop

            v_statement_id:= 13;
Line: 559

            if c_inv_select_rec.invoice_currency_code <> c_receipt_tax_rec.currency then
              v_tax_amt := v_tax_amt / c_inv_select_rec.exchange_rate;
Line: 609

          c_inv_select_rec.invoice_id,
          c_item_lines_rec.invoice_distribution_id,
          c_item_lines_rec.po_distribution_id,
          c_item_lines_rec.rcv_transaction_id
          )

          loop

            v_statement_id:= 16;
Line: 626

            if c_inv_select_rec.invoice_currency_code <> c_get_tax_from_po_rec.currency then
              v_tax_amt := v_tax_amt / c_inv_select_rec.exchange_rate;
Line: 672

        /* Modified the following insert statement to insert VAT amounts for bug#5096880, Ramesh.B.K, 23/03/2006 */
        -- Date 24-Nov-2006 Forward porting Bug 5671126 added by Balaji
        -- insert into the temp table with all the values.

        insert into JAI_PO_REP_PRRG_T
        (
        run_no,
        org_id,
        vendor_id,
        vendor_site_id,
        invoice_id,
        invoice_num,
        invoice_date,
        invoice_currency_code,
        exchange_rate,
        voucher_num,
        distribution_line_number,
        po_number,
        po_header_id,
        po_creation_date,
        po_distribution_id,
        po_release_num,
        receipt_number,
        receipt_date,
        rcv_transaction_id,
        line_amount,
        excise,
        customs,
        cvd,
	additional_cvd  , -- Date 01/11/2006 Bug 5228046 added by SACSETHI
        cst,
        lst,
        freight,
        octroi,
        -- Date 24-Nov-2006 Forward porting Bug 5671126 added by Balaji
        --start
        vat,
        service_tax,
	--end
        others,
        /* Bug 4866533. Added by Lakshmi gopalsami
        Added WHO columns */
        CREATED_BY,
        CREATION_DATE,
        LAST_UPDATED_BY,
        LAST_UPDATE_DATE
        )
        values
        (
        v_run_no,
        c_inv_select_rec.org_id  ,
        c_inv_select_rec.vendor_id,
        c_inv_select_rec.vendor_site_id,
        c_inv_select_rec.invoice_id,
        c_inv_select_rec.invoice_num,
        c_inv_select_rec.invoice_date,
        c_inv_select_rec.invoice_currency_code,
        c_inv_select_rec.exchange_rate,
        c_inv_select_rec.voucher_num,
        c_item_lines_rec.distribution_line_number,
        v_po_number,
        v_po_header_id,
        nvl(v_po_release_date, v_po_date),
        c_item_lines_rec.po_distribution_id,
        nvl(v_po_release_num, 0),
        v_receipt_num,
        v_receipt_date,
        c_item_lines_rec.rcv_transaction_id,
        c_item_lines_rec.amount,
        v_excise_ap +  v_excise_po,
        v_customs_ap + v_customs_po,
        v_cvd_ap + v_cvd_po,
        v_addcvd_ap + v_addcvd_po ,  -- Date 01/11/2006 Bug 5228046 added by SACSETHI
	v_cst_ap + v_cst_po,
        v_lst_ap + v_lst_po,
        v_freight_ap + v_freight_po,
        v_octroi_ap + v_octroi_po,
        -- Date 24-Nov-2006 Forward porting Bug 5671126 added by Balaji
        --start
        (NVL(v_vat_ap,0) + NVL(v_vat_po,0) +
	 NVL(v_turnover_ap,0) +
	 NVL(v_turnover_po,0) +
	 NVL(v_pur_ap,0)  +
	 NVL(v_pur_po,0) +
	 NVL(v_entry_ap,0)    +
	 NVL(v_entry_po,0)),
         v_service_ap  + v_service_po,
        --end
        v_others_ap + v_others_po,
        /* Bug 4866533. Added by Lakshmi Gopalsami
           Added WHO columns
        */
        fnd_global.user_id,
        sysdate,
        fnd_global.user_id,
        sysdate
        );
Line: 777

    end loop;-- c_inv_select_cursor