DBA Data[Home] [Help]

APPS.ARP_RATE_ADJ dependencies on ARP_CASH_REC

Line 524: new_crh_id := arp_cash_receipt_history.InsertRecord

520: old_crh.created_from := 'RATE ADJUSTMENT TRIGGER';
521:
522: arp_standard.debug('Insert the new cash_receipt_history record');
523: --HYU use the new for rate_adj
524: new_crh_id := arp_cash_receipt_history.InsertRecord
525: (amount => old_crh.amount,
526: acctd_amount => old_crh.acctd_amount,
527: cash_receipt_id => old_crh.cash_receipt_id,
528: factor_flag => old_crh.factor_flag,

Line 570: arp_cash_receipt_history.Reverse(new_crh_id,

566: | Close out NOCOPY current Cash Receipts History Record |
567: *------------------------------------------------*/
568: arp_standard.debug('Update the rate_adjustments info on the old cash_receipt_history record');
569: --HYU rate adjustment OLD
570: arp_cash_receipt_history.Reverse(new_crh_id,
571: old_crh.gl_date,
572: old_crh_id,
573: new_adj.last_updated_by,
574: new_adj.last_update_date,

Line 591: arp_cash_rec.upd_cash_receipts(new_adj.new_exchange_date,

587: /*----------------------------------------------------------------*
588: | Update Cash Receipts record with New exchange rate Information |
589: *----------------------------------------------------------------*/
590: arp_standard.debug('Update Cash Receipts record with New exchange rate Information');
591: arp_cash_rec.upd_cash_receipts(new_adj.new_exchange_date,
592: new_adj.new_exchange_rate,
593: new_adj.new_exchange_rate_type,
594: new_adj.cash_receipt_id,
595: new_adj.last_updated_by,

Line 608: arp_cash_receipts_pkg.fetch_p( l_cr_rec );

604:
605: -- Since we have the cash_receipt_id, we can get the
606: -- cash receipt information.
607: l_cr_rec.cash_receipt_id := new_adj.cash_receipt_id;
608: arp_cash_receipts_pkg.fetch_p( l_cr_rec );
609:
610:
611: ---{Start Obsolete after testing
612: -- HYU in R12 we need to reverse backout the last CRH record at last stage

Line 883: old_reverse_crh_id := arp_cash_receipt_history.InsertRecord

879: old_crh_reverse_rec.last_update_login := new_adj.last_update_login;
880: old_crh_reverse_rec.created_from := 'RATE ADJUSTMENT TRIGGER';
881:
882:
883: old_reverse_crh_id := arp_cash_receipt_history.InsertRecord
884: (amount => old_crh_reverse_rec.amount,
885: acctd_amount => old_crh_reverse_rec.acctd_amount,
886: cash_receipt_id => old_crh_reverse_rec.cash_receipt_id,
887: factor_flag => old_crh_reverse_rec.factor_flag,

Line 1689: arp_cash_receipts_pkg.update_p(l_cr_rec, cr.cash_receipt_id);

1685: l_cr_rec.cash_receipt_id := cr.cash_receipt_id;
1686: l_cr_rec.status := 'UNAPP';
1687:
1688: -- Update cash receipt status
1689: arp_cash_receipts_pkg.update_p(l_cr_rec, cr.cash_receipt_id);
1690:
1691: ELSE
1692: /*-----------------------------------*
1693: | Update Payment Schedules with new |