DBA Data[Home] [Help]

APPS.ARP_PROCESS_APPLICATION2 dependencies on ARP_APP_PKG

Line 187: arp_app_pkg.fetch_p(p_ra_id, l_rec_ra_rec);

183:
184: END IF;
185:
186: -- First get the old values
187: arp_app_pkg.fetch_p(p_ra_id, l_rec_ra_rec);
188:
189: p_acctd_amount_applied_to := l_rec_ra_rec.acctd_amount_applied_to;
190: p_acctd_amount_applied_from := l_rec_ra_rec.acctd_amount_applied_from;
191:

Line 423: arp_app_pkg.update_p(l_rec_ra_rec);

419:
420: END IF;
421:
422: -- Dump the data into database
423: arp_app_pkg.update_p(l_rec_ra_rec);
424: p_gl_date := l_rec_ra_rec.gl_date;
425:
426: --BUG#2750340
427: l_xla_ev_rec.xla_from_doc_id := p_ra_id;

Line 558: arp_app_pkg.delete_p(p_ra_id);

554:
555: END LOOP;
556:
557: -- Delete Receivable Application record.
558: arp_app_pkg.delete_p(p_ra_id);
559:
560: /*---------------------------------+
561: | Calling central MRC library |
562: | for MRC Integration |

Line 608: arp_app_pkg.fetch_p( ln_unapp_ra_id, lr_ra_rec );

604: IF PG_DEBUG in ('Y', 'C') THEN
605: arp_standard.debug('delete_selected_transaction: ' || 'Fetch the UNAPP row');
606: END IF;
607: -- Fetch the UNAPP row.
608: arp_app_pkg.fetch_p( ln_unapp_ra_id, lr_ra_rec );
609:
610: -- Set the amount with the new value.
611: lr_ra_rec.amount_applied := lr_ra_rec.amount_applied - ln_amount_applied;
612:

Line 641: arp_app_pkg.update_p(lr_ra_rec);

637:
638: END LOOP;
639:
640: -- Update the UNAPP row.
641: arp_app_pkg.update_p(lr_ra_rec);
642:
643: --
644: --Release 11.5 create accounting associated with UNAPP row
645: --This is standalone and not paired with an APP

Line 719: arp_app_pkg.fetch_p(p_ra_id, l_ra_rec);

715: , 'P_RA_ID'
716: , 'NULL');
717: END IF;
718: -- First get the old values
719: arp_app_pkg.fetch_p(p_ra_id, l_ra_rec);
720:
721: l_ra_rec.on_acct_cust_id := p_on_acct_cust_id;
722: l_ra_rec.on_acct_cust_site_use_id := p_on_acct_cust_site_use_id;
723: l_ra_rec.on_acct_po_num := p_on_acct_po_num;

Line 733: arp_app_pkg.update_p(l_ra_rec);

729: arp_standard.debug( 'p_on_acct_po_num = '||p_on_acct_po_num);
730: END IF;
731:
732: -- Dump the data into database
733: arp_app_pkg.update_p(l_ra_rec);
734:
735: IF PG_DEBUG in ('Y', 'C') THEN
736: arp_standard.debug( 'arp_process_application.update_onacct_cust_app()-');
737: END IF;