DBA Data[Home] [Help]

APPS.ARP_RATE_ADJ dependencies on ARP_CASH_REC

Line 520: new_crh_id := arp_cash_receipt_history.InsertRecord

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

Line 566: arp_cash_receipt_history.Reverse(new_crh_id,

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

Line 587: arp_cash_rec.upd_cash_receipts(new_adj.new_exchange_date,

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

Line 604: arp_cash_receipts_pkg.fetch_p( l_cr_rec );

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

Line 879: old_reverse_crh_id := arp_cash_receipt_history.InsertRecord

875: old_crh_reverse_rec.last_update_login := new_adj.last_update_login;
876: old_crh_reverse_rec.created_from := 'RATE ADJUSTMENT TRIGGER';
877:
878:
879: old_reverse_crh_id := arp_cash_receipt_history.InsertRecord
880: (amount => old_crh_reverse_rec.amount,
881: acctd_amount => old_crh_reverse_rec.acctd_amount,
882: cash_receipt_id => old_crh_reverse_rec.cash_receipt_id,
883: factor_flag => old_crh_reverse_rec.factor_flag,

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

1626: l_cr_rec.cash_receipt_id := cr.cash_receipt_id;
1627: l_cr_rec.status := 'UNAPP';
1628:
1629: -- Update cash receipt status
1630: arp_cash_receipts_pkg.update_p(l_cr_rec, cr.cash_receipt_id);
1631:
1632: ELSE
1633: /*-----------------------------------*
1634: | Update Payment Schedules with new |