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 553: arp_acct_main.Delete_Acct_Entry(l_ae_doc_rec);

549: l_ae_doc_rec.source_table := 'RA';
550: l_ae_doc_rec.source_id := l_get_app_rec.app_id; --same as p_ra_id
551: l_ae_doc_rec.source_id_old := '';
552: l_ae_doc_rec.other_flag := '';
553: arp_acct_main.Delete_Acct_Entry(l_ae_doc_rec);
554:
555: END LOOP;
556:
557: -- Delete Receivable Application record.

Line 636: arp_acct_main.Delete_Acct_Entry(l_ae_doc_rec);

632: l_ae_doc_rec.source_table := 'RA';
633: l_ae_doc_rec.source_id := l_get_app_rec.app_id;
634: l_ae_doc_rec.source_id_old := '';
635: l_ae_doc_rec.other_flag := '';
636: arp_acct_main.Delete_Acct_Entry(l_ae_doc_rec);
637:
638: END LOOP;
639:
640: -- Update the UNAPP row.

Line 655: arp_acct_main.Create_Acct_Entry(l_ae_doc_rec);

651: l_ae_doc_rec.source_table := 'RA';
652: l_ae_doc_rec.source_id := lr_ra_rec.receivable_application_id;
653: l_ae_doc_rec.source_id_old := '';
654: l_ae_doc_rec.other_flag := '';
655: arp_acct_main.Create_Acct_Entry(l_ae_doc_rec);
656: END IF;
657:
658: IF PG_DEBUG in ('Y', 'C') THEN
659: arp_standard.debug('delete_selected_transaction: ' || 'arp_process_application.delete_receivable_application()-');