DBA Data[Home] [Help]

APPS.ARW_CMREQ_COVER dependencies on RA_BATCH_SOURCES

Line 629: p_batch_source_name IN ra_batch_sources.name%type,

625: -- bug 2290738 : added p_status to capture error status
626:
627: PROCEDURE ar_autocreate_cm(
628: p_request_id IN ra_cm_requests.request_id%type,
629: p_batch_source_name IN ra_batch_sources.name%type,
630: p_credit_method_rules IN varchar2,
631: p_credit_method_installments IN varchar2,
632: p_trx_number IN ra_customer_trx.trx_number%type DEFAULT NULL,
633: p_error_tab OUT NOCOPY arp_trx_validate.Message_Tbl_Type,

Line 827: from ra_batch_sources

823: /*6010707 As per doc when using AME the batch source name can be null*/
824: IF NOT (nvl(fnd_profile.value('AR_USE_OAM_IN_CMWF'),'N') = 'Y' and p_batch_source_name is NULL ) THEN
825: select batch_source_id
826: into l_batch_source_id
827: from ra_batch_sources
828: where name = p_batch_source_name
829: and org_id = l_trx_header_rec.org_id;
830: END IF;
831: