DBA Data[Home] [Help]

APPS.ARP_PROCESS_RETURNS dependencies on AR_RECEIPT_API_PUB

Line 38: ar_receipt_api_pub.attribute_rec_type,

34: p_ra_rec IN ar_receivable_applications%rowtype);
35: --
36: PROCEDURE populate_dff_and_gdf(p_ra_rec IN ar_receivable_applications%rowtype,
37: x_dff_rec OUT NOCOPY
38: ar_receipt_api_pub.attribute_rec_type,
39: x_gdf_rec OUT NOCOPY
40: ar_receipt_api_pub.global_attribute_rec_type);
41: --
42: PROCEDURE initialize_globals IS

Line 40: ar_receipt_api_pub.global_attribute_rec_type);

36: PROCEDURE populate_dff_and_gdf(p_ra_rec IN ar_receivable_applications%rowtype,
37: x_dff_rec OUT NOCOPY
38: ar_receipt_api_pub.attribute_rec_type,
39: x_gdf_rec OUT NOCOPY
40: ar_receipt_api_pub.global_attribute_rec_type);
41: --
42: PROCEDURE initialize_globals IS
43: BEGIN
44: BEGIN

Line 433: l_gdf_rec ar_receipt_api_pub.global_attribute_rec_type;

429: l_application_ref_num ar_receivable_applications.application_ref_num%type;
430: l_receivable_application_id ar_receivable_applications.receivable_application_id%type;
431: l_new_ra_rec ar_receivable_applications%rowtype;
432: l_refunding BOOLEAN:=FALSE;
433: l_gdf_rec ar_receipt_api_pub.global_attribute_rec_type;
434: l_dff_rec ar_receipt_api_pub.attribute_rec_type;
435: l_party_id hz_parties.party_id%type;
436: BEGIN
437: IF PG_DEBUG in ('Y', 'C') THEN

Line 434: l_dff_rec ar_receipt_api_pub.attribute_rec_type;

430: l_receivable_application_id ar_receivable_applications.receivable_application_id%type;
431: l_new_ra_rec ar_receivable_applications%rowtype;
432: l_refunding BOOLEAN:=FALSE;
433: l_gdf_rec ar_receipt_api_pub.global_attribute_rec_type;
434: l_dff_rec ar_receipt_api_pub.attribute_rec_type;
435: l_party_id hz_parties.party_id%type;
436: BEGIN
437: IF PG_DEBUG in ('Y', 'C') THEN
438: arp_standard.debug('arp_process_returns.process_application_list()+ ');

Line 533: ar_receipt_api_pub.Apply(p_api_version => 1.0,

529: l_reapply_amount|| '>');
530: END IF;
531: --
532: --
533: ar_receipt_api_pub.Apply(p_api_version => 1.0,
534: x_return_status => l_return_status,
535: x_msg_count => l_msg_count,
536: x_msg_data => l_msg_data,
537: p_cash_receipt_id => app_tab(i).cash_receipt_id,

Line 579: ar_receipt_api_pub.apply_out_rec.receivable_application_id,

575: --
576: -- Fetch Rec App record for the application
577: --
578: arp_app_pkg.fetch_p(p_ra_id=>
579: ar_receipt_api_pub.apply_out_rec.receivable_application_id,
580: p_ra_rec=>l_new_ra_rec);
581: --
582: -- Get Amount Applied from for the new application
583: --

Line 765: ar_receipt_api_pub.activity_application(

761: ra_customer_trx trx
762: where trx.bill_to_customer_id = acc.cust_account_id
763: and trx.trx_number = app_info(i).trx_number;
764:
765: ar_receipt_api_pub.activity_application(
766: p_api_version => 1.0,
767: x_return_status => l_return_status,
768: x_msg_count => l_msg_count,
769: x_msg_data => l_msg_data,

Line 824: ar_receipt_api_pub.Apply_on_account(

820: --
821: IF l_refunding THEN
822: l_app_comments := arp_standard.fnd_message('AR_RID_TOTAL_REFUND_LIMIT');
823: END IF;
824: ar_receipt_api_pub.Apply_on_account(
825: p_api_version => 1.0,
826: x_return_status => l_return_status,
827: x_msg_count => l_msg_count,
828: x_msg_data => l_msg_data,

Line 875: ar_receipt_api_pub.activity_application(

871: arp_standard.debug('l_app_comments NVL:[' ||
872: NVL(app_info(i).rid_reason, l_app_comments) ||']');
873: END IF;
874: --
875: ar_receipt_api_pub.activity_application(
876: p_api_version => 1.0,
877: p_init_msg_list =>FND_API.G_FALSE,
878: p_commit =>FND_API.G_FALSE,
879: p_validation_level =>FND_API.G_VALID_LEVEL_FULL,

Line 1177: ar_receipt_api_pub.Unapply(

1173: END IF;
1174: --
1175: -- Unapply the application
1176: --
1177: ar_receipt_api_pub.Unapply(
1178: p_api_version => 1.0,
1179: x_return_status => l_return_status,
1180: x_msg_count => l_msg_count,
1181: x_msg_data => l_msg_data,

Line 1799: ar_receipt_api_pub.attribute_rec_type,

1795: +===========================================================================*/
1796:
1797: PROCEDURE populate_dff_and_gdf(p_ra_rec IN ar_receivable_applications%rowtype,
1798: x_dff_rec OUT NOCOPY
1799: ar_receipt_api_pub.attribute_rec_type,
1800: x_gdf_rec OUT NOCOPY
1801: ar_receipt_api_pub.global_attribute_rec_type)
1802: AS
1803: BEGIN

Line 1801: ar_receipt_api_pub.global_attribute_rec_type)

1797: PROCEDURE populate_dff_and_gdf(p_ra_rec IN ar_receivable_applications%rowtype,
1798: x_dff_rec OUT NOCOPY
1799: ar_receipt_api_pub.attribute_rec_type,
1800: x_gdf_rec OUT NOCOPY
1801: ar_receipt_api_pub.global_attribute_rec_type)
1802: AS
1803: BEGIN
1804: ---
1805: IF PG_DEBUG in ('Y', 'C') THEN