DBA Data[Home] [Help]

APPS.AR_PREPAYMENTS_PUB dependencies on ARP_STANDARD

Line 236: arp_standard.debug('ar_prepayments_pub.Create_Prepayment ()+'|| p_org_id);

232:
233:
234: BEGIN
235: IF PG_DEBUG in ('Y', 'C') THEN
236: arp_standard.debug('ar_prepayments_pub.Create_Prepayment ()+'|| p_org_id);
237: arp_util.debug('Create_Prepayment: payment_trxn_extension_id' || to_char(p_payment_trxn_extension_id) );
238: arp_util.debug('Create_Prepayment receipt method id' || to_char(p_receipt_method_id) );
239: END IF;
240:

Line 480: arp_standard.debug( 'Entering payment processing...');

476: IF PG_DEBUG in ('Y', 'C') THEN
477: arp_util.debug('Process_Credit_Card: ' || 'COPY the trx_extension_id');
478: END IF;
479: IF PG_DEBUG in ('Y', 'C') THEN
480: arp_standard.debug( 'Entering payment processing...');
481: END IF;
482:
483:
484: OPEN rct_info_cur;

Line 515: l_trxn_attribs_rec.Originating_Application_Id := arp_standard.application_id;

511:
512: -- set up auth_attribs record:
513: l_auth_attribs_rec.RiskEval_Enable_Flag := 'N';
514: -- set up trxn_attribs record:
515: l_trxn_attribs_rec.Originating_Application_Id := arp_standard.application_id;
516: l_trxn_attribs_rec.order_id := rct_info.receipt_number;
517: l_trxn_attribs_rec.Trxn_Ref_Number1 := 'RECEIPT';
518: l_trxn_attribs_rec.Trxn_Ref_Number2 := l_cash_receipt_id;
519:

Line 526: arp_standard.debug( 'check and then call Auth');

522: l_amount_rec.value := rct_info.amount;
523: l_amount_rec.currency_code := rct_info.currency_code;
524:
525: IF PG_DEBUG in ('Y', 'C') THEN
526: arp_standard.debug( 'check and then call Auth');
527: END IF;
528:
529: -- determine whether to AUTHORIZE
530:

Line 536: arp_standard.debug( 'Calling get auth for pmt_trxn_extn_id ');

532:
533: l_trxn_entity_id := rct_info.payment_trxn_extension_id;
534:
535: IF PG_DEBUG in ('Y', 'C') THEN
536: arp_standard.debug( 'Calling get auth for pmt_trxn_extn_id ');
537: arp_standard.debug( 'l_trxn_entity_id ' || to_char(l_trxn_entity_id ) );
538:
539: END IF;
540:

Line 537: arp_standard.debug( 'l_trxn_entity_id ' || to_char(l_trxn_entity_id ) );

533: l_trxn_entity_id := rct_info.payment_trxn_extension_id;
534:
535: IF PG_DEBUG in ('Y', 'C') THEN
536: arp_standard.debug( 'Calling get auth for pmt_trxn_extn_id ');
537: arp_standard.debug( 'l_trxn_entity_id ' || to_char(l_trxn_entity_id ) );
538:
539: END IF;
540:
541: Begin

Line 563: arp_standard.debug ( 'the value of auth_flag is = ' || l_auth_flag);

559: when others then
560: l_auth_flag := 'N';
561: End;
562:
563: arp_standard.debug ( 'the value of auth_flag is = ' || l_auth_flag);
564:
565: If l_auth_flag = 'Y' then
566:
567: select AUTHORIZATION_ID

Line 573: arp_standard.debug ( 'the value of auth_id is = ' || l_auth_id);

569: from IBY_TRXN_EXT_AUTHS_V
570: where TRXN_EXTENSION_ID = p_payment_trxn_extension_id
571: and AUTHORIZATION_STATUS = 0;
572:
573: arp_standard.debug ( 'the value of auth_id is = ' || l_auth_id);
574:
575: ARP_CASH_RECEIPTS_PKG.set_to_dummy(l_cr_rec);
576:
577: l_cr_rec.approval_code := 'AR'||to_char(l_auth_Id);

Line 581: arp_standard.debug('CR rec updated with auth_id and auth code ');

577: l_cr_rec.approval_code := 'AR'||to_char(l_auth_Id);
578:
579: ARP_CASH_RECEIPTS_PKG.update_p(l_cr_rec, l_cash_receipt_id);
580:
581: arp_standard.debug('CR rec updated with auth_id and auth code ');
582: end if;
583:
584:
585:

Line 588: arp_standard.debug('auth needs to called');

584:
585:
586:
587: IF l_auth_flag <> 'Y' then
588: arp_standard.debug('auth needs to called');
589:
590: IF PG_DEBUG in ('Y', 'C') THEN
591: arp_standard.debug( 'Calling get auth for pmt_trxn_extn_id ');
592: arp_standard.debug( ' l_payee_rec.org_id ' || to_char(l_payee_rec.org_id) );

Line 591: arp_standard.debug( 'Calling get auth for pmt_trxn_extn_id ');

587: IF l_auth_flag <> 'Y' then
588: arp_standard.debug('auth needs to called');
589:
590: IF PG_DEBUG in ('Y', 'C') THEN
591: arp_standard.debug( 'Calling get auth for pmt_trxn_extn_id ');
592: arp_standard.debug( ' l_payee_rec.org_id ' || to_char(l_payee_rec.org_id) );
593: arp_standard.debug( ' l_payee_rec.org_type ' || to_char( l_payee_rec.org_type) );
594: arp_standard.debug( ' l_payee_rec.Int_Bank_Country_Code ' || to_char(l_payee_rec.Int_Bank_Country_Code) );
595: arp_standard.debug( ' l_payer_rec.Payment_Function ' || to_char( l_payer_rec.Payment_Function) );

Line 592: arp_standard.debug( ' l_payee_rec.org_id ' || to_char(l_payee_rec.org_id) );

588: arp_standard.debug('auth needs to called');
589:
590: IF PG_DEBUG in ('Y', 'C') THEN
591: arp_standard.debug( 'Calling get auth for pmt_trxn_extn_id ');
592: arp_standard.debug( ' l_payee_rec.org_id ' || to_char(l_payee_rec.org_id) );
593: arp_standard.debug( ' l_payee_rec.org_type ' || to_char( l_payee_rec.org_type) );
594: arp_standard.debug( ' l_payee_rec.Int_Bank_Country_Code ' || to_char(l_payee_rec.Int_Bank_Country_Code) );
595: arp_standard.debug( ' l_payer_rec.Payment_Function ' || to_char( l_payer_rec.Payment_Function) );
596: arp_standard.debug( ' l_payer_rec.Party_Id ' || to_char( l_payer_rec.Party_Id) );

Line 593: arp_standard.debug( ' l_payee_rec.org_type ' || to_char( l_payee_rec.org_type) );

589:
590: IF PG_DEBUG in ('Y', 'C') THEN
591: arp_standard.debug( 'Calling get auth for pmt_trxn_extn_id ');
592: arp_standard.debug( ' l_payee_rec.org_id ' || to_char(l_payee_rec.org_id) );
593: arp_standard.debug( ' l_payee_rec.org_type ' || to_char( l_payee_rec.org_type) );
594: arp_standard.debug( ' l_payee_rec.Int_Bank_Country_Code ' || to_char(l_payee_rec.Int_Bank_Country_Code) );
595: arp_standard.debug( ' l_payer_rec.Payment_Function ' || to_char( l_payer_rec.Payment_Function) );
596: arp_standard.debug( ' l_payer_rec.Party_Id ' || to_char( l_payer_rec.Party_Id) );
597: arp_standard.debug( ' l_payer_rec.org_id ' || to_char(l_payer_rec.org_id) );

Line 594: arp_standard.debug( ' l_payee_rec.Int_Bank_Country_Code ' || to_char(l_payee_rec.Int_Bank_Country_Code) );

590: IF PG_DEBUG in ('Y', 'C') THEN
591: arp_standard.debug( 'Calling get auth for pmt_trxn_extn_id ');
592: arp_standard.debug( ' l_payee_rec.org_id ' || to_char(l_payee_rec.org_id) );
593: arp_standard.debug( ' l_payee_rec.org_type ' || to_char( l_payee_rec.org_type) );
594: arp_standard.debug( ' l_payee_rec.Int_Bank_Country_Code ' || to_char(l_payee_rec.Int_Bank_Country_Code) );
595: arp_standard.debug( ' l_payer_rec.Payment_Function ' || to_char( l_payer_rec.Payment_Function) );
596: arp_standard.debug( ' l_payer_rec.Party_Id ' || to_char( l_payer_rec.Party_Id) );
597: arp_standard.debug( ' l_payer_rec.org_id ' || to_char(l_payer_rec.org_id) );
598: arp_standard.debug( ' l_payer_rec.org_type ' || to_char( l_payer_rec.org_type) );

Line 595: arp_standard.debug( ' l_payer_rec.Payment_Function ' || to_char( l_payer_rec.Payment_Function) );

591: arp_standard.debug( 'Calling get auth for pmt_trxn_extn_id ');
592: arp_standard.debug( ' l_payee_rec.org_id ' || to_char(l_payee_rec.org_id) );
593: arp_standard.debug( ' l_payee_rec.org_type ' || to_char( l_payee_rec.org_type) );
594: arp_standard.debug( ' l_payee_rec.Int_Bank_Country_Code ' || to_char(l_payee_rec.Int_Bank_Country_Code) );
595: arp_standard.debug( ' l_payer_rec.Payment_Function ' || to_char( l_payer_rec.Payment_Function) );
596: arp_standard.debug( ' l_payer_rec.Party_Id ' || to_char( l_payer_rec.Party_Id) );
597: arp_standard.debug( ' l_payer_rec.org_id ' || to_char(l_payer_rec.org_id) );
598: arp_standard.debug( ' l_payer_rec.org_type ' || to_char( l_payer_rec.org_type) );
599: arp_standard.debug( 'l_payer_rec.Cust_Account_Id ' || to_char(l_payer_rec.Cust_Account_Id) );

Line 596: arp_standard.debug( ' l_payer_rec.Party_Id ' || to_char( l_payer_rec.Party_Id) );

592: arp_standard.debug( ' l_payee_rec.org_id ' || to_char(l_payee_rec.org_id) );
593: arp_standard.debug( ' l_payee_rec.org_type ' || to_char( l_payee_rec.org_type) );
594: arp_standard.debug( ' l_payee_rec.Int_Bank_Country_Code ' || to_char(l_payee_rec.Int_Bank_Country_Code) );
595: arp_standard.debug( ' l_payer_rec.Payment_Function ' || to_char( l_payer_rec.Payment_Function) );
596: arp_standard.debug( ' l_payer_rec.Party_Id ' || to_char( l_payer_rec.Party_Id) );
597: arp_standard.debug( ' l_payer_rec.org_id ' || to_char(l_payer_rec.org_id) );
598: arp_standard.debug( ' l_payer_rec.org_type ' || to_char( l_payer_rec.org_type) );
599: arp_standard.debug( 'l_payer_rec.Cust_Account_Id ' || to_char(l_payer_rec.Cust_Account_Id) );
600: arp_standard.debug( 'l_payer_rec.Account_Site_Id ' || to_char(l_payer_rec.Account_Site_Id) );

Line 597: arp_standard.debug( ' l_payer_rec.org_id ' || to_char(l_payer_rec.org_id) );

593: arp_standard.debug( ' l_payee_rec.org_type ' || to_char( l_payee_rec.org_type) );
594: arp_standard.debug( ' l_payee_rec.Int_Bank_Country_Code ' || to_char(l_payee_rec.Int_Bank_Country_Code) );
595: arp_standard.debug( ' l_payer_rec.Payment_Function ' || to_char( l_payer_rec.Payment_Function) );
596: arp_standard.debug( ' l_payer_rec.Party_Id ' || to_char( l_payer_rec.Party_Id) );
597: arp_standard.debug( ' l_payer_rec.org_id ' || to_char(l_payer_rec.org_id) );
598: arp_standard.debug( ' l_payer_rec.org_type ' || to_char( l_payer_rec.org_type) );
599: arp_standard.debug( 'l_payer_rec.Cust_Account_Id ' || to_char(l_payer_rec.Cust_Account_Id) );
600: arp_standard.debug( 'l_payer_rec.Account_Site_Id ' || to_char(l_payer_rec.Account_Site_Id) );
601: arp_standard.debug( 'l_trxn_entity_id ' || to_char(l_trxn_entity_id ) );

Line 598: arp_standard.debug( ' l_payer_rec.org_type ' || to_char( l_payer_rec.org_type) );

594: arp_standard.debug( ' l_payee_rec.Int_Bank_Country_Code ' || to_char(l_payee_rec.Int_Bank_Country_Code) );
595: arp_standard.debug( ' l_payer_rec.Payment_Function ' || to_char( l_payer_rec.Payment_Function) );
596: arp_standard.debug( ' l_payer_rec.Party_Id ' || to_char( l_payer_rec.Party_Id) );
597: arp_standard.debug( ' l_payer_rec.org_id ' || to_char(l_payer_rec.org_id) );
598: arp_standard.debug( ' l_payer_rec.org_type ' || to_char( l_payer_rec.org_type) );
599: arp_standard.debug( 'l_payer_rec.Cust_Account_Id ' || to_char(l_payer_rec.Cust_Account_Id) );
600: arp_standard.debug( 'l_payer_rec.Account_Site_Id ' || to_char(l_payer_rec.Account_Site_Id) );
601: arp_standard.debug( 'l_trxn_entity_id ' || to_char(l_trxn_entity_id ) );
602: arp_standard.debug( 'l_amount_rec.value: ' || to_char(l_amount_rec.value) );

Line 599: arp_standard.debug( 'l_payer_rec.Cust_Account_Id ' || to_char(l_payer_rec.Cust_Account_Id) );

595: arp_standard.debug( ' l_payer_rec.Payment_Function ' || to_char( l_payer_rec.Payment_Function) );
596: arp_standard.debug( ' l_payer_rec.Party_Id ' || to_char( l_payer_rec.Party_Id) );
597: arp_standard.debug( ' l_payer_rec.org_id ' || to_char(l_payer_rec.org_id) );
598: arp_standard.debug( ' l_payer_rec.org_type ' || to_char( l_payer_rec.org_type) );
599: arp_standard.debug( 'l_payer_rec.Cust_Account_Id ' || to_char(l_payer_rec.Cust_Account_Id) );
600: arp_standard.debug( 'l_payer_rec.Account_Site_Id ' || to_char(l_payer_rec.Account_Site_Id) );
601: arp_standard.debug( 'l_trxn_entity_id ' || to_char(l_trxn_entity_id ) );
602: arp_standard.debug( 'l_amount_rec.value: ' || to_char(l_amount_rec.value) );
603: arp_standard.debug( 'l_amount_rec.currency_code: ' || l_amount_rec.currency_code );

Line 600: arp_standard.debug( 'l_payer_rec.Account_Site_Id ' || to_char(l_payer_rec.Account_Site_Id) );

596: arp_standard.debug( ' l_payer_rec.Party_Id ' || to_char( l_payer_rec.Party_Id) );
597: arp_standard.debug( ' l_payer_rec.org_id ' || to_char(l_payer_rec.org_id) );
598: arp_standard.debug( ' l_payer_rec.org_type ' || to_char( l_payer_rec.org_type) );
599: arp_standard.debug( 'l_payer_rec.Cust_Account_Id ' || to_char(l_payer_rec.Cust_Account_Id) );
600: arp_standard.debug( 'l_payer_rec.Account_Site_Id ' || to_char(l_payer_rec.Account_Site_Id) );
601: arp_standard.debug( 'l_trxn_entity_id ' || to_char(l_trxn_entity_id ) );
602: arp_standard.debug( 'l_amount_rec.value: ' || to_char(l_amount_rec.value) );
603: arp_standard.debug( 'l_amount_rec.currency_code: ' || l_amount_rec.currency_code );
604:

Line 601: arp_standard.debug( 'l_trxn_entity_id ' || to_char(l_trxn_entity_id ) );

597: arp_standard.debug( ' l_payer_rec.org_id ' || to_char(l_payer_rec.org_id) );
598: arp_standard.debug( ' l_payer_rec.org_type ' || to_char( l_payer_rec.org_type) );
599: arp_standard.debug( 'l_payer_rec.Cust_Account_Id ' || to_char(l_payer_rec.Cust_Account_Id) );
600: arp_standard.debug( 'l_payer_rec.Account_Site_Id ' || to_char(l_payer_rec.Account_Site_Id) );
601: arp_standard.debug( 'l_trxn_entity_id ' || to_char(l_trxn_entity_id ) );
602: arp_standard.debug( 'l_amount_rec.value: ' || to_char(l_amount_rec.value) );
603: arp_standard.debug( 'l_amount_rec.currency_code: ' || l_amount_rec.currency_code );
604:
605: arp_standard.debug( 'Calling get_auth for pmt_trxn_extn_id ');

Line 602: arp_standard.debug( 'l_amount_rec.value: ' || to_char(l_amount_rec.value) );

598: arp_standard.debug( ' l_payer_rec.org_type ' || to_char( l_payer_rec.org_type) );
599: arp_standard.debug( 'l_payer_rec.Cust_Account_Id ' || to_char(l_payer_rec.Cust_Account_Id) );
600: arp_standard.debug( 'l_payer_rec.Account_Site_Id ' || to_char(l_payer_rec.Account_Site_Id) );
601: arp_standard.debug( 'l_trxn_entity_id ' || to_char(l_trxn_entity_id ) );
602: arp_standard.debug( 'l_amount_rec.value: ' || to_char(l_amount_rec.value) );
603: arp_standard.debug( 'l_amount_rec.currency_code: ' || l_amount_rec.currency_code );
604:
605: arp_standard.debug( 'Calling get_auth for pmt_trxn_extn_id ');
606: END IF;

Line 603: arp_standard.debug( 'l_amount_rec.currency_code: ' || l_amount_rec.currency_code );

599: arp_standard.debug( 'l_payer_rec.Cust_Account_Id ' || to_char(l_payer_rec.Cust_Account_Id) );
600: arp_standard.debug( 'l_payer_rec.Account_Site_Id ' || to_char(l_payer_rec.Account_Site_Id) );
601: arp_standard.debug( 'l_trxn_entity_id ' || to_char(l_trxn_entity_id ) );
602: arp_standard.debug( 'l_amount_rec.value: ' || to_char(l_amount_rec.value) );
603: arp_standard.debug( 'l_amount_rec.currency_code: ' || l_amount_rec.currency_code );
604:
605: arp_standard.debug( 'Calling get_auth for pmt_trxn_extn_id ');
606: END IF;
607:

Line 605: arp_standard.debug( 'Calling get_auth for pmt_trxn_extn_id ');

601: arp_standard.debug( 'l_trxn_entity_id ' || to_char(l_trxn_entity_id ) );
602: arp_standard.debug( 'l_amount_rec.value: ' || to_char(l_amount_rec.value) );
603: arp_standard.debug( 'l_amount_rec.currency_code: ' || l_amount_rec.currency_code );
604:
605: arp_standard.debug( 'Calling get_auth for pmt_trxn_extn_id ');
606: END IF;
607:
608: IBY_FNDCPT_TRXN_PUB.Create_Authorization(
609: p_api_version => 1.0,

Line 627: arp_standard.debug('x_return_status :<' || l_return_status || '>');

623:
624: x_msg_count := l_msg_count;
625: x_msg_data := l_msg_data;
626:
627: arp_standard.debug('x_return_status :<' || l_return_status || '>');
628: arp_standard.debug('x_msg_count :<' || l_msg_count || '>');
629:
630: FOR i IN 1..l_msg_count LOOP
631: arp_standard.debug('x_msg #' || TO_CHAR(i) || ' = <' ||

Line 628: arp_standard.debug('x_msg_count :<' || l_msg_count || '>');

624: x_msg_count := l_msg_count;
625: x_msg_data := l_msg_data;
626:
627: arp_standard.debug('x_return_status :<' || l_return_status || '>');
628: arp_standard.debug('x_msg_count :<' || l_msg_count || '>');
629:
630: FOR i IN 1..l_msg_count LOOP
631: arp_standard.debug('x_msg #' || TO_CHAR(i) || ' = <' ||
632: SUBSTR(fnd_msg_pub.get(p_msg_index => i,p_encoded => FND_API.G_FALSE),1,150) || '>');

Line 631: arp_standard.debug('x_msg #' || TO_CHAR(i) || ' = <' ||

627: arp_standard.debug('x_return_status :<' || l_return_status || '>');
628: arp_standard.debug('x_msg_count :<' || l_msg_count || '>');
629:
630: FOR i IN 1..l_msg_count LOOP
631: arp_standard.debug('x_msg #' || TO_CHAR(i) || ' = <' ||
632: SUBSTR(fnd_msg_pub.get(p_msg_index => i,p_encoded => FND_API.G_FALSE),1,150) || '>');
633: END LOOP;
634:
635: IF PG_DEBUG in ('Y', 'C') THEN

Line 636: arp_standard.debug( '-------------------------------------');

632: SUBSTR(fnd_msg_pub.get(p_msg_index => i,p_encoded => FND_API.G_FALSE),1,150) || '>');
633: END LOOP;
634:
635: IF PG_DEBUG in ('Y', 'C') THEN
636: arp_standard.debug( '-------------------------------------');
637: arp_standard.debug( 'l_response_rec.Result_Code: ' || l_response_rec.Result_Code);
638: arp_standard.debug( 'l_response_rec.Result_Category: ' || l_response_rec.Result_Category);
639: arp_standard.debug( 'l_response_rec.Result_message : ' || l_response_rec.Result_message );
640: arp_standard.debug( 'l_authresult_rec.Auth_Id: ' || l_authresult_rec.Auth_Id);

Line 637: arp_standard.debug( 'l_response_rec.Result_Code: ' || l_response_rec.Result_Code);

633: END LOOP;
634:
635: IF PG_DEBUG in ('Y', 'C') THEN
636: arp_standard.debug( '-------------------------------------');
637: arp_standard.debug( 'l_response_rec.Result_Code: ' || l_response_rec.Result_Code);
638: arp_standard.debug( 'l_response_rec.Result_Category: ' || l_response_rec.Result_Category);
639: arp_standard.debug( 'l_response_rec.Result_message : ' || l_response_rec.Result_message );
640: arp_standard.debug( 'l_authresult_rec.Auth_Id: ' || l_authresult_rec.Auth_Id);
641: arp_standard.debug( 'l_authresult_rec.Auth_Date: ' || l_authresult_rec.Auth_Date);

Line 638: arp_standard.debug( 'l_response_rec.Result_Category: ' || l_response_rec.Result_Category);

634:
635: IF PG_DEBUG in ('Y', 'C') THEN
636: arp_standard.debug( '-------------------------------------');
637: arp_standard.debug( 'l_response_rec.Result_Code: ' || l_response_rec.Result_Code);
638: arp_standard.debug( 'l_response_rec.Result_Category: ' || l_response_rec.Result_Category);
639: arp_standard.debug( 'l_response_rec.Result_message : ' || l_response_rec.Result_message );
640: arp_standard.debug( 'l_authresult_rec.Auth_Id: ' || l_authresult_rec.Auth_Id);
641: arp_standard.debug( 'l_authresult_rec.Auth_Date: ' || l_authresult_rec.Auth_Date);
642: arp_standard.debug( 'l_authresult_rec.Auth_Code: ' || l_authresult_rec.Auth_Code);

Line 639: arp_standard.debug( 'l_response_rec.Result_message : ' || l_response_rec.Result_message );

635: IF PG_DEBUG in ('Y', 'C') THEN
636: arp_standard.debug( '-------------------------------------');
637: arp_standard.debug( 'l_response_rec.Result_Code: ' || l_response_rec.Result_Code);
638: arp_standard.debug( 'l_response_rec.Result_Category: ' || l_response_rec.Result_Category);
639: arp_standard.debug( 'l_response_rec.Result_message : ' || l_response_rec.Result_message );
640: arp_standard.debug( 'l_authresult_rec.Auth_Id: ' || l_authresult_rec.Auth_Id);
641: arp_standard.debug( 'l_authresult_rec.Auth_Date: ' || l_authresult_rec.Auth_Date);
642: arp_standard.debug( 'l_authresult_rec.Auth_Code: ' || l_authresult_rec.Auth_Code);
643: arp_standard.debug( 'l_authresult_rec.AVS_Code: ' || l_authresult_rec.AVS_Code);

Line 640: arp_standard.debug( 'l_authresult_rec.Auth_Id: ' || l_authresult_rec.Auth_Id);

636: arp_standard.debug( '-------------------------------------');
637: arp_standard.debug( 'l_response_rec.Result_Code: ' || l_response_rec.Result_Code);
638: arp_standard.debug( 'l_response_rec.Result_Category: ' || l_response_rec.Result_Category);
639: arp_standard.debug( 'l_response_rec.Result_message : ' || l_response_rec.Result_message );
640: arp_standard.debug( 'l_authresult_rec.Auth_Id: ' || l_authresult_rec.Auth_Id);
641: arp_standard.debug( 'l_authresult_rec.Auth_Date: ' || l_authresult_rec.Auth_Date);
642: arp_standard.debug( 'l_authresult_rec.Auth_Code: ' || l_authresult_rec.Auth_Code);
643: arp_standard.debug( 'l_authresult_rec.AVS_Code: ' || l_authresult_rec.AVS_Code);
644: arp_standard.debug( 'l_authresult_rec.Instr_SecCode_Check:'|| l_authresult_rec.Instr_SecCode_Check);

Line 641: arp_standard.debug( 'l_authresult_rec.Auth_Date: ' || l_authresult_rec.Auth_Date);

637: arp_standard.debug( 'l_response_rec.Result_Code: ' || l_response_rec.Result_Code);
638: arp_standard.debug( 'l_response_rec.Result_Category: ' || l_response_rec.Result_Category);
639: arp_standard.debug( 'l_response_rec.Result_message : ' || l_response_rec.Result_message );
640: arp_standard.debug( 'l_authresult_rec.Auth_Id: ' || l_authresult_rec.Auth_Id);
641: arp_standard.debug( 'l_authresult_rec.Auth_Date: ' || l_authresult_rec.Auth_Date);
642: arp_standard.debug( 'l_authresult_rec.Auth_Code: ' || l_authresult_rec.Auth_Code);
643: arp_standard.debug( 'l_authresult_rec.AVS_Code: ' || l_authresult_rec.AVS_Code);
644: arp_standard.debug( 'l_authresult_rec.Instr_SecCode_Check:'|| l_authresult_rec.Instr_SecCode_Check);
645: arp_standard.debug( 'l_authresult_rec.PaymentSys_Code: ' || l_authresult_rec.PaymentSys_Code);

Line 642: arp_standard.debug( 'l_authresult_rec.Auth_Code: ' || l_authresult_rec.Auth_Code);

638: arp_standard.debug( 'l_response_rec.Result_Category: ' || l_response_rec.Result_Category);
639: arp_standard.debug( 'l_response_rec.Result_message : ' || l_response_rec.Result_message );
640: arp_standard.debug( 'l_authresult_rec.Auth_Id: ' || l_authresult_rec.Auth_Id);
641: arp_standard.debug( 'l_authresult_rec.Auth_Date: ' || l_authresult_rec.Auth_Date);
642: arp_standard.debug( 'l_authresult_rec.Auth_Code: ' || l_authresult_rec.Auth_Code);
643: arp_standard.debug( 'l_authresult_rec.AVS_Code: ' || l_authresult_rec.AVS_Code);
644: arp_standard.debug( 'l_authresult_rec.Instr_SecCode_Check:'|| l_authresult_rec.Instr_SecCode_Check);
645: arp_standard.debug( 'l_authresult_rec.PaymentSys_Code: ' || l_authresult_rec.PaymentSys_Code);
646: arp_standard.debug( 'l_authresult_rec.PaymentSys_Msg: ' || l_authresult_rec.PaymentSys_Msg);

Line 643: arp_standard.debug( 'l_authresult_rec.AVS_Code: ' || l_authresult_rec.AVS_Code);

639: arp_standard.debug( 'l_response_rec.Result_message : ' || l_response_rec.Result_message );
640: arp_standard.debug( 'l_authresult_rec.Auth_Id: ' || l_authresult_rec.Auth_Id);
641: arp_standard.debug( 'l_authresult_rec.Auth_Date: ' || l_authresult_rec.Auth_Date);
642: arp_standard.debug( 'l_authresult_rec.Auth_Code: ' || l_authresult_rec.Auth_Code);
643: arp_standard.debug( 'l_authresult_rec.AVS_Code: ' || l_authresult_rec.AVS_Code);
644: arp_standard.debug( 'l_authresult_rec.Instr_SecCode_Check:'|| l_authresult_rec.Instr_SecCode_Check);
645: arp_standard.debug( 'l_authresult_rec.PaymentSys_Code: ' || l_authresult_rec.PaymentSys_Code);
646: arp_standard.debug( 'l_authresult_rec.PaymentSys_Msg: ' || l_authresult_rec.PaymentSys_Msg);
647: -- arp_standard.debug( 'l_authresult_rec.Risk_Result: ' || l_authresult_rec.Risk_Result);

Line 644: arp_standard.debug( 'l_authresult_rec.Instr_SecCode_Check:'|| l_authresult_rec.Instr_SecCode_Check);

640: arp_standard.debug( 'l_authresult_rec.Auth_Id: ' || l_authresult_rec.Auth_Id);
641: arp_standard.debug( 'l_authresult_rec.Auth_Date: ' || l_authresult_rec.Auth_Date);
642: arp_standard.debug( 'l_authresult_rec.Auth_Code: ' || l_authresult_rec.Auth_Code);
643: arp_standard.debug( 'l_authresult_rec.AVS_Code: ' || l_authresult_rec.AVS_Code);
644: arp_standard.debug( 'l_authresult_rec.Instr_SecCode_Check:'|| l_authresult_rec.Instr_SecCode_Check);
645: arp_standard.debug( 'l_authresult_rec.PaymentSys_Code: ' || l_authresult_rec.PaymentSys_Code);
646: arp_standard.debug( 'l_authresult_rec.PaymentSys_Msg: ' || l_authresult_rec.PaymentSys_Msg);
647: -- arp_standard.debug( 'l_authresult_rec.Risk_Result: ' || l_authresult_rec.Risk_Result);
648:

Line 645: arp_standard.debug( 'l_authresult_rec.PaymentSys_Code: ' || l_authresult_rec.PaymentSys_Code);

641: arp_standard.debug( 'l_authresult_rec.Auth_Date: ' || l_authresult_rec.Auth_Date);
642: arp_standard.debug( 'l_authresult_rec.Auth_Code: ' || l_authresult_rec.Auth_Code);
643: arp_standard.debug( 'l_authresult_rec.AVS_Code: ' || l_authresult_rec.AVS_Code);
644: arp_standard.debug( 'l_authresult_rec.Instr_SecCode_Check:'|| l_authresult_rec.Instr_SecCode_Check);
645: arp_standard.debug( 'l_authresult_rec.PaymentSys_Code: ' || l_authresult_rec.PaymentSys_Code);
646: arp_standard.debug( 'l_authresult_rec.PaymentSys_Msg: ' || l_authresult_rec.PaymentSys_Msg);
647: -- arp_standard.debug( 'l_authresult_rec.Risk_Result: ' || l_authresult_rec.Risk_Result);
648:
649: END IF;

Line 646: arp_standard.debug( 'l_authresult_rec.PaymentSys_Msg: ' || l_authresult_rec.PaymentSys_Msg);

642: arp_standard.debug( 'l_authresult_rec.Auth_Code: ' || l_authresult_rec.Auth_Code);
643: arp_standard.debug( 'l_authresult_rec.AVS_Code: ' || l_authresult_rec.AVS_Code);
644: arp_standard.debug( 'l_authresult_rec.Instr_SecCode_Check:'|| l_authresult_rec.Instr_SecCode_Check);
645: arp_standard.debug( 'l_authresult_rec.PaymentSys_Code: ' || l_authresult_rec.PaymentSys_Code);
646: arp_standard.debug( 'l_authresult_rec.PaymentSys_Msg: ' || l_authresult_rec.PaymentSys_Msg);
647: -- arp_standard.debug( 'l_authresult_rec.Risk_Result: ' || l_authresult_rec.Risk_Result);
648:
649: END IF;
650:

Line 647: -- arp_standard.debug( 'l_authresult_rec.Risk_Result: ' || l_authresult_rec.Risk_Result);

643: arp_standard.debug( 'l_authresult_rec.AVS_Code: ' || l_authresult_rec.AVS_Code);
644: arp_standard.debug( 'l_authresult_rec.Instr_SecCode_Check:'|| l_authresult_rec.Instr_SecCode_Check);
645: arp_standard.debug( 'l_authresult_rec.PaymentSys_Code: ' || l_authresult_rec.PaymentSys_Code);
646: arp_standard.debug( 'l_authresult_rec.PaymentSys_Msg: ' || l_authresult_rec.PaymentSys_Msg);
647: -- arp_standard.debug( 'l_authresult_rec.Risk_Result: ' || l_authresult_rec.Risk_Result);
648:
649: END IF;
650:
651: IF (l_return_status = FND_API.G_RET_STS_SUCCESS) THEN

Line 660: arp_standard.debug('CR rec updated with auth_id and auth code ');

656:
657: ARP_CASH_RECEIPTS_PKG.update_p(l_cr_rec, l_cash_receipt_id);
658:
659: IF PG_DEBUG in ('Y', 'C') THEN
660: arp_standard.debug('CR rec updated with auth_id and auth code ');
661: END IF;
662:
663: END IF;
664:

Line 671: arp_standard.debug( 'l_MSG_COUNT=>'||to_char(l_MSG_COUNT));

667: --if not pass the message stack received from iPayment
668:
669: IF (NVL(p_called_from,'NONE') = 'IREC') THEN
670: IF PG_DEBUG in ('Y', 'C') THEN
671: arp_standard.debug( 'l_MSG_COUNT=>'||to_char(l_MSG_COUNT));
672: END IF;
673: fnd_msg_pub.dump_list;
674: IF PG_DEBUG in ('Y', 'C') THEN
675: arp_standard.debug( 'Errors: ');

Line 675: arp_standard.debug( 'Errors: ');

671: arp_standard.debug( 'l_MSG_COUNT=>'||to_char(l_MSG_COUNT));
672: END IF;
673: fnd_msg_pub.dump_list;
674: IF PG_DEBUG in ('Y', 'C') THEN
675: arp_standard.debug( 'Errors: ');
676: END IF;
677: IF(l_MSG_COUNT=1) THEN
678: IF PG_DEBUG in ('Y', 'C') THEN
679: arp_standard.debug( l_MSG_DATA);

Line 679: arp_standard.debug( l_MSG_DATA);

675: arp_standard.debug( 'Errors: ');
676: END IF;
677: IF(l_MSG_COUNT=1) THEN
678: IF PG_DEBUG in ('Y', 'C') THEN
679: arp_standard.debug( l_MSG_DATA);
680: END IF;
681: ELSIF(l_MSG_COUNT>1)THEN
682: LOOP
683: l_MSG_DATA:=FND_MSG_PUB.GET(p_encoded=>FND_API.G_FALSE);

Line 688: arp_standard.debug( l_MSG_DATA);

684: IF (l_MSG_DATA IS NULL)THEN
685: EXIT;
686: END IF;
687: IF PG_DEBUG in ('Y', 'C') THEN
688: arp_standard.debug( l_MSG_DATA);
689: END IF;
690: END LOOP;
691: END IF;
692: END IF;

Line 706: arp_standard.debug('create_cash_126');

702:
703: ELSIF (l_return_status <> FND_API.G_RET_STS_SUCCESS) THEN
704:
705: ROLLBACK TO Create_Prepayment_Pvt;
706: arp_standard.debug('create_cash_126');
707: FND_MESSAGE.set_name('AR', 'AR_CC_AUTH_FAILED');
708: FND_MSG_PUB.Add;
709:
710: IF l_response_rec.Result_Code is NOT NULL THEN

Line 717: arp_standard.debug( 'l_iby_msg_data: ' || l_iby_msg_data);

713:
714: l_iby_msg_data := substrb( l_response_rec.Result_Code || ': '||
715: l_response_rec.Result_Message , 1, 240);
716:
717: arp_standard.debug( 'l_iby_msg_data: ' || l_iby_msg_data);
718: FND_MESSAGE.SET_NAME ('AR','GENERIC_MESSAGE');
719: FND_MESSAGE.SET_TOKEN('GENERIC_TEXT',l_iby_msg_data);
720:
721: FND_MSG_PUB.Add;

Line 834: arp_standard.debug('Create_Prepayment: ' || 'Checking p_call_payment_processor: ' || p_call_payment_processor);

830: )
831: THEN
832:
833: IF PG_DEBUG in ('Y', 'C') THEN
834: arp_standard.debug('Create_Prepayment: ' || 'Checking p_call_payment_processor: ' || p_call_payment_processor);
835: END IF;
836: /* if (p_call_payment_processor = FND_API.G_TRUE) then
837:
838: Process_Credit_Card(