DBA Data[Home] [Help]

APPS.AR_PREPAYMENTS_PUB dependencies on STANDARD

Line 56: -- Standard API parameters.

52: | NULL is passed
53: | 09-DEC-2003 J Pandey Bug3230122 forward port of 3220078
54: *=======================================================================*/
55: PROCEDURE Create_Prepayment(
56: -- Standard API parameters.
57: p_api_version IN NUMBER,
58: p_init_msg_list IN VARCHAR2 := FND_API.G_FALSE,
59: p_commit IN VARCHAR2 := FND_API.G_FALSE,
60: p_validation_level IN NUMBER := FND_API.G_VALID_LEVEL_FULL,

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

222:
223:
224: BEGIN
225: IF PG_DEBUG in ('Y', 'C') THEN
226: arp_standard.debug('ar_prepayments_pub.Create_Prepayment ()+'|| p_org_id);
227: arp_util.debug('Create_Prepayment: payment_trxn_extension_id' || to_char(p_payment_trxn_extension_id) );
228: arp_util.debug('Create_Prepayment receipt method id' || to_char(p_receipt_method_id) );
229: END IF;
230:

Line 235: | Standard start of API savepoint |

231: -- first reinitialize ARP_GLOBAL
232: arp_global.init_global;
233:
234: /*------------------------------------+
235: | Standard start of API savepoint |
236: +------------------------------------*/
237: SAVEPOINT Create_Prepayment_PVT;
238:
239: /*-----------------------------------------+

Line 246: | Standard call to check for call compatibility |

242:
243: x_return_status := FND_API.G_RET_STS_SUCCESS;
244:
245: /*--------------------------------------------------+
246: | Standard call to check for call compatibility |
247: +--------------------------------------------------*/
248:
249: IF NOT FND_API.Compatible_API_Call(
250: l_api_version,

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

466: IF PG_DEBUG in ('Y', 'C') THEN
467: arp_util.debug('Process_Credit_Card: ' || 'COPY the trx_extension_id');
468: END IF;
469: IF PG_DEBUG in ('Y', 'C') THEN
470: arp_standard.debug( 'Entering payment processing...');
471: END IF;
472:
473:
474: OPEN rct_info_cur;

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

500:
501: -- set up auth_attribs record:
502: l_auth_attribs_rec.RiskEval_Enable_Flag := 'N';
503: -- set up trxn_attribs record:
504: l_trxn_attribs_rec.Originating_Application_Id := arp_standard.application_id;
505: l_trxn_attribs_rec.order_id := rct_info.receipt_number;
506: l_trxn_attribs_rec.Trxn_Ref_Number1 := 'RECEIPT';
507: l_trxn_attribs_rec.Trxn_Ref_Number2 := l_cash_receipt_id;
508:

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

511: l_amount_rec.value := rct_info.amount;
512: l_amount_rec.currency_code := rct_info.currency_code;
513:
514: IF PG_DEBUG in ('Y', 'C') THEN
515: arp_standard.debug( 'check and then call Auth');
516: END IF;
517:
518: -- determine whether to AUTHORIZE
519:

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

521:
522: l_trxn_entity_id := rct_info.payment_trxn_extension_id;
523:
524: IF PG_DEBUG in ('Y', 'C') THEN
525: arp_standard.debug( 'Calling get auth for pmt_trxn_extn_id ');
526: arp_standard.debug( 'l_trxn_entity_id ' || to_char(l_trxn_entity_id ) );
527:
528: END IF;
529:

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

522: l_trxn_entity_id := rct_info.payment_trxn_extension_id;
523:
524: IF PG_DEBUG in ('Y', 'C') THEN
525: arp_standard.debug( 'Calling get auth for pmt_trxn_extn_id ');
526: arp_standard.debug( 'l_trxn_entity_id ' || to_char(l_trxn_entity_id ) );
527:
528: END IF;
529:
530: Begin

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

548: when others then
549: l_auth_flag := 'N';
550: End;
551:
552: arp_standard.debug ( 'the value of auth_flag is = ' || l_auth_flag);
553:
554: If l_auth_flag = 'Y' then
555:
556: select AUTHORIZATION_ID

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

557: into l_auth_id
558: from IBY_TRXN_EXT_AUTHS_V
559: where TRXN_EXTENSION_ID = p_payment_trxn_extension_id;
560:
561: arp_standard.debug ( 'the value of auth_id is = ' || l_auth_id);
562:
563: ARP_CASH_RECEIPTS_PKG.set_to_dummy(l_cr_rec);
564:
565: l_cr_rec.approval_code := 'AR'||to_char(l_auth_Id);

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

565: l_cr_rec.approval_code := 'AR'||to_char(l_auth_Id);
566:
567: ARP_CASH_RECEIPTS_PKG.update_p(l_cr_rec, l_cash_receipt_id);
568:
569: arp_standard.debug('CR rec updated with auth_id and auth code ');
570: end if;
571:
572:
573:

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

572:
573:
574:
575: IF l_auth_flag <> 'Y' then
576: arp_standard.debug('auth needs to called');
577:
578: IF PG_DEBUG in ('Y', 'C') THEN
579: arp_standard.debug( 'Calling get auth for pmt_trxn_extn_id ');
580: arp_standard.debug( ' l_payee_rec.org_id ' || to_char(l_payee_rec.org_id) );

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

575: IF l_auth_flag <> 'Y' then
576: arp_standard.debug('auth needs to called');
577:
578: IF PG_DEBUG in ('Y', 'C') THEN
579: arp_standard.debug( 'Calling get auth for pmt_trxn_extn_id ');
580: arp_standard.debug( ' l_payee_rec.org_id ' || to_char(l_payee_rec.org_id) );
581: arp_standard.debug( ' l_payee_rec.org_type ' || to_char( l_payee_rec.org_type) );
582: arp_standard.debug( ' l_payer_rec.Payment_Function ' || to_char( l_payer_rec.Payment_Function) );
583: arp_standard.debug( ' l_payer_rec.Party_Id ' || to_char( l_payer_rec.Party_Id) );

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

576: arp_standard.debug('auth needs to called');
577:
578: IF PG_DEBUG in ('Y', 'C') THEN
579: arp_standard.debug( 'Calling get auth for pmt_trxn_extn_id ');
580: arp_standard.debug( ' l_payee_rec.org_id ' || to_char(l_payee_rec.org_id) );
581: arp_standard.debug( ' l_payee_rec.org_type ' || to_char( l_payee_rec.org_type) );
582: arp_standard.debug( ' l_payer_rec.Payment_Function ' || to_char( l_payer_rec.Payment_Function) );
583: arp_standard.debug( ' l_payer_rec.Party_Id ' || to_char( l_payer_rec.Party_Id) );
584: arp_standard.debug( ' l_payer_rec.org_id ' || to_char(l_payer_rec.org_id) );

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

577:
578: IF PG_DEBUG in ('Y', 'C') THEN
579: arp_standard.debug( 'Calling get auth for pmt_trxn_extn_id ');
580: arp_standard.debug( ' l_payee_rec.org_id ' || to_char(l_payee_rec.org_id) );
581: arp_standard.debug( ' l_payee_rec.org_type ' || to_char( l_payee_rec.org_type) );
582: arp_standard.debug( ' l_payer_rec.Payment_Function ' || to_char( l_payer_rec.Payment_Function) );
583: arp_standard.debug( ' l_payer_rec.Party_Id ' || to_char( l_payer_rec.Party_Id) );
584: arp_standard.debug( ' l_payer_rec.org_id ' || to_char(l_payer_rec.org_id) );
585: arp_standard.debug( ' l_payer_rec.org_type ' || to_char( l_payer_rec.org_type) );

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

578: IF PG_DEBUG in ('Y', 'C') THEN
579: arp_standard.debug( 'Calling get auth for pmt_trxn_extn_id ');
580: arp_standard.debug( ' l_payee_rec.org_id ' || to_char(l_payee_rec.org_id) );
581: arp_standard.debug( ' l_payee_rec.org_type ' || to_char( l_payee_rec.org_type) );
582: arp_standard.debug( ' l_payer_rec.Payment_Function ' || to_char( l_payer_rec.Payment_Function) );
583: arp_standard.debug( ' l_payer_rec.Party_Id ' || to_char( l_payer_rec.Party_Id) );
584: arp_standard.debug( ' l_payer_rec.org_id ' || to_char(l_payer_rec.org_id) );
585: arp_standard.debug( ' l_payer_rec.org_type ' || to_char( l_payer_rec.org_type) );
586: arp_standard.debug( 'l_payer_rec.Cust_Account_Id ' || to_char(l_payer_rec.Cust_Account_Id) );

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

579: arp_standard.debug( 'Calling get auth for pmt_trxn_extn_id ');
580: arp_standard.debug( ' l_payee_rec.org_id ' || to_char(l_payee_rec.org_id) );
581: arp_standard.debug( ' l_payee_rec.org_type ' || to_char( l_payee_rec.org_type) );
582: arp_standard.debug( ' l_payer_rec.Payment_Function ' || to_char( l_payer_rec.Payment_Function) );
583: arp_standard.debug( ' l_payer_rec.Party_Id ' || to_char( l_payer_rec.Party_Id) );
584: arp_standard.debug( ' l_payer_rec.org_id ' || to_char(l_payer_rec.org_id) );
585: arp_standard.debug( ' l_payer_rec.org_type ' || to_char( l_payer_rec.org_type) );
586: arp_standard.debug( 'l_payer_rec.Cust_Account_Id ' || to_char(l_payer_rec.Cust_Account_Id) );
587: arp_standard.debug( 'l_payer_rec.Account_Site_Id ' || to_char(l_payer_rec.Account_Site_Id) );

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

580: arp_standard.debug( ' l_payee_rec.org_id ' || to_char(l_payee_rec.org_id) );
581: arp_standard.debug( ' l_payee_rec.org_type ' || to_char( l_payee_rec.org_type) );
582: arp_standard.debug( ' l_payer_rec.Payment_Function ' || to_char( l_payer_rec.Payment_Function) );
583: arp_standard.debug( ' l_payer_rec.Party_Id ' || to_char( l_payer_rec.Party_Id) );
584: arp_standard.debug( ' l_payer_rec.org_id ' || to_char(l_payer_rec.org_id) );
585: arp_standard.debug( ' l_payer_rec.org_type ' || to_char( l_payer_rec.org_type) );
586: arp_standard.debug( 'l_payer_rec.Cust_Account_Id ' || to_char(l_payer_rec.Cust_Account_Id) );
587: arp_standard.debug( 'l_payer_rec.Account_Site_Id ' || to_char(l_payer_rec.Account_Site_Id) );
588: arp_standard.debug( 'l_trxn_entity_id ' || to_char(l_trxn_entity_id ) );

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

581: arp_standard.debug( ' l_payee_rec.org_type ' || to_char( l_payee_rec.org_type) );
582: arp_standard.debug( ' l_payer_rec.Payment_Function ' || to_char( l_payer_rec.Payment_Function) );
583: arp_standard.debug( ' l_payer_rec.Party_Id ' || to_char( l_payer_rec.Party_Id) );
584: arp_standard.debug( ' l_payer_rec.org_id ' || to_char(l_payer_rec.org_id) );
585: arp_standard.debug( ' l_payer_rec.org_type ' || to_char( l_payer_rec.org_type) );
586: arp_standard.debug( 'l_payer_rec.Cust_Account_Id ' || to_char(l_payer_rec.Cust_Account_Id) );
587: arp_standard.debug( 'l_payer_rec.Account_Site_Id ' || to_char(l_payer_rec.Account_Site_Id) );
588: arp_standard.debug( 'l_trxn_entity_id ' || to_char(l_trxn_entity_id ) );
589: arp_standard.debug( 'l_amount_rec.value: ' || to_char(l_amount_rec.value) );

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

582: arp_standard.debug( ' l_payer_rec.Payment_Function ' || to_char( l_payer_rec.Payment_Function) );
583: arp_standard.debug( ' l_payer_rec.Party_Id ' || to_char( l_payer_rec.Party_Id) );
584: arp_standard.debug( ' l_payer_rec.org_id ' || to_char(l_payer_rec.org_id) );
585: arp_standard.debug( ' l_payer_rec.org_type ' || to_char( l_payer_rec.org_type) );
586: arp_standard.debug( 'l_payer_rec.Cust_Account_Id ' || to_char(l_payer_rec.Cust_Account_Id) );
587: arp_standard.debug( 'l_payer_rec.Account_Site_Id ' || to_char(l_payer_rec.Account_Site_Id) );
588: arp_standard.debug( 'l_trxn_entity_id ' || to_char(l_trxn_entity_id ) );
589: arp_standard.debug( 'l_amount_rec.value: ' || to_char(l_amount_rec.value) );
590: arp_standard.debug( 'l_amount_rec.currency_code: ' || l_amount_rec.currency_code );

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

583: arp_standard.debug( ' l_payer_rec.Party_Id ' || to_char( l_payer_rec.Party_Id) );
584: arp_standard.debug( ' l_payer_rec.org_id ' || to_char(l_payer_rec.org_id) );
585: arp_standard.debug( ' l_payer_rec.org_type ' || to_char( l_payer_rec.org_type) );
586: arp_standard.debug( 'l_payer_rec.Cust_Account_Id ' || to_char(l_payer_rec.Cust_Account_Id) );
587: arp_standard.debug( 'l_payer_rec.Account_Site_Id ' || to_char(l_payer_rec.Account_Site_Id) );
588: arp_standard.debug( 'l_trxn_entity_id ' || to_char(l_trxn_entity_id ) );
589: arp_standard.debug( 'l_amount_rec.value: ' || to_char(l_amount_rec.value) );
590: arp_standard.debug( 'l_amount_rec.currency_code: ' || l_amount_rec.currency_code );
591:

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

584: arp_standard.debug( ' l_payer_rec.org_id ' || to_char(l_payer_rec.org_id) );
585: arp_standard.debug( ' l_payer_rec.org_type ' || to_char( l_payer_rec.org_type) );
586: arp_standard.debug( 'l_payer_rec.Cust_Account_Id ' || to_char(l_payer_rec.Cust_Account_Id) );
587: arp_standard.debug( 'l_payer_rec.Account_Site_Id ' || to_char(l_payer_rec.Account_Site_Id) );
588: arp_standard.debug( 'l_trxn_entity_id ' || to_char(l_trxn_entity_id ) );
589: arp_standard.debug( 'l_amount_rec.value: ' || to_char(l_amount_rec.value) );
590: arp_standard.debug( 'l_amount_rec.currency_code: ' || l_amount_rec.currency_code );
591:
592: arp_standard.debug( 'Calling get_auth for pmt_trxn_extn_id ');

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

585: arp_standard.debug( ' l_payer_rec.org_type ' || to_char( l_payer_rec.org_type) );
586: arp_standard.debug( 'l_payer_rec.Cust_Account_Id ' || to_char(l_payer_rec.Cust_Account_Id) );
587: arp_standard.debug( 'l_payer_rec.Account_Site_Id ' || to_char(l_payer_rec.Account_Site_Id) );
588: arp_standard.debug( 'l_trxn_entity_id ' || to_char(l_trxn_entity_id ) );
589: arp_standard.debug( 'l_amount_rec.value: ' || to_char(l_amount_rec.value) );
590: arp_standard.debug( 'l_amount_rec.currency_code: ' || l_amount_rec.currency_code );
591:
592: arp_standard.debug( 'Calling get_auth for pmt_trxn_extn_id ');
593: END IF;

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

586: arp_standard.debug( 'l_payer_rec.Cust_Account_Id ' || to_char(l_payer_rec.Cust_Account_Id) );
587: arp_standard.debug( 'l_payer_rec.Account_Site_Id ' || to_char(l_payer_rec.Account_Site_Id) );
588: arp_standard.debug( 'l_trxn_entity_id ' || to_char(l_trxn_entity_id ) );
589: arp_standard.debug( 'l_amount_rec.value: ' || to_char(l_amount_rec.value) );
590: arp_standard.debug( 'l_amount_rec.currency_code: ' || l_amount_rec.currency_code );
591:
592: arp_standard.debug( 'Calling get_auth for pmt_trxn_extn_id ');
593: END IF;
594:

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

588: arp_standard.debug( 'l_trxn_entity_id ' || to_char(l_trxn_entity_id ) );
589: arp_standard.debug( 'l_amount_rec.value: ' || to_char(l_amount_rec.value) );
590: arp_standard.debug( 'l_amount_rec.currency_code: ' || l_amount_rec.currency_code );
591:
592: arp_standard.debug( 'Calling get_auth for pmt_trxn_extn_id ');
593: END IF;
594:
595: IBY_FNDCPT_TRXN_PUB.Create_Authorization(
596: p_api_version => 1.0,

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

610:
611: x_msg_count := l_msg_count;
612: x_msg_data := l_msg_data;
613:
614: arp_standard.debug('x_return_status :<' || l_return_status || '>');
615: arp_standard.debug('x_msg_count :<' || l_msg_count || '>');
616:
617: FOR i IN 1..l_msg_count LOOP
618: arp_standard.debug('x_msg #' || TO_CHAR(i) || ' = <' ||

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

611: x_msg_count := l_msg_count;
612: x_msg_data := l_msg_data;
613:
614: arp_standard.debug('x_return_status :<' || l_return_status || '>');
615: arp_standard.debug('x_msg_count :<' || l_msg_count || '>');
616:
617: FOR i IN 1..l_msg_count LOOP
618: arp_standard.debug('x_msg #' || TO_CHAR(i) || ' = <' ||
619: SUBSTR(fnd_msg_pub.get(p_msg_index => i,p_encoded => FND_API.G_FALSE),1,150) || '>');

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

614: arp_standard.debug('x_return_status :<' || l_return_status || '>');
615: arp_standard.debug('x_msg_count :<' || l_msg_count || '>');
616:
617: FOR i IN 1..l_msg_count LOOP
618: arp_standard.debug('x_msg #' || TO_CHAR(i) || ' = <' ||
619: SUBSTR(fnd_msg_pub.get(p_msg_index => i,p_encoded => FND_API.G_FALSE),1,150) || '>');
620: END LOOP;
621:
622: IF PG_DEBUG in ('Y', 'C') THEN

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

619: SUBSTR(fnd_msg_pub.get(p_msg_index => i,p_encoded => FND_API.G_FALSE),1,150) || '>');
620: END LOOP;
621:
622: IF PG_DEBUG in ('Y', 'C') THEN
623: arp_standard.debug( '-------------------------------------');
624: arp_standard.debug( 'l_response_rec.Result_Code: ' || l_response_rec.Result_Code);
625: arp_standard.debug( 'l_response_rec.Result_Category: ' || l_response_rec.Result_Category);
626: arp_standard.debug( 'l_response_rec.Result_message : ' || l_response_rec.Result_message );
627: arp_standard.debug( 'l_authresult_rec.Auth_Id: ' || l_authresult_rec.Auth_Id);

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

620: END LOOP;
621:
622: IF PG_DEBUG in ('Y', 'C') THEN
623: arp_standard.debug( '-------------------------------------');
624: arp_standard.debug( 'l_response_rec.Result_Code: ' || l_response_rec.Result_Code);
625: arp_standard.debug( 'l_response_rec.Result_Category: ' || l_response_rec.Result_Category);
626: arp_standard.debug( 'l_response_rec.Result_message : ' || l_response_rec.Result_message );
627: arp_standard.debug( 'l_authresult_rec.Auth_Id: ' || l_authresult_rec.Auth_Id);
628: arp_standard.debug( 'l_authresult_rec.Auth_Date: ' || l_authresult_rec.Auth_Date);

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

621:
622: IF PG_DEBUG in ('Y', 'C') THEN
623: arp_standard.debug( '-------------------------------------');
624: arp_standard.debug( 'l_response_rec.Result_Code: ' || l_response_rec.Result_Code);
625: arp_standard.debug( 'l_response_rec.Result_Category: ' || l_response_rec.Result_Category);
626: arp_standard.debug( 'l_response_rec.Result_message : ' || l_response_rec.Result_message );
627: arp_standard.debug( 'l_authresult_rec.Auth_Id: ' || l_authresult_rec.Auth_Id);
628: arp_standard.debug( 'l_authresult_rec.Auth_Date: ' || l_authresult_rec.Auth_Date);
629: arp_standard.debug( 'l_authresult_rec.Auth_Code: ' || l_authresult_rec.Auth_Code);

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

622: IF PG_DEBUG in ('Y', 'C') THEN
623: arp_standard.debug( '-------------------------------------');
624: arp_standard.debug( 'l_response_rec.Result_Code: ' || l_response_rec.Result_Code);
625: arp_standard.debug( 'l_response_rec.Result_Category: ' || l_response_rec.Result_Category);
626: arp_standard.debug( 'l_response_rec.Result_message : ' || l_response_rec.Result_message );
627: arp_standard.debug( 'l_authresult_rec.Auth_Id: ' || l_authresult_rec.Auth_Id);
628: arp_standard.debug( 'l_authresult_rec.Auth_Date: ' || l_authresult_rec.Auth_Date);
629: arp_standard.debug( 'l_authresult_rec.Auth_Code: ' || l_authresult_rec.Auth_Code);
630: arp_standard.debug( 'l_authresult_rec.AVS_Code: ' || l_authresult_rec.AVS_Code);

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

623: arp_standard.debug( '-------------------------------------');
624: arp_standard.debug( 'l_response_rec.Result_Code: ' || l_response_rec.Result_Code);
625: arp_standard.debug( 'l_response_rec.Result_Category: ' || l_response_rec.Result_Category);
626: arp_standard.debug( 'l_response_rec.Result_message : ' || l_response_rec.Result_message );
627: arp_standard.debug( 'l_authresult_rec.Auth_Id: ' || l_authresult_rec.Auth_Id);
628: arp_standard.debug( 'l_authresult_rec.Auth_Date: ' || l_authresult_rec.Auth_Date);
629: arp_standard.debug( 'l_authresult_rec.Auth_Code: ' || l_authresult_rec.Auth_Code);
630: arp_standard.debug( 'l_authresult_rec.AVS_Code: ' || l_authresult_rec.AVS_Code);
631: arp_standard.debug( 'l_authresult_rec.Instr_SecCode_Check:'|| l_authresult_rec.Instr_SecCode_Check);

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

624: arp_standard.debug( 'l_response_rec.Result_Code: ' || l_response_rec.Result_Code);
625: arp_standard.debug( 'l_response_rec.Result_Category: ' || l_response_rec.Result_Category);
626: arp_standard.debug( 'l_response_rec.Result_message : ' || l_response_rec.Result_message );
627: arp_standard.debug( 'l_authresult_rec.Auth_Id: ' || l_authresult_rec.Auth_Id);
628: arp_standard.debug( 'l_authresult_rec.Auth_Date: ' || l_authresult_rec.Auth_Date);
629: arp_standard.debug( 'l_authresult_rec.Auth_Code: ' || l_authresult_rec.Auth_Code);
630: arp_standard.debug( 'l_authresult_rec.AVS_Code: ' || l_authresult_rec.AVS_Code);
631: arp_standard.debug( 'l_authresult_rec.Instr_SecCode_Check:'|| l_authresult_rec.Instr_SecCode_Check);
632: arp_standard.debug( 'l_authresult_rec.PaymentSys_Code: ' || l_authresult_rec.PaymentSys_Code);

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

625: arp_standard.debug( 'l_response_rec.Result_Category: ' || l_response_rec.Result_Category);
626: arp_standard.debug( 'l_response_rec.Result_message : ' || l_response_rec.Result_message );
627: arp_standard.debug( 'l_authresult_rec.Auth_Id: ' || l_authresult_rec.Auth_Id);
628: arp_standard.debug( 'l_authresult_rec.Auth_Date: ' || l_authresult_rec.Auth_Date);
629: arp_standard.debug( 'l_authresult_rec.Auth_Code: ' || l_authresult_rec.Auth_Code);
630: arp_standard.debug( 'l_authresult_rec.AVS_Code: ' || l_authresult_rec.AVS_Code);
631: arp_standard.debug( 'l_authresult_rec.Instr_SecCode_Check:'|| l_authresult_rec.Instr_SecCode_Check);
632: arp_standard.debug( 'l_authresult_rec.PaymentSys_Code: ' || l_authresult_rec.PaymentSys_Code);
633: arp_standard.debug( 'l_authresult_rec.PaymentSys_Msg: ' || l_authresult_rec.PaymentSys_Msg);

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

626: arp_standard.debug( 'l_response_rec.Result_message : ' || l_response_rec.Result_message );
627: arp_standard.debug( 'l_authresult_rec.Auth_Id: ' || l_authresult_rec.Auth_Id);
628: arp_standard.debug( 'l_authresult_rec.Auth_Date: ' || l_authresult_rec.Auth_Date);
629: arp_standard.debug( 'l_authresult_rec.Auth_Code: ' || l_authresult_rec.Auth_Code);
630: arp_standard.debug( 'l_authresult_rec.AVS_Code: ' || l_authresult_rec.AVS_Code);
631: arp_standard.debug( 'l_authresult_rec.Instr_SecCode_Check:'|| l_authresult_rec.Instr_SecCode_Check);
632: arp_standard.debug( 'l_authresult_rec.PaymentSys_Code: ' || l_authresult_rec.PaymentSys_Code);
633: arp_standard.debug( 'l_authresult_rec.PaymentSys_Msg: ' || l_authresult_rec.PaymentSys_Msg);
634: -- arp_standard.debug( 'l_authresult_rec.Risk_Result: ' || l_authresult_rec.Risk_Result);

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

627: arp_standard.debug( 'l_authresult_rec.Auth_Id: ' || l_authresult_rec.Auth_Id);
628: arp_standard.debug( 'l_authresult_rec.Auth_Date: ' || l_authresult_rec.Auth_Date);
629: arp_standard.debug( 'l_authresult_rec.Auth_Code: ' || l_authresult_rec.Auth_Code);
630: arp_standard.debug( 'l_authresult_rec.AVS_Code: ' || l_authresult_rec.AVS_Code);
631: arp_standard.debug( 'l_authresult_rec.Instr_SecCode_Check:'|| l_authresult_rec.Instr_SecCode_Check);
632: arp_standard.debug( 'l_authresult_rec.PaymentSys_Code: ' || l_authresult_rec.PaymentSys_Code);
633: arp_standard.debug( 'l_authresult_rec.PaymentSys_Msg: ' || l_authresult_rec.PaymentSys_Msg);
634: -- arp_standard.debug( 'l_authresult_rec.Risk_Result: ' || l_authresult_rec.Risk_Result);
635:

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

628: arp_standard.debug( 'l_authresult_rec.Auth_Date: ' || l_authresult_rec.Auth_Date);
629: arp_standard.debug( 'l_authresult_rec.Auth_Code: ' || l_authresult_rec.Auth_Code);
630: arp_standard.debug( 'l_authresult_rec.AVS_Code: ' || l_authresult_rec.AVS_Code);
631: arp_standard.debug( 'l_authresult_rec.Instr_SecCode_Check:'|| l_authresult_rec.Instr_SecCode_Check);
632: arp_standard.debug( 'l_authresult_rec.PaymentSys_Code: ' || l_authresult_rec.PaymentSys_Code);
633: arp_standard.debug( 'l_authresult_rec.PaymentSys_Msg: ' || l_authresult_rec.PaymentSys_Msg);
634: -- arp_standard.debug( 'l_authresult_rec.Risk_Result: ' || l_authresult_rec.Risk_Result);
635:
636: END IF;

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

629: arp_standard.debug( 'l_authresult_rec.Auth_Code: ' || l_authresult_rec.Auth_Code);
630: arp_standard.debug( 'l_authresult_rec.AVS_Code: ' || l_authresult_rec.AVS_Code);
631: arp_standard.debug( 'l_authresult_rec.Instr_SecCode_Check:'|| l_authresult_rec.Instr_SecCode_Check);
632: arp_standard.debug( 'l_authresult_rec.PaymentSys_Code: ' || l_authresult_rec.PaymentSys_Code);
633: arp_standard.debug( 'l_authresult_rec.PaymentSys_Msg: ' || l_authresult_rec.PaymentSys_Msg);
634: -- arp_standard.debug( 'l_authresult_rec.Risk_Result: ' || l_authresult_rec.Risk_Result);
635:
636: END IF;
637:

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

630: arp_standard.debug( 'l_authresult_rec.AVS_Code: ' || l_authresult_rec.AVS_Code);
631: arp_standard.debug( 'l_authresult_rec.Instr_SecCode_Check:'|| l_authresult_rec.Instr_SecCode_Check);
632: arp_standard.debug( 'l_authresult_rec.PaymentSys_Code: ' || l_authresult_rec.PaymentSys_Code);
633: arp_standard.debug( 'l_authresult_rec.PaymentSys_Msg: ' || l_authresult_rec.PaymentSys_Msg);
634: -- arp_standard.debug( 'l_authresult_rec.Risk_Result: ' || l_authresult_rec.Risk_Result);
635:
636: END IF;
637:
638: IF (l_return_status = FND_API.G_RET_STS_SUCCESS) THEN

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

643:
644: ARP_CASH_RECEIPTS_PKG.update_p(l_cr_rec, l_cash_receipt_id);
645:
646: IF PG_DEBUG in ('Y', 'C') THEN
647: arp_standard.debug('CR rec updated with auth_id and auth code ');
648: END IF;
649:
650: END IF;
651:

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

654: --if not pass the message stack received from iPayment
655:
656: IF (NVL(p_called_from,'NONE') = 'IREC') THEN
657: IF PG_DEBUG in ('Y', 'C') THEN
658: arp_standard.debug( 'l_MSG_COUNT=>'||to_char(l_MSG_COUNT));
659: END IF;
660: fnd_msg_pub.dump_list;
661: IF PG_DEBUG in ('Y', 'C') THEN
662: arp_standard.debug( 'Errors: ');

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

658: arp_standard.debug( 'l_MSG_COUNT=>'||to_char(l_MSG_COUNT));
659: END IF;
660: fnd_msg_pub.dump_list;
661: IF PG_DEBUG in ('Y', 'C') THEN
662: arp_standard.debug( 'Errors: ');
663: END IF;
664: IF(l_MSG_COUNT=1) THEN
665: IF PG_DEBUG in ('Y', 'C') THEN
666: arp_standard.debug( l_MSG_DATA);

Line 666: arp_standard.debug( l_MSG_DATA);

662: arp_standard.debug( 'Errors: ');
663: END IF;
664: IF(l_MSG_COUNT=1) THEN
665: IF PG_DEBUG in ('Y', 'C') THEN
666: arp_standard.debug( l_MSG_DATA);
667: END IF;
668: ELSIF(l_MSG_COUNT>1)THEN
669: LOOP
670: l_MSG_DATA:=FND_MSG_PUB.GET(p_encoded=>FND_API.G_FALSE);

Line 675: arp_standard.debug( l_MSG_DATA);

671: IF (l_MSG_DATA IS NULL)THEN
672: EXIT;
673: END IF;
674: IF PG_DEBUG in ('Y', 'C') THEN
675: arp_standard.debug( l_MSG_DATA);
676: END IF;
677: END LOOP;
678: END IF;
679: END IF;

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

687: RETURN;
688:
689: ELSIF (l_return_status <> FND_API.G_RET_STS_SUCCESS) THEN
690:
691: arp_standard.debug('create_cash_126');
692: FND_MESSAGE.set_name('AR', 'AR_CC_AUTH_FAILED');
693: FND_MSG_PUB.Add;
694:
695: IF l_response_rec.Result_Code is NOT NULL THEN

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

698:
699: l_iby_msg_data := substrb( l_response_rec.Result_Code || ': '||
700: l_response_rec.Result_Message , 1, 240);
701:
702: arp_standard.debug( 'l_iby_msg_data: ' || l_iby_msg_data);
703: FND_MESSAGE.SET_NAME ('AR','GENERIC_MESSAGE');
704: FND_MESSAGE.SET_TOKEN('GENERIC_TEXT',l_iby_msg_data);
705:
706: FND_MSG_PUB.Add;

Line 745: -- Standard API parameters.

741: /* bichatte end */
742:
743:
744: ar_receipt_api_pub.Apply_other_account(
745: -- Standard API parameters.
746: p_api_version => p_api_version,
747: p_init_msg_list => FND_API.G_FALSE, --message stack is not initialized
748: p_commit => p_commit,
749: p_validation_level => FND_API.G_VALID_LEVEL_FULL,

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

815: )
816: THEN
817:
818: IF PG_DEBUG in ('Y', 'C') THEN
819: arp_standard.debug('Create_Prepayment: ' || 'Checking p_call_payment_processor: ' || p_call_payment_processor);
820: END IF;
821: /* if (p_call_payment_processor = FND_API.G_TRUE) then
822:
823: Process_Credit_Card(

Line 864: | Standard check of p_commit |

860: END IF;
861: END IF;
862:
863: /*--------------------------------+
864: | Standard check of p_commit |
865: +--------------------------------*/
866:
867: IF FND_API.To_Boolean( p_commit )
868: THEN