DBA Data[Home] [Help]

APPS.ARP_PROCESS_APPLICATION2 dependencies on ARP_ACCT_MAIN

Line 7: SUBTYPE ae_doc_rec_type IS arp_acct_main.ae_doc_rec_type;

3:
4: /* =======================================================================
5: | Global Data Types
6: * ======================================================================*/
7: SUBTYPE ae_doc_rec_type IS arp_acct_main.ae_doc_rec_type;
8:
9: PG_DEBUG varchar2(1) := NVL(FND_PROFILE.value('AFLOG_ENABLED'), 'N');
10: FUNCTION revision RETURN VARCHAR2 IS
11: BEGIN

Line 542: arp_acct_main.Delete_Acct_Entry(l_ae_doc_rec);

538: l_ae_doc_rec.source_table := 'RA';
539: l_ae_doc_rec.source_id := l_get_app_rec.app_id; --same as p_ra_id
540: l_ae_doc_rec.source_id_old := '';
541: l_ae_doc_rec.other_flag := '';
542: arp_acct_main.Delete_Acct_Entry(l_ae_doc_rec);
543:
544: END LOOP;
545:
546: -- Delete Receivable Application record.

Line 625: arp_acct_main.Delete_Acct_Entry(l_ae_doc_rec);

621: l_ae_doc_rec.source_table := 'RA';
622: l_ae_doc_rec.source_id := l_get_app_rec.app_id;
623: l_ae_doc_rec.source_id_old := '';
624: l_ae_doc_rec.other_flag := '';
625: arp_acct_main.Delete_Acct_Entry(l_ae_doc_rec);
626:
627: END LOOP;
628:
629: -- Update the UNAPP row.

Line 644: arp_acct_main.Create_Acct_Entry(l_ae_doc_rec);

640: l_ae_doc_rec.source_table := 'RA';
641: l_ae_doc_rec.source_id := lr_ra_rec.receivable_application_id;
642: l_ae_doc_rec.source_id_old := '';
643: l_ae_doc_rec.other_flag := '';
644: arp_acct_main.Create_Acct_Entry(l_ae_doc_rec);
645: END IF;
646:
647: IF PG_DEBUG in ('Y', 'C') THEN
648: arp_standard.debug('delete_selected_transaction: ' || 'arp_process_application.delete_receivable_application()-');