DBA Data[Home] [Help]

APPS.JAI_RCV_RGM_CLAIMS_PKG dependencies on JAI_RCV_TRX_PROCESSING_PKG

Line 329: if r_trx.trx_information = jai_rcv_trx_processing_pkg.OPM_RECEIPT then /*Porting changes of DFF ER to file jai_rcv_rgm_clm.plb which were rolled back since dual chekcin was enabled between 12.0 and 12.1*/

325: lv_transaction_type := r_base_trx.transaction_type;
326: END IF;
327:
328: /* Vijay Shankar for Bug#4250171. following condition added to implement VAT Functionality for OPM */
329: if r_trx.trx_information = jai_rcv_trx_processing_pkg.OPM_RECEIPT then /*Porting changes of DFF ER to file jai_rcv_rgm_clm.plb which were rolled back since dual chekcin was enabled between 12.0 and 12.1*/
330:
331: if lv_transaction_type = 'RETURN TO VENDOR' THEN
332: ln_location_id := r_parent_trx.location_id;
333: lv_subinventory := r_base_trx.subinventory;

Line 368: ln_ancestor_trxn_id := jai_rcv_trx_processing_pkg.get_ancestor_id(

364: ELSIF lv_transaction_type IN ('RECEIVE', 'RETURN TO VENDOR') THEN
365: lv_required_trx_type := 'RECEIVE';
366: END IF;
367:
368: ln_ancestor_trxn_id := jai_rcv_trx_processing_pkg.get_ancestor_id(
369: p_transaction_id => p_transaction_id,
370: p_shipment_line_id => r_base_trx.shipment_line_id,
371: p_required_trx_type => lv_required_trx_type
372: );

Line 560: ln_apportion_factor := ABS(jai_rcv_trx_processing_pkg.get_apportion_factor(rec_txns.transaction_id));

556: CLOSE cur_term;
557:
558: FOR rec_txns IN cur_txns(rec_lines.shipment_line_id, p_transaction_id)
559: LOOP
560: ln_apportion_factor := ABS(jai_rcv_trx_processing_pkg.get_apportion_factor(rec_txns.transaction_id));
561:
562: IF gv_debug THEN
563: fnd_file.put_line(fnd_file.log, 'ln_apportion_factor: '||ln_apportion_factor);
564: fnd_file.put_line(fnd_file.log, 'Transaction_id: '||rec_txns.transaction_id);

Line 2647: ln_apportion_factor := jai_rcv_trx_processing_pkg.get_apportion_factor(r_receive_correct_txns.transaction_id);

2643: /*Added by Wenqiong for bug 14743050 end*/
2644: FOR r_receive_correct_txns IN c_receive_correct_txns(r_shipment_lines.shipment_header_id, r_shipment_lines.shipment_line_id)
2645: LOOP
2646:
2647: ln_apportion_factor := jai_rcv_trx_processing_pkg.get_apportion_factor(r_receive_correct_txns.transaction_id);
2648:
2649: FOR rec_tax IN cur_tax(r_receive_transaction.transaction_id, r_receive_transaction.currency_conversion_rate)
2650: LOOP
2651: lv_currency_code := jai_constants.func_curr;

Line 2763: ABS(jai_rcv_trx_processing_pkg.get_apportion_factor(r_deliver_rtr_txns.transaction_id)) *

2759: FETCH cur_total_tax INTO rec_total_tax;
2760: CLOSE cur_total_tax;
2761:
2762: ln_process_special_amount := rec_total_tax.tax_amount *
2763: ABS(jai_rcv_trx_processing_pkg.get_apportion_factor(r_deliver_rtr_txns.transaction_id)) *
2764: r_deliver_rtr_txns.quantity_multiplier;
2765: IF gv_debug THEN
2766: fnd_file.put_line(fnd_file.log, 'In the LOOP');
2767: fnd_file.put_line(fnd_file.log, 'Tax_transaction_id'||r_deliver_rtr_txns.Tax_transaction_id);

Line 2771: fnd_file.put_line(fnd_file.log, 'Apportion Factor'||ABS(jai_rcv_trx_processing_pkg.get_apportion_factor(r_deliver_rtr_txns.transaction_id)));

2767: fnd_file.put_line(fnd_file.log, 'Tax_transaction_id'||r_deliver_rtr_txns.Tax_transaction_id);
2768: fnd_file.put_line(fnd_file.log, 'transaction_id'||r_deliver_rtr_txns.transaction_id);
2769: fnd_file.put_line(fnd_file.log, 'currency_conversion_rate'||r_receive_transaction.currency_conversion_rate);
2770: fnd_file.put_line(fnd_file.log, 'Tax_amount'||rec_total_tax.tax_amount);
2771: fnd_file.put_line(fnd_file.log, 'Apportion Factor'||ABS(jai_rcv_trx_processing_pkg.get_apportion_factor(r_deliver_rtr_txns.transaction_id)));
2772:
2773: END IF;
2774:
2775: jai_rcv_deliver_rtr_pkg.process_transaction(

Line 3624: ln_apportion_factor := jai_rcv_trx_processing_pkg.get_apportion_factor(p_transaction_id);

3620: if r_trx.transaction_type = 'CORRECT' then
3621: lv_reference_10 := lv_reference_10 || ' of type ' || r_trx.parent_transaction_type;
3622: end if;
3623:
3624: ln_apportion_factor := jai_rcv_trx_processing_pkg.get_apportion_factor(p_transaction_id);
3625:
3626: lv_code_path := '';
3627:
3628: FOR rec_tax IN cur_tax(r_trx.tax_transaction_id, r_trx.currency_conversion_rate)