DBA Data[Home] [Help]

APPS.AR_CC_REFUNDS dependencies on IBY_PAYMENT_ADAPTER_PUB

Line 89: cc_returntrxn_rec iby_payment_adapter_pub.returntrxn_rec_type;

85: cc_iby_trxn_id NUMBER;
86: cc_iby_trxn_pson VARCHAR2(50);
87:
88: /* Records for Credit Card Payment Return */
89: cc_returntrxn_rec iby_payment_adapter_pub.returntrxn_rec_type;
90: cc_returnresp_rec iby_payment_adapter_pub.returnresp_rec_type;
91:
92: /* Records for Credit Card Payment Credit */
93:

Line 90: cc_returnresp_rec iby_payment_adapter_pub.returnresp_rec_type;

86: cc_iby_trxn_pson VARCHAR2(50);
87:
88: /* Records for Credit Card Payment Return */
89: cc_returntrxn_rec iby_payment_adapter_pub.returntrxn_rec_type;
90: cc_returnresp_rec iby_payment_adapter_pub.returnresp_rec_type;
91:
92: /* Records for Credit Card Payment Credit */
93:
94: cc_payee_rec iby_payment_adapter_pub.Payee_rec_type ;

Line 94: cc_payee_rec iby_payment_adapter_pub.Payee_rec_type ;

90: cc_returnresp_rec iby_payment_adapter_pub.returnresp_rec_type;
91:
92: /* Records for Credit Card Payment Credit */
93:
94: cc_payee_rec iby_payment_adapter_pub.Payee_rec_type ;
95: cc_pmtinstr_rec iby_payment_adapter_pub.PmtInstr_rec_type ;
96: cc_tangible_rec iby_payment_adapter_pub.Tangible_rec_type ;
97: cc_credittrxn_rec iby_payment_adapter_pub.CreditTrxn_rec_type ;
98: cc_creditresp_rec iby_payment_adapter_pub.CreditResp_rec_type ;

Line 95: cc_pmtinstr_rec iby_payment_adapter_pub.PmtInstr_rec_type ;

91:
92: /* Records for Credit Card Payment Credit */
93:
94: cc_payee_rec iby_payment_adapter_pub.Payee_rec_type ;
95: cc_pmtinstr_rec iby_payment_adapter_pub.PmtInstr_rec_type ;
96: cc_tangible_rec iby_payment_adapter_pub.Tangible_rec_type ;
97: cc_credittrxn_rec iby_payment_adapter_pub.CreditTrxn_rec_type ;
98: cc_creditresp_rec iby_payment_adapter_pub.CreditResp_rec_type ;
99:

Line 96: cc_tangible_rec iby_payment_adapter_pub.Tangible_rec_type ;

92: /* Records for Credit Card Payment Credit */
93:
94: cc_payee_rec iby_payment_adapter_pub.Payee_rec_type ;
95: cc_pmtinstr_rec iby_payment_adapter_pub.PmtInstr_rec_type ;
96: cc_tangible_rec iby_payment_adapter_pub.Tangible_rec_type ;
97: cc_credittrxn_rec iby_payment_adapter_pub.CreditTrxn_rec_type ;
98: cc_creditresp_rec iby_payment_adapter_pub.CreditResp_rec_type ;
99:
100:

Line 97: cc_credittrxn_rec iby_payment_adapter_pub.CreditTrxn_rec_type ;

93:
94: cc_payee_rec iby_payment_adapter_pub.Payee_rec_type ;
95: cc_pmtinstr_rec iby_payment_adapter_pub.PmtInstr_rec_type ;
96: cc_tangible_rec iby_payment_adapter_pub.Tangible_rec_type ;
97: cc_credittrxn_rec iby_payment_adapter_pub.CreditTrxn_rec_type ;
98: cc_creditresp_rec iby_payment_adapter_pub.CreditResp_rec_type ;
99:
100:
101: CURSOR cc_iby_trxn_id_cur IS

Line 98: cc_creditresp_rec iby_payment_adapter_pub.CreditResp_rec_type ;

94: cc_payee_rec iby_payment_adapter_pub.Payee_rec_type ;
95: cc_pmtinstr_rec iby_payment_adapter_pub.PmtInstr_rec_type ;
96: cc_tangible_rec iby_payment_adapter_pub.Tangible_rec_type ;
97: cc_credittrxn_rec iby_payment_adapter_pub.CreditTrxn_rec_type ;
98: cc_creditresp_rec iby_payment_adapter_pub.CreditResp_rec_type ;
99:
100:
101: CURSOR cc_iby_trxn_id_cur IS
102: SELECT DISTINCT transactionid

Line 161: arp_file.write_log('Calling iby_payment_adapter_pub.OraPmtReturn()+..');

157: cc_returntrxn_rec.nls_lang := NULL;
158: cc_returntrxn_rec.TrxnRef := cc_unique_reference;
159:
160: IF PG_DEBUG in ('Y', 'C') THEN
161: arp_file.write_log('Calling iby_payment_adapter_pub.OraPmtReturn()+..');
162: END IF;
163:
164: /* Call Payment return API */
165: BEGIN

Line 166: iby_payment_adapter_pub.orapmtreturn (

162: END IF;
163:
164: /* Call Payment return API */
165: BEGIN
166: iby_payment_adapter_pub.orapmtreturn (
167: p_api_version => p_api_version
168: ,p_init_msg_list => p_init_msg_list
169: ,p_commit => p_commit
170: ,p_validation_level => p_validation_level

Line 200: arp_file.write_log('iby_payment_adapter_pub.OraPmtReturn()-');

196: END;
197: IF PG_DEBUG in ('Y', 'C') THEN
198: arp_file.write_log('OraPmtReturn return status..'||cc_return_status);
199: arp_file.write_log('OraPmtReturn status code..'||cc_status_code);
200: arp_file.write_log('iby_payment_adapter_pub.OraPmtReturn()-');
201: END IF;
202:
203: /* Check the return status. An S means Success. If it failed
204: when need to check the status code as you can only give a

Line 283: arp_file.write_log('Calling iby_payment_adapter_pub.OraPmtCredit()+...');

279: cc_credittrxn_rec.pmtmode := 'ONLINE' ;
280: cc_credittrxn_rec.TrxnRef := cc_unique_reference;
281:
282: IF PG_DEBUG in ('Y', 'C') THEN
283: arp_file.write_log('Calling iby_payment_adapter_pub.OraPmtCredit()+...');
284: END IF;
285:
286: /* Call Credit API */
287: iby_payment_adapter_pub.OraPmtCredit (

Line 287: iby_payment_adapter_pub.OraPmtCredit (

283: arp_file.write_log('Calling iby_payment_adapter_pub.OraPmtCredit()+...');
284: END IF;
285:
286: /* Call Credit API */
287: iby_payment_adapter_pub.OraPmtCredit (
288: p_api_version => p_api_version
289: ,p_init_msg_list => p_init_msg_list
290: ,p_commit => p_commit
291: ,p_validation_level => p_validation_level

Line 339: arp_file.write_log('iby_payment_adapter_pub.OraPmtCredit()-');

335: 'Exception in Credit api: ');
336: Return;
337: END IF;
338: IF PG_DEBUG in ('Y', 'C') THEN
339: arp_file.write_log('iby_payment_adapter_pub.OraPmtCredit()-');
340: END IF;
341: ELSE
342: IF( cc_vend_err_code IS NULL) THEN
343: cc_vend_err_code := '4 PMT-RETURN ERR'; /* bug4220521 */