DBA Data[Home] [Help]

APPS.JAI_RCV_RGM_CLAIMS_PKG dependencies on JAI_RCV_TRX_PROCESSING_PKG

Line 260: if r_trx.attribute_category = jai_rcv_trx_processing_pkg.OPM_RECEIPT then

256: lv_transaction_type := r_base_trx.transaction_type;
257: END IF;
258:
259: /* Vijay Shankar for Bug#4250171. following condition added to implement VAT Functionality for OPM */
260: if r_trx.attribute_category = jai_rcv_trx_processing_pkg.OPM_RECEIPT then
261:
262: if lv_transaction_type = 'RETURN TO VENDOR' THEN
263: ln_location_id := r_parent_trx.location_id;
264: lv_subinventory := r_base_trx.subinventory;

Line 299: ln_ancestor_trxn_id := jai_rcv_trx_processing_pkg.get_ancestor_id(

295: ELSIF lv_transaction_type IN ('RECEIVE', 'RETURN TO VENDOR') THEN
296: lv_required_trx_type := 'RECEIVE';
297: END IF;
298:
299: ln_ancestor_trxn_id := jai_rcv_trx_processing_pkg.get_ancestor_id(
300: p_transaction_id => p_transaction_id,
301: p_shipment_line_id => r_base_trx.shipment_line_id,
302: p_required_trx_type => lv_required_trx_type
303: );

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

489: CLOSE cur_term;
490:
491: FOR rec_txns IN cur_txns(rec_lines.shipment_line_id, p_transaction_id)
492: LOOP
493: ln_apportion_factor := ABS(jai_rcv_trx_processing_pkg.get_apportion_factor(rec_txns.transaction_id));
494:
495: IF gv_debug THEN
496: fnd_file.put_line(fnd_file.log, 'ln_apportion_factor: '||ln_apportion_factor);
497: fnd_file.put_line(fnd_file.log, 'Transaction_id: '||rec_txns.transaction_id);

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

2491:
2492: FOR r_receive_correct_txns IN c_receive_correct_txns(r_shipment_lines.shipment_header_id, r_shipment_lines.shipment_line_id)
2493: LOOP
2494:
2495: ln_apportion_factor := jai_rcv_trx_processing_pkg.get_apportion_factor(r_receive_correct_txns.transaction_id);
2496:
2497: FOR rec_tax IN cur_tax(r_receive_transaction.transaction_id, r_receive_transaction.currency_conversion_rate)
2498: LOOP
2499: lv_currency_code := jai_constants.func_curr;

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

2605: FETCH cur_total_tax INTO rec_total_tax;
2606: CLOSE cur_total_tax;
2607:
2608: ln_process_special_amount := rec_total_tax.tax_amount *
2609: ABS(jai_rcv_trx_processing_pkg.get_apportion_factor(r_deliver_rtr_txns.transaction_id)) *
2610: r_deliver_rtr_txns.quantity_multiplier;
2611: IF gv_debug THEN
2612: fnd_file.put_line(fnd_file.log, 'In the LOOP');
2613: fnd_file.put_line(fnd_file.log, 'Tax_transaction_id'||r_deliver_rtr_txns.Tax_transaction_id);

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

2613: fnd_file.put_line(fnd_file.log, 'Tax_transaction_id'||r_deliver_rtr_txns.Tax_transaction_id);
2614: fnd_file.put_line(fnd_file.log, 'transaction_id'||r_deliver_rtr_txns.transaction_id);
2615: fnd_file.put_line(fnd_file.log, 'currency_conversion_rate'||r_receive_transaction.currency_conversion_rate);
2616: fnd_file.put_line(fnd_file.log, 'Tax_amount'||rec_total_tax.tax_amount);
2617: fnd_file.put_line(fnd_file.log, 'Apportion Factor'||ABS(jai_rcv_trx_processing_pkg.get_apportion_factor(r_deliver_rtr_txns.transaction_id)));
2618:
2619: END IF;
2620:
2621: jai_rcv_deliver_rtr_pkg.process_transaction(

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

3358: if r_trx.transaction_type = 'CORRECT' then
3359: lv_reference_10 := lv_reference_10 || ' of type ' || r_trx.parent_transaction_type;
3360: end if;
3361:
3362: ln_apportion_factor := jai_rcv_trx_processing_pkg.get_apportion_factor(p_transaction_id);
3363:
3364: lv_code_path := '';
3365:
3366: FOR rec_tax IN cur_tax(r_trx.tax_transaction_id, r_trx.currency_conversion_rate)