DBA Data[Home] [Help]

APPS.OE_PAYMENT_TRXN_UTIL dependencies on OE_DEBUG_PUB

Line 21: l_debug_level CONSTANT NUMBER := oe_debug_pub.g_debug_level;

17: IS
18:
19: PRAGMA AUTONOMOUS_TRANSACTION;
20: --
21: l_debug_level CONSTANT NUMBER := oe_debug_pub.g_debug_level;
22: --
23: BEGIN
24:
25: p_return_status := FND_API.G_RET_STS_SUCCESS;

Line 112: l_debug_level CONSTANT NUMBER := oe_debug_pub.g_debug_level;

108: l_invoice_to_org_id OE_ORDER_LINES_ALL.invoice_to_org_id%TYPE;
109: l_err_message VARCHAR2(4000);
110: l_instrument_security_code VARCHAR2(30);
111: l_cust_account_id NUMBER;
112: l_debug_level CONSTANT NUMBER := oe_debug_pub.g_debug_level;
113:
114: l_party_site_id NUMBER;
115: l_instrument_id NUMBER; -- bug 5170754
116:

Line 119: oe_debug_pub.add('ENTERING OE_PAYMENT_TRXN_UTIL.Create_Payment_Trxn....');

115: l_instrument_id NUMBER; -- bug 5170754
116:
117: BEGIN
118: IF l_debug_level > 0 THEN
119: oe_debug_pub.add('ENTERING OE_PAYMENT_TRXN_UTIL.Create_Payment_Trxn....');
120: oe_debug_pub.add('Instrument security code and payment number.....'||p_instrument_security_code||' and '||p_payment_number);
121: oe_debug_pub.add('Instrument id'||p_instrument_id);
122: oe_debug_pub.add('Instrument assgn id'||p_instrument_assignment_id);
123: oe_debug_pub.add('Trxn extension id'||P_x_trxn_extension_id);

Line 120: oe_debug_pub.add('Instrument security code and payment number.....'||p_instrument_security_code||' and '||p_payment_number);

116:
117: BEGIN
118: IF l_debug_level > 0 THEN
119: oe_debug_pub.add('ENTERING OE_PAYMENT_TRXN_UTIL.Create_Payment_Trxn....');
120: oe_debug_pub.add('Instrument security code and payment number.....'||p_instrument_security_code||' and '||p_payment_number);
121: oe_debug_pub.add('Instrument id'||p_instrument_id);
122: oe_debug_pub.add('Instrument assgn id'||p_instrument_assignment_id);
123: oe_debug_pub.add('Trxn extension id'||P_x_trxn_extension_id);
124: END IF;

Line 121: oe_debug_pub.add('Instrument id'||p_instrument_id);

117: BEGIN
118: IF l_debug_level > 0 THEN
119: oe_debug_pub.add('ENTERING OE_PAYMENT_TRXN_UTIL.Create_Payment_Trxn....');
120: oe_debug_pub.add('Instrument security code and payment number.....'||p_instrument_security_code||' and '||p_payment_number);
121: oe_debug_pub.add('Instrument id'||p_instrument_id);
122: oe_debug_pub.add('Instrument assgn id'||p_instrument_assignment_id);
123: oe_debug_pub.add('Trxn extension id'||P_x_trxn_extension_id);
124: END IF;
125: BEGIN

Line 122: oe_debug_pub.add('Instrument assgn id'||p_instrument_assignment_id);

118: IF l_debug_level > 0 THEN
119: oe_debug_pub.add('ENTERING OE_PAYMENT_TRXN_UTIL.Create_Payment_Trxn....');
120: oe_debug_pub.add('Instrument security code and payment number.....'||p_instrument_security_code||' and '||p_payment_number);
121: oe_debug_pub.add('Instrument id'||p_instrument_id);
122: oe_debug_pub.add('Instrument assgn id'||p_instrument_assignment_id);
123: oe_debug_pub.add('Trxn extension id'||P_x_trxn_extension_id);
124: END IF;
125: BEGIN
126:

Line 123: oe_debug_pub.add('Trxn extension id'||P_x_trxn_extension_id);

119: oe_debug_pub.add('ENTERING OE_PAYMENT_TRXN_UTIL.Create_Payment_Trxn....');
120: oe_debug_pub.add('Instrument security code and payment number.....'||p_instrument_security_code||' and '||p_payment_number);
121: oe_debug_pub.add('Instrument id'||p_instrument_id);
122: oe_debug_pub.add('Instrument assgn id'||p_instrument_assignment_id);
123: oe_debug_pub.add('Trxn extension id'||P_x_trxn_extension_id);
124: END IF;
125: BEGIN
126:
127: -- map payment type to the payment channel

Line 140: oe_debug_pub.add('ksurendr payment channel code '||l_pmt_channel_code);

136: */
137: l_pmt_channel_code := 'BANK_ACCT_XFER';
138: END IF;
139: IF l_debug_level > 0 THEN
140: oe_debug_pub.add('ksurendr payment channel code '||l_pmt_channel_code);
141: END IF;
142:
143: EXCEPTION
144: WHEN OTHERS THEN

Line 146: oe_debug_pub.add('Error in getting payment channel code'||l_pmt_channel_code);

142:
143: EXCEPTION
144: WHEN OTHERS THEN
145: IF l_debug_level > 0 THEN
146: oe_debug_pub.add('Error in getting payment channel code'||l_pmt_channel_code);
147: oe_debug_pub.add('Return status'||l_return_status||l_msg_data);
148: RAISE;
149: END IF;
150: END;

Line 147: oe_debug_pub.add('Return status'||l_return_status||l_msg_data);

143: EXCEPTION
144: WHEN OTHERS THEN
145: IF l_debug_level > 0 THEN
146: oe_debug_pub.add('Error in getting payment channel code'||l_pmt_channel_code);
147: oe_debug_pub.add('Return status'||l_return_status||l_msg_data);
148: RAISE;
149: END IF;
150: END;
151:

Line 168: oe_debug_pub.add('Invoice_to_org_id'||l_invoice_to_org_id);

164: l_invoice_to_org_id := OE_Order_Cache.g_header_rec.invoice_to_org_id;
165: l_org_id := OE_Order_Cache.g_header_rec.org_id;
166: END IF;
167: IF l_debug_level > 0 THEN
168: oe_debug_pub.add('Invoice_to_org_id'||l_invoice_to_org_id);
169: oe_debug_pub.add('org id'||l_org_id);
170: END IF;
171: /*
172: EXCEPTION

Line 169: oe_debug_pub.add('org id'||l_org_id);

165: l_org_id := OE_Order_Cache.g_header_rec.org_id;
166: END IF;
167: IF l_debug_level > 0 THEN
168: oe_debug_pub.add('Invoice_to_org_id'||l_invoice_to_org_id);
169: oe_debug_pub.add('org id'||l_org_id);
170: END IF;
171: /*
172: EXCEPTION
173: WHEN OTHERS THEN

Line 176: oe_debug_pub.add('Error in getting org id'||l_err_message);

172: EXCEPTION
173: WHEN OTHERS THEN
174: l_err_message := SQLERRM;
175: IF l_debug_level > 0 THEN
176: oe_debug_pub.add('Error in getting org id'||l_err_message);
177: oe_debug_pub.add('Invoice to org id'||l_invoice_to_org_id);
178: oe_debug_pub.add('Org id'||l_org_id);
179: RAISE;
180: END IF;

Line 177: oe_debug_pub.add('Invoice to org id'||l_invoice_to_org_id);

173: WHEN OTHERS THEN
174: l_err_message := SQLERRM;
175: IF l_debug_level > 0 THEN
176: oe_debug_pub.add('Error in getting org id'||l_err_message);
177: oe_debug_pub.add('Invoice to org id'||l_invoice_to_org_id);
178: oe_debug_pub.add('Org id'||l_org_id);
179: RAISE;
180: END IF;
181: END;

Line 178: oe_debug_pub.add('Org id'||l_org_id);

174: l_err_message := SQLERRM;
175: IF l_debug_level > 0 THEN
176: oe_debug_pub.add('Error in getting org id'||l_err_message);
177: oe_debug_pub.add('Invoice to org id'||l_invoice_to_org_id);
178: oe_debug_pub.add('Org id'||l_org_id);
179: RAISE;
180: END IF;
181: END;
182: */

Line 197: oe_debug_pub.add('Party id in Create payment trxn'||l_party_id);

193: AND ACCT_SITE.CUST_ACCOUNT_ID = HCA.CUST_ACCOUNT_ID
194: AND SITE.ORG_ID = ACCT_SITE.ORG_ID;
195:
196: IF l_debug_level > 0 THEN
197: oe_debug_pub.add('Party id in Create payment trxn'||l_party_id);
198: END IF;
199:
200: l_payer.payment_function := 'CUSTOMER_PAYMENT';
201: l_payer.party_id := l_party_id;

Line 207: oe_debug_pub.add('Cust id and acct site id'||p_cust_id||'and'||p_site_use_id);

203: l_payer.org_id := l_org_id;
204: l_payer.cust_account_id := l_cust_account_id;
205: l_payer.account_site_id := p_site_use_id;
206: IF l_debug_level > 0 THEN
207: oe_debug_pub.add('Cust id and acct site id'||p_cust_id||'and'||p_site_use_id);
208: oe_debug_pub.add('Payer context values');
209: oe_debug_pub.add('Payment function --- CUSTOMER_PAYMENT');
210: oe_debug_pub.add('PARTY ID'||l_party_id);
211: oe_debug_pub.add('org_id'||l_org_id);

Line 208: oe_debug_pub.add('Payer context values');

204: l_payer.cust_account_id := l_cust_account_id;
205: l_payer.account_site_id := p_site_use_id;
206: IF l_debug_level > 0 THEN
207: oe_debug_pub.add('Cust id and acct site id'||p_cust_id||'and'||p_site_use_id);
208: oe_debug_pub.add('Payer context values');
209: oe_debug_pub.add('Payment function --- CUSTOMER_PAYMENT');
210: oe_debug_pub.add('PARTY ID'||l_party_id);
211: oe_debug_pub.add('org_id'||l_org_id);
212: oe_debug_pub.add('org type'||l_org_type);

Line 209: oe_debug_pub.add('Payment function --- CUSTOMER_PAYMENT');

205: l_payer.account_site_id := p_site_use_id;
206: IF l_debug_level > 0 THEN
207: oe_debug_pub.add('Cust id and acct site id'||p_cust_id||'and'||p_site_use_id);
208: oe_debug_pub.add('Payer context values');
209: oe_debug_pub.add('Payment function --- CUSTOMER_PAYMENT');
210: oe_debug_pub.add('PARTY ID'||l_party_id);
211: oe_debug_pub.add('org_id'||l_org_id);
212: oe_debug_pub.add('org type'||l_org_type);
213: oe_debug_pub.add('cust acct id'||l_cust_account_id);

Line 210: oe_debug_pub.add('PARTY ID'||l_party_id);

206: IF l_debug_level > 0 THEN
207: oe_debug_pub.add('Cust id and acct site id'||p_cust_id||'and'||p_site_use_id);
208: oe_debug_pub.add('Payer context values');
209: oe_debug_pub.add('Payment function --- CUSTOMER_PAYMENT');
210: oe_debug_pub.add('PARTY ID'||l_party_id);
211: oe_debug_pub.add('org_id'||l_org_id);
212: oe_debug_pub.add('org type'||l_org_type);
213: oe_debug_pub.add('cust acct id'||l_cust_account_id);
214: oe_debug_pub.add('account site id'||p_site_use_id);

Line 211: oe_debug_pub.add('org_id'||l_org_id);

207: oe_debug_pub.add('Cust id and acct site id'||p_cust_id||'and'||p_site_use_id);
208: oe_debug_pub.add('Payer context values');
209: oe_debug_pub.add('Payment function --- CUSTOMER_PAYMENT');
210: oe_debug_pub.add('PARTY ID'||l_party_id);
211: oe_debug_pub.add('org_id'||l_org_id);
212: oe_debug_pub.add('org type'||l_org_type);
213: oe_debug_pub.add('cust acct id'||l_cust_account_id);
214: oe_debug_pub.add('account site id'||p_site_use_id);
215: END IF;

Line 212: oe_debug_pub.add('org type'||l_org_type);

208: oe_debug_pub.add('Payer context values');
209: oe_debug_pub.add('Payment function --- CUSTOMER_PAYMENT');
210: oe_debug_pub.add('PARTY ID'||l_party_id);
211: oe_debug_pub.add('org_id'||l_org_id);
212: oe_debug_pub.add('org type'||l_org_type);
213: oe_debug_pub.add('cust acct id'||l_cust_account_id);
214: oe_debug_pub.add('account site id'||p_site_use_id);
215: END IF;
216:

Line 213: oe_debug_pub.add('cust acct id'||l_cust_account_id);

209: oe_debug_pub.add('Payment function --- CUSTOMER_PAYMENT');
210: oe_debug_pub.add('PARTY ID'||l_party_id);
211: oe_debug_pub.add('org_id'||l_org_id);
212: oe_debug_pub.add('org type'||l_org_type);
213: oe_debug_pub.add('cust acct id'||l_cust_account_id);
214: oe_debug_pub.add('account site id'||p_site_use_id);
215: END IF;
216:
217: EXCEPTION

Line 214: oe_debug_pub.add('account site id'||p_site_use_id);

210: oe_debug_pub.add('PARTY ID'||l_party_id);
211: oe_debug_pub.add('org_id'||l_org_id);
212: oe_debug_pub.add('org type'||l_org_type);
213: oe_debug_pub.add('cust acct id'||l_cust_account_id);
214: oe_debug_pub.add('account site id'||p_site_use_id);
215: END IF;
216:
217: EXCEPTION
218: WHEN OTHERS THEN

Line 220: oe_debug_pub.add('Error in PARTY ID'||l_party_id);

216:
217: EXCEPTION
218: WHEN OTHERS THEN
219: IF l_debug_level > 0 THEN
220: oe_debug_pub.add('Error in PARTY ID'||l_party_id);
221: oe_debug_pub.add('Invoice to org id'||l_invoice_to_org_id);
222: oe_debug_pub.add('Org id'||l_org_id);
223: oe_debug_pub.add('payment_number'||p_payment_number);
224: oe_debug_pub.add('Return status'||l_return_status||l_msg_data);

Line 221: oe_debug_pub.add('Invoice to org id'||l_invoice_to_org_id);

217: EXCEPTION
218: WHEN OTHERS THEN
219: IF l_debug_level > 0 THEN
220: oe_debug_pub.add('Error in PARTY ID'||l_party_id);
221: oe_debug_pub.add('Invoice to org id'||l_invoice_to_org_id);
222: oe_debug_pub.add('Org id'||l_org_id);
223: oe_debug_pub.add('payment_number'||p_payment_number);
224: oe_debug_pub.add('Return status'||l_return_status||l_msg_data);
225: RAISE FND_API.G_EXC_ERROR;

Line 222: oe_debug_pub.add('Org id'||l_org_id);

218: WHEN OTHERS THEN
219: IF l_debug_level > 0 THEN
220: oe_debug_pub.add('Error in PARTY ID'||l_party_id);
221: oe_debug_pub.add('Invoice to org id'||l_invoice_to_org_id);
222: oe_debug_pub.add('Org id'||l_org_id);
223: oe_debug_pub.add('payment_number'||p_payment_number);
224: oe_debug_pub.add('Return status'||l_return_status||l_msg_data);
225: RAISE FND_API.G_EXC_ERROR;
226: END IF;

Line 223: oe_debug_pub.add('payment_number'||p_payment_number);

219: IF l_debug_level > 0 THEN
220: oe_debug_pub.add('Error in PARTY ID'||l_party_id);
221: oe_debug_pub.add('Invoice to org id'||l_invoice_to_org_id);
222: oe_debug_pub.add('Org id'||l_org_id);
223: oe_debug_pub.add('payment_number'||p_payment_number);
224: oe_debug_pub.add('Return status'||l_return_status||l_msg_data);
225: RAISE FND_API.G_EXC_ERROR;
226: END IF;
227: END;

Line 224: oe_debug_pub.add('Return status'||l_return_status||l_msg_data);

220: oe_debug_pub.add('Error in PARTY ID'||l_party_id);
221: oe_debug_pub.add('Invoice to org id'||l_invoice_to_org_id);
222: oe_debug_pub.add('Org id'||l_org_id);
223: oe_debug_pub.add('payment_number'||p_payment_number);
224: oe_debug_pub.add('Return status'||l_return_status||l_msg_data);
225: RAISE FND_API.G_EXC_ERROR;
226: END IF;
227: END;
228:

Line 260: oe_debug_pub.add('Assignment id for ach / direct debit --> '||p_payment_trx_id);

256: --id even though the assignment id is passed from the front end.
257:
258: IF p_payment_trx_id IS NOT NULL THEN
259: IF l_debug_level > 0 THEN
260: oe_debug_pub.add('Assignment id for ach / direct debit --> '||p_payment_trx_id);
261: END IF;
262:
263: SELECT INSTRUMENT_ID into
264: l_instrument_id from

Line 273: oe_debug_pub.add('Before call to Set payer instr assignment API...');

269: l_assignment_attribs.Assignment_Id := p_payment_trx_id; -- bug 9857904
270: END IF;
271:
272: IF l_debug_level > 0 THEN
273: oe_debug_pub.add('Before call to Set payer instr assignment API...');
274: oe_debug_pub.add('Assignment attributes passed ');
275: oe_debug_pub.add('l_instrument.instrument_id ---> '||p_instrument_id);
276: oe_debug_pub.add('l_instrument.instrument_type -> '||l_instrument_type);
277: END IF;

Line 274: oe_debug_pub.add('Assignment attributes passed ');

270: END IF;
271:
272: IF l_debug_level > 0 THEN
273: oe_debug_pub.add('Before call to Set payer instr assignment API...');
274: oe_debug_pub.add('Assignment attributes passed ');
275: oe_debug_pub.add('l_instrument.instrument_id ---> '||p_instrument_id);
276: oe_debug_pub.add('l_instrument.instrument_type -> '||l_instrument_type);
277: END IF;
278:

Line 275: oe_debug_pub.add('l_instrument.instrument_id ---> '||p_instrument_id);

271:
272: IF l_debug_level > 0 THEN
273: oe_debug_pub.add('Before call to Set payer instr assignment API...');
274: oe_debug_pub.add('Assignment attributes passed ');
275: oe_debug_pub.add('l_instrument.instrument_id ---> '||p_instrument_id);
276: oe_debug_pub.add('l_instrument.instrument_type -> '||l_instrument_type);
277: END IF;
278:
279: IBY_FNDCPT_SETUP_PUB.Set_Payer_Instr_Assignment

Line 276: oe_debug_pub.add('l_instrument.instrument_type -> '||l_instrument_type);

272: IF l_debug_level > 0 THEN
273: oe_debug_pub.add('Before call to Set payer instr assignment API...');
274: oe_debug_pub.add('Assignment attributes passed ');
275: oe_debug_pub.add('l_instrument.instrument_id ---> '||p_instrument_id);
276: oe_debug_pub.add('l_instrument.instrument_type -> '||l_instrument_type);
277: END IF;
278:
279: IBY_FNDCPT_SETUP_PUB.Set_Payer_Instr_Assignment
280: (p_api_version => 1.0,

Line 297: oe_debug_pub.add( 'OEXUPTXB: Invalid card number or expiration date in set payer instr assignment' || l_response_code.result_code ) ;

293: IF l_response_code.result_code = 'INVALID_CARD_NUMBER' THEN
294: FND_MESSAGE.SET_NAME('ONT','OE_VPM_CC_ACCT_NOT_SET');
295: OE_MSG_PUB.ADD;
296: IF l_debug_level > 0 THEN
297: oe_debug_pub.add( 'OEXUPTXB: Invalid card number or expiration date in set payer instr assignment' || l_response_code.result_code ) ;
298: END IF;
299: ELSIF l_response_code.result_code = 'INVALID_ADDRESS' THEN
300: FND_MESSAGE.SET_NAME('ONT','OE_CC_BILL_TO_ADDRESS_INVALID');
301: OE_MSG_PUB.ADD;

Line 303: oe_debug_pub.add( 'OEXUPTXB: Invalid billing address in set payer instr assignment' || l_response_code.result_code) ;

299: ELSIF l_response_code.result_code = 'INVALID_ADDRESS' THEN
300: FND_MESSAGE.SET_NAME('ONT','OE_CC_BILL_TO_ADDRESS_INVALID');
301: OE_MSG_PUB.ADD;
302: IF l_debug_level > 0 THEN
303: oe_debug_pub.add( 'OEXUPTXB: Invalid billing address in set payer instr assignment' || l_response_code.result_code) ;
304: END IF;
305: ELSIF l_response_code.result_code = 'INVALID_CARD_ISSUER' THEN
306: FND_MESSAGE.SET_NAME('ONT','OE_VPM_CC_ACCT_NOT_SET'); --bug 5012613
307: OE_MSG_PUB.ADD;

Line 309: oe_debug_pub.add( 'OEXUPTXB: Invalid billing address in set payer instr assignment' || l_response_code.result_code) ;

305: ELSIF l_response_code.result_code = 'INVALID_CARD_ISSUER' THEN
306: FND_MESSAGE.SET_NAME('ONT','OE_VPM_CC_ACCT_NOT_SET'); --bug 5012613
307: OE_MSG_PUB.ADD;
308: IF l_debug_level > 0 THEN
309: oe_debug_pub.add( 'OEXUPTXB: Invalid billing address in set payer instr assignment' || l_response_code.result_code) ;
310: END IF;
311: ELSE --Setting a generic message bug 5244099
312: FND_MESSAGE.SET_NAME('ONT','OE_VPM_CC_ACCT_NOT_SET');
313: OE_MSG_PUB.ADD;

Line 315: oe_debug_pub.add( 'OEXUPTXB: Setting the generic message in set payer instr assignment' || l_response_code.result_code) ;

311: ELSE --Setting a generic message bug 5244099
312: FND_MESSAGE.SET_NAME('ONT','OE_VPM_CC_ACCT_NOT_SET');
313: OE_MSG_PUB.ADD;
314: IF l_debug_level > 0 THEN
315: oe_debug_pub.add( 'OEXUPTXB: Setting the generic message in set payer instr assignment' || l_response_code.result_code) ;
316: END IF;
317: -- 16604394
318: END IF;
319: RAISE FND_API.G_EXC_ERROR;

Line 326: oe_debug_pub.add('Unexpected result error code in Set_Payer_Instr_Assignment-->'||l_response_code.result_code);

322: FND_MESSAGE.SET_NAME('ONT','OE_VPM_CC_ACCT_NOT_SET'); --bug 5244099
323: OE_MSG_PUB.ADD;
324: -- 16604394
325: IF l_debug_level > 0 THEN
326: oe_debug_pub.add('Unexpected result error code in Set_Payer_Instr_Assignment-->'||l_response_code.result_code);
327: END IF;
328: RAISE FND_API.G_EXC_UNEXPECTED_ERROR;
329: ELSIF l_return_status =FND_API.G_RET_STS_SUCCESS THEN
330: IF l_debug_level > 0 THEN

Line 331: oe_debug_pub.add('Set Payer instr assignment Successful....');

327: END IF;
328: RAISE FND_API.G_EXC_UNEXPECTED_ERROR;
329: ELSIF l_return_status =FND_API.G_RET_STS_SUCCESS THEN
330: IF l_debug_level > 0 THEN
331: oe_debug_pub.add('Set Payer instr assignment Successful....');
332: oe_debug_pub.add('After calling Set_Payer_Instr_Assignment');
333: oe_debug_pub.add('Instr assignment id'||l_assign_id);
334: END IF;
335: END IF;

Line 332: oe_debug_pub.add('After calling Set_Payer_Instr_Assignment');

328: RAISE FND_API.G_EXC_UNEXPECTED_ERROR;
329: ELSIF l_return_status =FND_API.G_RET_STS_SUCCESS THEN
330: IF l_debug_level > 0 THEN
331: oe_debug_pub.add('Set Payer instr assignment Successful....');
332: oe_debug_pub.add('After calling Set_Payer_Instr_Assignment');
333: oe_debug_pub.add('Instr assignment id'||l_assign_id);
334: END IF;
335: END IF;
336: --END IF; bug 5170754

Line 333: oe_debug_pub.add('Instr assignment id'||l_assign_id);

329: ELSIF l_return_status =FND_API.G_RET_STS_SUCCESS THEN
330: IF l_debug_level > 0 THEN
331: oe_debug_pub.add('Set Payer instr assignment Successful....');
332: oe_debug_pub.add('After calling Set_Payer_Instr_Assignment');
333: oe_debug_pub.add('Instr assignment id'||l_assign_id);
334: END IF;
335: END IF;
336: --END IF; bug 5170754
337: ELSIF p_payment_type_code = 'CREDIT_CARD' THEN

Line 345: oe_debug_pub.add('Before call to Update_Card API....');

341: L_credit_card_rec.expiration_date := p_exp_date;
342: l_credit_card_rec.Card_Holder_Name := p_card_holder_name;
343: l_credit_Card_rec.card_id := p_instrument_id;
344: IF l_debug_level > 0 THEN
345: oe_debug_pub.add('Before call to Update_Card API....');
346: --oe_debug_pub.add('Expiration date --> '||p_exp_date);
347: --oe_debug_pub.add('Holder Name ------> '||p_card_holder_name);
348: oe_debug_pub.add('Instrument id ----> '||p_instrument_id);
349: END IF;

Line 346: --oe_debug_pub.add('Expiration date --> '||p_exp_date);

342: l_credit_card_rec.Card_Holder_Name := p_card_holder_name;
343: l_credit_Card_rec.card_id := p_instrument_id;
344: IF l_debug_level > 0 THEN
345: oe_debug_pub.add('Before call to Update_Card API....');
346: --oe_debug_pub.add('Expiration date --> '||p_exp_date);
347: --oe_debug_pub.add('Holder Name ------> '||p_card_holder_name);
348: oe_debug_pub.add('Instrument id ----> '||p_instrument_id);
349: END IF;
350: IBY_FNDCPT_SETUP_PUB.Update_Card

Line 347: --oe_debug_pub.add('Holder Name ------> '||p_card_holder_name);

343: l_credit_Card_rec.card_id := p_instrument_id;
344: IF l_debug_level > 0 THEN
345: oe_debug_pub.add('Before call to Update_Card API....');
346: --oe_debug_pub.add('Expiration date --> '||p_exp_date);
347: --oe_debug_pub.add('Holder Name ------> '||p_card_holder_name);
348: oe_debug_pub.add('Instrument id ----> '||p_instrument_id);
349: END IF;
350: IBY_FNDCPT_SETUP_PUB.Update_Card
351: (

Line 348: oe_debug_pub.add('Instrument id ----> '||p_instrument_id);

344: IF l_debug_level > 0 THEN
345: oe_debug_pub.add('Before call to Update_Card API....');
346: --oe_debug_pub.add('Expiration date --> '||p_exp_date);
347: --oe_debug_pub.add('Holder Name ------> '||p_card_holder_name);
348: oe_debug_pub.add('Instrument id ----> '||p_instrument_id);
349: END IF;
350: IBY_FNDCPT_SETUP_PUB.Update_Card
351: (
352: p_api_version => 1.0,

Line 364: oe_debug_pub.add('Result error code in Update_Card exp'||l_response_code.result_code);

360: );
361: --oe_msg_pub.add_text(p_message_text => l_response_code.result_message);
362: IF l_return_status = FND_API.G_RET_STS_ERROR THEN
363: IF l_debug_level > 0 THEN
364: oe_debug_pub.add('Result error code in Update_Card exp'||l_response_code.result_code);
365: END IF;
366: RAISE FND_API.G_EXC_ERROR;
367: ELSIF l_return_status = FND_API.G_RET_STS_UNEXP_ERROR THEN
368: IF l_debug_level > 0 THEN

Line 369: oe_debug_pub.add('Result error code in Update_Card unxc'||l_response_code.result_code);

365: END IF;
366: RAISE FND_API.G_EXC_ERROR;
367: ELSIF l_return_status = FND_API.G_RET_STS_UNEXP_ERROR THEN
368: IF l_debug_level > 0 THEN
369: oe_debug_pub.add('Result error code in Update_Card unxc'||l_response_code.result_code);
370: END IF;
371: RAISE FND_API.G_EXC_UNEXPECTED_ERROR;
372: ELSIF l_return_status =FND_API.G_RET_STS_SUCCESS THEN
373: IF l_debug_level > 0 THEN

Line 374: oe_debug_pub.add('Update_Card Successful....');

370: END IF;
371: RAISE FND_API.G_EXC_UNEXPECTED_ERROR;
372: ELSIF l_return_status =FND_API.G_RET_STS_SUCCESS THEN
373: IF l_debug_level > 0 THEN
374: oe_debug_pub.add('Update_Card Successful....');
375: oe_debug_pub.add('Return status '||l_return_status);
376: END IF;
377: END IF;
378: END IF;

Line 375: oe_debug_pub.add('Return status '||l_return_status);

371: RAISE FND_API.G_EXC_UNEXPECTED_ERROR;
372: ELSIF l_return_status =FND_API.G_RET_STS_SUCCESS THEN
373: IF l_debug_level > 0 THEN
374: oe_debug_pub.add('Update_Card Successful....');
375: oe_debug_pub.add('Return status '||l_return_status);
376: END IF;
377: END IF;
378: END IF;
379:

Line 382: oe_debug_pub.add('Before call to Set payer instr assignment API...');

378: END IF;
379:
380: IF p_instrument_assignment_id IS NOT NULL THEN
381: IF l_debug_level > 0 THEN
382: oe_debug_pub.add('Before call to Set payer instr assignment API...');
383: oe_debug_pub.add('Assignment attributes passed ');
384: oe_debug_pub.add('l_instrument.instrument_id ---> '||p_instrument_id);
385: oe_debug_pub.add('l_instrument.instrument_type -> '||l_instrument_type);
386: END IF;

Line 383: oe_debug_pub.add('Assignment attributes passed ');

379:
380: IF p_instrument_assignment_id IS NOT NULL THEN
381: IF l_debug_level > 0 THEN
382: oe_debug_pub.add('Before call to Set payer instr assignment API...');
383: oe_debug_pub.add('Assignment attributes passed ');
384: oe_debug_pub.add('l_instrument.instrument_id ---> '||p_instrument_id);
385: oe_debug_pub.add('l_instrument.instrument_type -> '||l_instrument_type);
386: END IF;
387:

Line 384: oe_debug_pub.add('l_instrument.instrument_id ---> '||p_instrument_id);

380: IF p_instrument_assignment_id IS NOT NULL THEN
381: IF l_debug_level > 0 THEN
382: oe_debug_pub.add('Before call to Set payer instr assignment API...');
383: oe_debug_pub.add('Assignment attributes passed ');
384: oe_debug_pub.add('l_instrument.instrument_id ---> '||p_instrument_id);
385: oe_debug_pub.add('l_instrument.instrument_type -> '||l_instrument_type);
386: END IF;
387:
388: IBY_FNDCPT_SETUP_PUB.Set_Payer_Instr_Assignment

Line 385: oe_debug_pub.add('l_instrument.instrument_type -> '||l_instrument_type);

381: IF l_debug_level > 0 THEN
382: oe_debug_pub.add('Before call to Set payer instr assignment API...');
383: oe_debug_pub.add('Assignment attributes passed ');
384: oe_debug_pub.add('l_instrument.instrument_id ---> '||p_instrument_id);
385: oe_debug_pub.add('l_instrument.instrument_type -> '||l_instrument_type);
386: END IF;
387:
388: IBY_FNDCPT_SETUP_PUB.Set_Payer_Instr_Assignment
389: (p_api_version => 1.0,

Line 406: oe_debug_pub.add( 'OEXUPTXB: Invalid card number or expiration date in set payer instr assignment ' || l_response_code.result_code ) ;

402: IF l_response_code.result_code = 'INVALID_CARD_NUMBER' THEN
403: FND_MESSAGE.SET_NAME('ONT','OE_VPM_CC_ACCT_NOT_SET');
404: OE_MSG_PUB.ADD;
405: IF l_debug_level > 0 THEN
406: oe_debug_pub.add( 'OEXUPTXB: Invalid card number or expiration date in set payer instr assignment ' || l_response_code.result_code ) ;
407: END IF;
408: ELSIF l_response_code.result_code = 'INVALID_ADDRESS' THEN
409: FND_MESSAGE.SET_NAME('ONT','OE_CC_BILL_TO_ADDRESS_INVALID');
410: OE_MSG_PUB.ADD;

Line 412: oe_debug_pub.add( 'OEXUPTXB: Invalid billing address in set payer instr assignment ' || l_response_code.result_code) ;

408: ELSIF l_response_code.result_code = 'INVALID_ADDRESS' THEN
409: FND_MESSAGE.SET_NAME('ONT','OE_CC_BILL_TO_ADDRESS_INVALID');
410: OE_MSG_PUB.ADD;
411: IF l_debug_level > 0 THEN
412: oe_debug_pub.add( 'OEXUPTXB: Invalid billing address in set payer instr assignment ' || l_response_code.result_code) ;
413: END IF;
414: ELSIF l_response_code.result_code = 'INVALID_CARD_ISSUER' THEN
415: FND_MESSAGE.SET_NAME('ONT','OE_VPM_CC_ACCT_NOT_SET'); --bug 5012613
416: OE_MSG_PUB.ADD;

Line 418: oe_debug_pub.add( 'OEXUPTXB: Invalid billing address in set payer instr assignment ' || l_response_code.result_code) ;

414: ELSIF l_response_code.result_code = 'INVALID_CARD_ISSUER' THEN
415: FND_MESSAGE.SET_NAME('ONT','OE_VPM_CC_ACCT_NOT_SET'); --bug 5012613
416: OE_MSG_PUB.ADD;
417: IF l_debug_level > 0 THEN
418: oe_debug_pub.add( 'OEXUPTXB: Invalid billing address in set payer instr assignment ' || l_response_code.result_code) ;
419: END IF;
420: ELSE --Setting a generic message bug 5244099
421: FND_MESSAGE.SET_NAME('ONT','OE_VPM_CC_ACCT_NOT_SET');
422: OE_MSG_PUB.ADD;

Line 424: oe_debug_pub.add( 'OEXUPTXB: Setting the generic message in set payer instr assignment ' || l_response_code.result_code) ;

420: ELSE --Setting a generic message bug 5244099
421: FND_MESSAGE.SET_NAME('ONT','OE_VPM_CC_ACCT_NOT_SET');
422: OE_MSG_PUB.ADD;
423: IF l_debug_level > 0 THEN
424: oe_debug_pub.add( 'OEXUPTXB: Setting the generic message in set payer instr assignment ' || l_response_code.result_code) ;
425: END IF;
426: -- 16604394
427: END IF;
428: RAISE FND_API.G_EXC_ERROR;

Line 435: oe_debug_pub.add('Unexpected result error code in Set_Payer_Instr_Assignment-->'||l_response_code.result_code);

431: FND_MESSAGE.SET_NAME('ONT','OE_VPM_CC_ACCT_NOT_SET'); --bug 5244099
432: OE_MSG_PUB.ADD;
433: -- 16604394
434: IF l_debug_level > 0 THEN
435: oe_debug_pub.add('Unexpected result error code in Set_Payer_Instr_Assignment-->'||l_response_code.result_code);
436: END IF;
437: RAISE FND_API.G_EXC_UNEXPECTED_ERROR;
438: ELSIF l_return_status =FND_API.G_RET_STS_SUCCESS THEN
439: IF l_debug_level > 0 THEN

Line 440: oe_debug_pub.add('Set Payer instr assignment Successful....');

436: END IF;
437: RAISE FND_API.G_EXC_UNEXPECTED_ERROR;
438: ELSIF l_return_status =FND_API.G_RET_STS_SUCCESS THEN
439: IF l_debug_level > 0 THEN
440: oe_debug_pub.add('Set Payer instr assignment Successful....');
441: oe_debug_pub.add('After calling Set_Payer_Instr_Assignment');
442: oe_debug_pub.add('Instr assignment id'||l_assign_id);
443: END IF;
444: END IF;

Line 441: oe_debug_pub.add('After calling Set_Payer_Instr_Assignment');

437: RAISE FND_API.G_EXC_UNEXPECTED_ERROR;
438: ELSIF l_return_status =FND_API.G_RET_STS_SUCCESS THEN
439: IF l_debug_level > 0 THEN
440: oe_debug_pub.add('Set Payer instr assignment Successful....');
441: oe_debug_pub.add('After calling Set_Payer_Instr_Assignment');
442: oe_debug_pub.add('Instr assignment id'||l_assign_id);
443: END IF;
444: END IF;
445: --l_assign_id := p_instrument_assignment_id;

Line 442: oe_debug_pub.add('Instr assignment id'||l_assign_id);

438: ELSIF l_return_status =FND_API.G_RET_STS_SUCCESS THEN
439: IF l_debug_level > 0 THEN
440: oe_debug_pub.add('Set Payer instr assignment Successful....');
441: oe_debug_pub.add('After calling Set_Payer_Instr_Assignment');
442: oe_debug_pub.add('Instr assignment id'||l_assign_id);
443: END IF;
444: END IF;
445: --l_assign_id := p_instrument_assignment_id;
446: ELSE

Line 448: oe_debug_pub.add('Values of credit card passed to process_credit_card');

444: END IF;
445: --l_assign_id := p_instrument_assignment_id;
446: ELSE
447: IF l_debug_level > 0 THEN
448: oe_debug_pub.add('Values of credit card passed to process_credit_card');
449: oe_debug_pub.add('Owner id'||l_party_id);
450: oe_debug_pub.add('site use id /invoice to org id'||p_site_use_id);
451: oe_debug_pub.add('l_party_site_id/stmt billing address id'||l_party_site_id);
452: --oe_debug_pub.add('card number'||p_card_number);

Line 449: oe_debug_pub.add('Owner id'||l_party_id);

445: --l_assign_id := p_instrument_assignment_id;
446: ELSE
447: IF l_debug_level > 0 THEN
448: oe_debug_pub.add('Values of credit card passed to process_credit_card');
449: oe_debug_pub.add('Owner id'||l_party_id);
450: oe_debug_pub.add('site use id /invoice to org id'||p_site_use_id);
451: oe_debug_pub.add('l_party_site_id/stmt billing address id'||l_party_site_id);
452: --oe_debug_pub.add('card number'||p_card_number);
453: --oe_debug_pub.add('expiration date'||p_exp_date);

Line 450: oe_debug_pub.add('site use id /invoice to org id'||p_site_use_id);

446: ELSE
447: IF l_debug_level > 0 THEN
448: oe_debug_pub.add('Values of credit card passed to process_credit_card');
449: oe_debug_pub.add('Owner id'||l_party_id);
450: oe_debug_pub.add('site use id /invoice to org id'||p_site_use_id);
451: oe_debug_pub.add('l_party_site_id/stmt billing address id'||l_party_site_id);
452: --oe_debug_pub.add('card number'||p_card_number);
453: --oe_debug_pub.add('expiration date'||p_exp_date);
454: oe_debug_pub.add('instrument_type'||l_instrument_type);

Line 451: oe_debug_pub.add('l_party_site_id/stmt billing address id'||l_party_site_id);

447: IF l_debug_level > 0 THEN
448: oe_debug_pub.add('Values of credit card passed to process_credit_card');
449: oe_debug_pub.add('Owner id'||l_party_id);
450: oe_debug_pub.add('site use id /invoice to org id'||p_site_use_id);
451: oe_debug_pub.add('l_party_site_id/stmt billing address id'||l_party_site_id);
452: --oe_debug_pub.add('card number'||p_card_number);
453: --oe_debug_pub.add('expiration date'||p_exp_date);
454: oe_debug_pub.add('instrument_type'||l_instrument_type);
455: --oe_debug_pub.add('Card issuer'||p_card_code);

Line 452: --oe_debug_pub.add('card number'||p_card_number);

448: oe_debug_pub.add('Values of credit card passed to process_credit_card');
449: oe_debug_pub.add('Owner id'||l_party_id);
450: oe_debug_pub.add('site use id /invoice to org id'||p_site_use_id);
451: oe_debug_pub.add('l_party_site_id/stmt billing address id'||l_party_site_id);
452: --oe_debug_pub.add('card number'||p_card_number);
453: --oe_debug_pub.add('expiration date'||p_exp_date);
454: oe_debug_pub.add('instrument_type'||l_instrument_type);
455: --oe_debug_pub.add('Card issuer'||p_card_code);
456: oe_debug_pub.add('Instrument id'||l_assignment_attribs.instrument.instrument_id);

Line 453: --oe_debug_pub.add('expiration date'||p_exp_date);

449: oe_debug_pub.add('Owner id'||l_party_id);
450: oe_debug_pub.add('site use id /invoice to org id'||p_site_use_id);
451: oe_debug_pub.add('l_party_site_id/stmt billing address id'||l_party_site_id);
452: --oe_debug_pub.add('card number'||p_card_number);
453: --oe_debug_pub.add('expiration date'||p_exp_date);
454: oe_debug_pub.add('instrument_type'||l_instrument_type);
455: --oe_debug_pub.add('Card issuer'||p_card_code);
456: oe_debug_pub.add('Instrument id'||l_assignment_attribs.instrument.instrument_id);
457: oe_debug_pub.add('call to process credit card');

Line 454: oe_debug_pub.add('instrument_type'||l_instrument_type);

450: oe_debug_pub.add('site use id /invoice to org id'||p_site_use_id);
451: oe_debug_pub.add('l_party_site_id/stmt billing address id'||l_party_site_id);
452: --oe_debug_pub.add('card number'||p_card_number);
453: --oe_debug_pub.add('expiration date'||p_exp_date);
454: oe_debug_pub.add('instrument_type'||l_instrument_type);
455: --oe_debug_pub.add('Card issuer'||p_card_code);
456: oe_debug_pub.add('Instrument id'||l_assignment_attribs.instrument.instrument_id);
457: oe_debug_pub.add('call to process credit card');
458: END IF;

Line 455: --oe_debug_pub.add('Card issuer'||p_card_code);

451: oe_debug_pub.add('l_party_site_id/stmt billing address id'||l_party_site_id);
452: --oe_debug_pub.add('card number'||p_card_number);
453: --oe_debug_pub.add('expiration date'||p_exp_date);
454: oe_debug_pub.add('instrument_type'||l_instrument_type);
455: --oe_debug_pub.add('Card issuer'||p_card_code);
456: oe_debug_pub.add('Instrument id'||l_assignment_attribs.instrument.instrument_id);
457: oe_debug_pub.add('call to process credit card');
458: END IF;
459:

Line 456: oe_debug_pub.add('Instrument id'||l_assignment_attribs.instrument.instrument_id);

452: --oe_debug_pub.add('card number'||p_card_number);
453: --oe_debug_pub.add('expiration date'||p_exp_date);
454: oe_debug_pub.add('instrument_type'||l_instrument_type);
455: --oe_debug_pub.add('Card issuer'||p_card_code);
456: oe_debug_pub.add('Instrument id'||l_assignment_attribs.instrument.instrument_id);
457: oe_debug_pub.add('call to process credit card');
458: END IF;
459:
460: L_credit_card_rec.owner_id := l_party_id;

Line 457: oe_debug_pub.add('call to process credit card');

453: --oe_debug_pub.add('expiration date'||p_exp_date);
454: oe_debug_pub.add('instrument_type'||l_instrument_type);
455: --oe_debug_pub.add('Card issuer'||p_card_code);
456: oe_debug_pub.add('Instrument id'||l_assignment_attribs.instrument.instrument_id);
457: oe_debug_pub.add('call to process credit card');
458: END IF;
459:
460: L_credit_card_rec.owner_id := l_party_id;
461: L_credit_card_rec.billing_address_id := l_party_site_id;

Line 504: oe_debug_pub.add('Result error code in Process_Credit_Card -->'||l_response_code.result_code);

500: --oe_msg_pub.add_text(p_message_text => l_response_code.result_message);
501:
502: IF l_return_status = FND_API.G_RET_STS_ERROR THEN
503: IF l_debug_level > 0 THEN
504: oe_debug_pub.add('Result error code in Process_Credit_Card -->'||l_response_code.result_code);
505: END IF;
506: IF l_response_code.result_code = 'INVALID_CARD_NUMBER' THEN
507: FND_MESSAGE.SET_NAME('ONT','OE_VPM_CC_ACCT_NOT_SET');
508: OE_MSG_PUB.ADD;

Line 510: oe_debug_pub.add( 'OEXUPTXB: Invalid card number or expiration date' ) ;

506: IF l_response_code.result_code = 'INVALID_CARD_NUMBER' THEN
507: FND_MESSAGE.SET_NAME('ONT','OE_VPM_CC_ACCT_NOT_SET');
508: OE_MSG_PUB.ADD;
509: IF l_debug_level > 0 THEN
510: oe_debug_pub.add( 'OEXUPTXB: Invalid card number or expiration date' ) ;
511: END IF;
512: ELSIF l_response_code.result_code = 'INVALID_ADDRESS' THEN
513: FND_MESSAGE.SET_NAME('ONT','OE_CC_BILL_TO_ADDRESS_INVALID');
514: OE_MSG_PUB.ADD;

Line 516: oe_debug_pub.add( 'OEXUPTXB: Invalid billing address' ) ;

512: ELSIF l_response_code.result_code = 'INVALID_ADDRESS' THEN
513: FND_MESSAGE.SET_NAME('ONT','OE_CC_BILL_TO_ADDRESS_INVALID');
514: OE_MSG_PUB.ADD;
515: IF l_debug_level > 0 THEN
516: oe_debug_pub.add( 'OEXUPTXB: Invalid billing address' ) ;
517: END IF;
518: ELSIF l_response_code.result_code = 'INVALID_CARD_ISSUER' THEN
519: FND_MESSAGE.SET_NAME('ONT','OE_VPM_CC_ACCT_NOT_SET'); --bug 5012613
520: OE_MSG_PUB.ADD;

Line 522: oe_debug_pub.add( 'OEXUPTXB: Invalid billing address' ) ;

518: ELSIF l_response_code.result_code = 'INVALID_CARD_ISSUER' THEN
519: FND_MESSAGE.SET_NAME('ONT','OE_VPM_CC_ACCT_NOT_SET'); --bug 5012613
520: OE_MSG_PUB.ADD;
521: IF l_debug_level > 0 THEN
522: oe_debug_pub.add( 'OEXUPTXB: Invalid billing address' ) ;
523: END IF;
524: ELSE --Setting a generic message bug 5244099
525: FND_MESSAGE.SET_NAME('ONT','OE_VPM_CC_ACCT_NOT_SET');
526: OE_MSG_PUB.ADD;

Line 528: oe_debug_pub.add( 'OEXUPTXB: Setting the generic message' ) ;

524: ELSE --Setting a generic message bug 5244099
525: FND_MESSAGE.SET_NAME('ONT','OE_VPM_CC_ACCT_NOT_SET');
526: OE_MSG_PUB.ADD;
527: IF l_debug_level > 0 THEN
528: oe_debug_pub.add( 'OEXUPTXB: Setting the generic message' ) ;
529: END IF;
530: END IF;
531: RAISE FND_API.G_EXC_ERROR;
532: ELSIF l_return_status = FND_API.G_RET_STS_UNEXP_ERROR THEN

Line 536: oe_debug_pub.add('Unexpected result error code in Process_Credit_Card-->'||l_response_code.result_code);

532: ELSIF l_return_status = FND_API.G_RET_STS_UNEXP_ERROR THEN
533: FND_MESSAGE.SET_NAME('ONT','OE_VPM_CC_ACCT_NOT_SET'); --bug 5244099
534: OE_MSG_PUB.ADD;
535: IF l_debug_level > 0 THEN
536: oe_debug_pub.add('Unexpected result error code in Process_Credit_Card-->'||l_response_code.result_code);
537: END IF;
538: RAISE FND_API.G_EXC_UNEXPECTED_ERROR;
539: ELSIF l_return_status =FND_API.G_RET_STS_SUCCESS THEN
540: IF l_debug_level > 0 THEN

Line 541: oe_debug_pub.add('Process_Credit_Card assignment Successful....');

537: END IF;
538: RAISE FND_API.G_EXC_UNEXPECTED_ERROR;
539: ELSIF l_return_status =FND_API.G_RET_STS_SUCCESS THEN
540: IF l_debug_level > 0 THEN
541: oe_debug_pub.add('Process_Credit_Card assignment Successful....');
542: oe_debug_pub.add('After calling Process_Credit_Card');
543: oe_debug_pub.add('Instr assignment id'||l_assign_id);
544: END IF;
545: --If trxn extension id is null and approval code is not, then

Line 542: oe_debug_pub.add('After calling Process_Credit_Card');

538: RAISE FND_API.G_EXC_UNEXPECTED_ERROR;
539: ELSIF l_return_status =FND_API.G_RET_STS_SUCCESS THEN
540: IF l_debug_level > 0 THEN
541: oe_debug_pub.add('Process_Credit_Card assignment Successful....');
542: oe_debug_pub.add('After calling Process_Credit_Card');
543: oe_debug_pub.add('Instr assignment id'||l_assign_id);
544: END IF;
545: --If trxn extension id is null and approval code is not, then
546: --this approval code was obtained from outside payments system

Line 543: oe_debug_pub.add('Instr assignment id'||l_assign_id);

539: ELSIF l_return_status =FND_API.G_RET_STS_SUCCESS THEN
540: IF l_debug_level > 0 THEN
541: oe_debug_pub.add('Process_Credit_Card assignment Successful....');
542: oe_debug_pub.add('After calling Process_Credit_Card');
543: oe_debug_pub.add('Instr assignment id'||l_assign_id);
544: END IF;
545: --If trxn extension id is null and approval code is not, then
546: --this approval code was obtained from outside payments system
547: --and we need to set up voice authorization in this case.

Line 571: oe_debug_pub.add('Before call to Get Transaction Extension API...');

567: ELSE
568: -- p_x_trxn_extension_id is not null, then find the instrument assignment id first,
569: -- then create a new trxn transaction id using this assignment id. This is used in Copy Order.
570: IF l_debug_level > 0 THEN
571: oe_debug_pub.add('Before call to Get Transaction Extension API...');
572: oe_debug_pub.add('Trxn attributes passed ');
573: oe_debug_pub.add('l_trxn_attribs.trxn_ref_number1 ---> '||p_line_id);
574: oe_debug_pub.add('l_trxn_attribs.trxn_ref_number2 ---> '||p_payment_number);
575: oe_debug_pub.add('L_trxn_attribs.order_id -----------> '||p_header_id);

Line 572: oe_debug_pub.add('Trxn attributes passed ');

568: -- p_x_trxn_extension_id is not null, then find the instrument assignment id first,
569: -- then create a new trxn transaction id using this assignment id. This is used in Copy Order.
570: IF l_debug_level > 0 THEN
571: oe_debug_pub.add('Before call to Get Transaction Extension API...');
572: oe_debug_pub.add('Trxn attributes passed ');
573: oe_debug_pub.add('l_trxn_attribs.trxn_ref_number1 ---> '||p_line_id);
574: oe_debug_pub.add('l_trxn_attribs.trxn_ref_number2 ---> '||p_payment_number);
575: oe_debug_pub.add('L_trxn_attribs.order_id -----------> '||p_header_id);
576: END IF;

Line 573: oe_debug_pub.add('l_trxn_attribs.trxn_ref_number1 ---> '||p_line_id);

569: -- then create a new trxn transaction id using this assignment id. This is used in Copy Order.
570: IF l_debug_level > 0 THEN
571: oe_debug_pub.add('Before call to Get Transaction Extension API...');
572: oe_debug_pub.add('Trxn attributes passed ');
573: oe_debug_pub.add('l_trxn_attribs.trxn_ref_number1 ---> '||p_line_id);
574: oe_debug_pub.add('l_trxn_attribs.trxn_ref_number2 ---> '||p_payment_number);
575: oe_debug_pub.add('L_trxn_attribs.order_id -----------> '||p_header_id);
576: END IF;
577: IBY_FNDCPT_TRXN_PUB.Get_Transaction_Extension

Line 574: oe_debug_pub.add('l_trxn_attribs.trxn_ref_number2 ---> '||p_payment_number);

570: IF l_debug_level > 0 THEN
571: oe_debug_pub.add('Before call to Get Transaction Extension API...');
572: oe_debug_pub.add('Trxn attributes passed ');
573: oe_debug_pub.add('l_trxn_attribs.trxn_ref_number1 ---> '||p_line_id);
574: oe_debug_pub.add('l_trxn_attribs.trxn_ref_number2 ---> '||p_payment_number);
575: oe_debug_pub.add('L_trxn_attribs.order_id -----------> '||p_header_id);
576: END IF;
577: IBY_FNDCPT_TRXN_PUB.Get_Transaction_Extension
578: (p_api_version => 1.0,

Line 575: oe_debug_pub.add('L_trxn_attribs.order_id -----------> '||p_header_id);

571: oe_debug_pub.add('Before call to Get Transaction Extension API...');
572: oe_debug_pub.add('Trxn attributes passed ');
573: oe_debug_pub.add('l_trxn_attribs.trxn_ref_number1 ---> '||p_line_id);
574: oe_debug_pub.add('l_trxn_attribs.trxn_ref_number2 ---> '||p_payment_number);
575: oe_debug_pub.add('L_trxn_attribs.order_id -----------> '||p_header_id);
576: END IF;
577: IBY_FNDCPT_TRXN_PUB.Get_Transaction_Extension
578: (p_api_version => 1.0,
579: X_return_status => l_return_status,

Line 590: oe_debug_pub.add('Result error code in Get_Transaction_Extension'||l_response_code.result_code);

586: --x_settled => l_settled,
587: X_response => l_response_code);
588: IF l_return_status = FND_API.G_RET_STS_ERROR THEN
589: IF l_debug_level > 0 THEN
590: oe_debug_pub.add('Result error code in Get_Transaction_Extension'||l_response_code.result_code);
591: END IF;
592: RAISE FND_API.G_EXC_ERROR;
593: ELSIF l_return_status = FND_API.G_RET_STS_UNEXP_ERROR THEN
594: IF l_debug_level > 0 THEN

Line 595: oe_debug_pub.add('Result error code in Get_Transaction_Extension'||l_response_code.result_code);

591: END IF;
592: RAISE FND_API.G_EXC_ERROR;
593: ELSIF l_return_status = FND_API.G_RET_STS_UNEXP_ERROR THEN
594: IF l_debug_level > 0 THEN
595: oe_debug_pub.add('Result error code in Get_Transaction_Extension'||l_response_code.result_code);
596: END IF;
597: RAISE FND_API.G_EXC_UNEXPECTED_ERROR;
598: ELSIF l_return_status =FND_API.G_RET_STS_SUCCESS THEN
599: IF l_debug_level > 0 THEN

Line 600: oe_debug_pub.add('Get_Transaction_Extension assignment Successful....');

596: END IF;
597: RAISE FND_API.G_EXC_UNEXPECTED_ERROR;
598: ELSIF l_return_status =FND_API.G_RET_STS_SUCCESS THEN
599: IF l_debug_level > 0 THEN
600: oe_debug_pub.add('Get_Transaction_Extension assignment Successful....');
601: oe_debug_pub.add('After call to Get Transaction Extension'||l_return_status);
602: oe_debug_pub.add('After call to get trxn...instr sec code'||l_trxn_attribs.instrument_security_code);
603: END IF;
604: END IF;

Line 601: oe_debug_pub.add('After call to Get Transaction Extension'||l_return_status);

597: RAISE FND_API.G_EXC_UNEXPECTED_ERROR;
598: ELSIF l_return_status =FND_API.G_RET_STS_SUCCESS THEN
599: IF l_debug_level > 0 THEN
600: oe_debug_pub.add('Get_Transaction_Extension assignment Successful....');
601: oe_debug_pub.add('After call to Get Transaction Extension'||l_return_status);
602: oe_debug_pub.add('After call to get trxn...instr sec code'||l_trxn_attribs.instrument_security_code);
603: END IF;
604: END IF;
605:

Line 602: oe_debug_pub.add('After call to get trxn...instr sec code'||l_trxn_attribs.instrument_security_code);

598: ELSIF l_return_status =FND_API.G_RET_STS_SUCCESS THEN
599: IF l_debug_level > 0 THEN
600: oe_debug_pub.add('Get_Transaction_Extension assignment Successful....');
601: oe_debug_pub.add('After call to Get Transaction Extension'||l_return_status);
602: oe_debug_pub.add('After call to get trxn...instr sec code'||l_trxn_attribs.instrument_security_code);
603: END IF;
604: END IF;
605:
606: -- Based on the trxn extension id get the corresponding

Line 612: oe_debug_pub.add('Instrument assignment id for existing instrument'||l_assign_id);

608: -- bug 8586227
609: select instr_assignment_id into l_assign_id
610: from IBY_EXTN_INSTR_DETAILS_V where trxn_extension_id = p_x_trxn_extension_id;
611: IF l_debug_level > 0 THEN
612: oe_debug_pub.add('Instrument assignment id for existing instrument'||l_assign_id);
613: END IF;
614:
615: END IF;
616:

Line 638: oe_debug_pub.add('Before calling create_transaction extension');

634:
635: END IF;
636:
637: IF l_debug_level > 0 THEN
638: oe_debug_pub.add('Before calling create_transaction extension');
639: oe_debug_pub.add('payment channel -->'||l_pmt_channel_code);
640: oe_debug_pub.add('Assignment id ---->'|| l_assign_id);
641: oe_debug_pub.add('trxn attributes record type values');
642: oe_debug_pub.add('l_trxn_attribs.Instrument_Security_Code --->'||p_instrument_security_code);

Line 639: oe_debug_pub.add('payment channel -->'||l_pmt_channel_code);

635: END IF;
636:
637: IF l_debug_level > 0 THEN
638: oe_debug_pub.add('Before calling create_transaction extension');
639: oe_debug_pub.add('payment channel -->'||l_pmt_channel_code);
640: oe_debug_pub.add('Assignment id ---->'|| l_assign_id);
641: oe_debug_pub.add('trxn attributes record type values');
642: oe_debug_pub.add('l_trxn_attribs.Instrument_Security_Code --->'||p_instrument_security_code);
643: oe_debug_pub.add('l_trxn_attribs.Originating application id ---> 660');

Line 640: oe_debug_pub.add('Assignment id ---->'|| l_assign_id);

636:
637: IF l_debug_level > 0 THEN
638: oe_debug_pub.add('Before calling create_transaction extension');
639: oe_debug_pub.add('payment channel -->'||l_pmt_channel_code);
640: oe_debug_pub.add('Assignment id ---->'|| l_assign_id);
641: oe_debug_pub.add('trxn attributes record type values');
642: oe_debug_pub.add('l_trxn_attribs.Instrument_Security_Code --->'||p_instrument_security_code);
643: oe_debug_pub.add('l_trxn_attribs.Originating application id ---> 660');
644: oe_debug_pub.add('l_trxn_attribs.order_id ----> '||p_header_id);

Line 641: oe_debug_pub.add('trxn attributes record type values');

637: IF l_debug_level > 0 THEN
638: oe_debug_pub.add('Before calling create_transaction extension');
639: oe_debug_pub.add('payment channel -->'||l_pmt_channel_code);
640: oe_debug_pub.add('Assignment id ---->'|| l_assign_id);
641: oe_debug_pub.add('trxn attributes record type values');
642: oe_debug_pub.add('l_trxn_attribs.Instrument_Security_Code --->'||p_instrument_security_code);
643: oe_debug_pub.add('l_trxn_attribs.Originating application id ---> 660');
644: oe_debug_pub.add('l_trxn_attribs.order_id ----> '||p_header_id);
645: oe_debug_pub.add('l_trxn_attribs.trxn_ref_number1 --->'||p_line_id);

Line 642: oe_debug_pub.add('l_trxn_attribs.Instrument_Security_Code --->'||p_instrument_security_code);

638: oe_debug_pub.add('Before calling create_transaction extension');
639: oe_debug_pub.add('payment channel -->'||l_pmt_channel_code);
640: oe_debug_pub.add('Assignment id ---->'|| l_assign_id);
641: oe_debug_pub.add('trxn attributes record type values');
642: oe_debug_pub.add('l_trxn_attribs.Instrument_Security_Code --->'||p_instrument_security_code);
643: oe_debug_pub.add('l_trxn_attribs.Originating application id ---> 660');
644: oe_debug_pub.add('l_trxn_attribs.order_id ----> '||p_header_id);
645: oe_debug_pub.add('l_trxn_attribs.trxn_ref_number1 --->'||p_line_id);
646: oe_debug_pub.add('l_trxn_attribs.trxn_ref_number2 --->'||p_payment_number);

Line 643: oe_debug_pub.add('l_trxn_attribs.Originating application id ---> 660');

639: oe_debug_pub.add('payment channel -->'||l_pmt_channel_code);
640: oe_debug_pub.add('Assignment id ---->'|| l_assign_id);
641: oe_debug_pub.add('trxn attributes record type values');
642: oe_debug_pub.add('l_trxn_attribs.Instrument_Security_Code --->'||p_instrument_security_code);
643: oe_debug_pub.add('l_trxn_attribs.Originating application id ---> 660');
644: oe_debug_pub.add('l_trxn_attribs.order_id ----> '||p_header_id);
645: oe_debug_pub.add('l_trxn_attribs.trxn_ref_number1 --->'||p_line_id);
646: oe_debug_pub.add('l_trxn_attribs.trxn_ref_number2 --->'||p_payment_number);
647: --oe_debug_pub.add('l_trxn_attribs.VoiceAuth_date ---->'||p_credit_card_approval_date);

Line 644: oe_debug_pub.add('l_trxn_attribs.order_id ----> '||p_header_id);

640: oe_debug_pub.add('Assignment id ---->'|| l_assign_id);
641: oe_debug_pub.add('trxn attributes record type values');
642: oe_debug_pub.add('l_trxn_attribs.Instrument_Security_Code --->'||p_instrument_security_code);
643: oe_debug_pub.add('l_trxn_attribs.Originating application id ---> 660');
644: oe_debug_pub.add('l_trxn_attribs.order_id ----> '||p_header_id);
645: oe_debug_pub.add('l_trxn_attribs.trxn_ref_number1 --->'||p_line_id);
646: oe_debug_pub.add('l_trxn_attribs.trxn_ref_number2 --->'||p_payment_number);
647: --oe_debug_pub.add('l_trxn_attribs.VoiceAuth_date ---->'||p_credit_card_approval_date);
648: --oe_debug_pub.add('l_trxn_attribs.VoiceAuth_code ---->'||p_credit_card_approval_code);

Line 645: oe_debug_pub.add('l_trxn_attribs.trxn_ref_number1 --->'||p_line_id);

641: oe_debug_pub.add('trxn attributes record type values');
642: oe_debug_pub.add('l_trxn_attribs.Instrument_Security_Code --->'||p_instrument_security_code);
643: oe_debug_pub.add('l_trxn_attribs.Originating application id ---> 660');
644: oe_debug_pub.add('l_trxn_attribs.order_id ----> '||p_header_id);
645: oe_debug_pub.add('l_trxn_attribs.trxn_ref_number1 --->'||p_line_id);
646: oe_debug_pub.add('l_trxn_attribs.trxn_ref_number2 --->'||p_payment_number);
647: --oe_debug_pub.add('l_trxn_attribs.VoiceAuth_date ---->'||p_credit_card_approval_date);
648: --oe_debug_pub.add('l_trxn_attribs.VoiceAuth_code ---->'||p_credit_card_approval_code);
649: END IF;

Line 646: oe_debug_pub.add('l_trxn_attribs.trxn_ref_number2 --->'||p_payment_number);

642: oe_debug_pub.add('l_trxn_attribs.Instrument_Security_Code --->'||p_instrument_security_code);
643: oe_debug_pub.add('l_trxn_attribs.Originating application id ---> 660');
644: oe_debug_pub.add('l_trxn_attribs.order_id ----> '||p_header_id);
645: oe_debug_pub.add('l_trxn_attribs.trxn_ref_number1 --->'||p_line_id);
646: oe_debug_pub.add('l_trxn_attribs.trxn_ref_number2 --->'||p_payment_number);
647: --oe_debug_pub.add('l_trxn_attribs.VoiceAuth_date ---->'||p_credit_card_approval_date);
648: --oe_debug_pub.add('l_trxn_attribs.VoiceAuth_code ---->'||p_credit_card_approval_code);
649: END IF;
650: --bug 5176015

Line 647: --oe_debug_pub.add('l_trxn_attribs.VoiceAuth_date ---->'||p_credit_card_approval_date);

643: oe_debug_pub.add('l_trxn_attribs.Originating application id ---> 660');
644: oe_debug_pub.add('l_trxn_attribs.order_id ----> '||p_header_id);
645: oe_debug_pub.add('l_trxn_attribs.trxn_ref_number1 --->'||p_line_id);
646: oe_debug_pub.add('l_trxn_attribs.trxn_ref_number2 --->'||p_payment_number);
647: --oe_debug_pub.add('l_trxn_attribs.VoiceAuth_date ---->'||p_credit_card_approval_date);
648: --oe_debug_pub.add('l_trxn_attribs.VoiceAuth_code ---->'||p_credit_card_approval_code);
649: END IF;
650: --bug 5176015
651: IF l_assign_id IS NOT NULL THEN

Line 648: --oe_debug_pub.add('l_trxn_attribs.VoiceAuth_code ---->'||p_credit_card_approval_code);

644: oe_debug_pub.add('l_trxn_attribs.order_id ----> '||p_header_id);
645: oe_debug_pub.add('l_trxn_attribs.trxn_ref_number1 --->'||p_line_id);
646: oe_debug_pub.add('l_trxn_attribs.trxn_ref_number2 --->'||p_payment_number);
647: --oe_debug_pub.add('l_trxn_attribs.VoiceAuth_date ---->'||p_credit_card_approval_date);
648: --oe_debug_pub.add('l_trxn_attribs.VoiceAuth_code ---->'||p_credit_card_approval_code);
649: END IF;
650: --bug 5176015
651: IF l_assign_id IS NOT NULL THEN
652:

Line 658: oe_debug_pub.add('new l_trxn_attribs.order_id -----> '||l_trxn_attribs.order_id);

654: l_trxn_attribs.order_id := p_header_id;
655: l_trxn_attribs.trxn_ref_number1 := p_line_id;
656:
657: IF l_debug_level > 0 THEN
658: oe_debug_pub.add('new l_trxn_attribs.order_id -----> '||l_trxn_attribs.order_id);
659: END IF;
660:
661: IBY_Fndcpt_Trxn_Pub.Create_Transaction_Extension
662: (p_api_version => 1.0,

Line 679: oe_debug_pub.add('After calling Create_Transaction_Extension'||l_trxn_extension_id);

675:
676: --oe_msg_pub.add_text(p_message_text => l_response_code.result_message);
677:
678: IF l_debug_level > 0 THEN
679: oe_debug_pub.add('After calling Create_Transaction_Extension'||l_trxn_extension_id);
680: oe_debug_pub.add('Result code'||l_Response_code.result_code);
681: oe_debug_pub.add('Return status'||l_Return_Status);
682: END IF;
683:

Line 680: oe_debug_pub.add('Result code'||l_Response_code.result_code);

676: --oe_msg_pub.add_text(p_message_text => l_response_code.result_message);
677:
678: IF l_debug_level > 0 THEN
679: oe_debug_pub.add('After calling Create_Transaction_Extension'||l_trxn_extension_id);
680: oe_debug_pub.add('Result code'||l_Response_code.result_code);
681: oe_debug_pub.add('Return status'||l_Return_Status);
682: END IF;
683:
684: IF l_return_status = FND_API.G_RET_STS_ERROR THEN

Line 681: oe_debug_pub.add('Return status'||l_Return_Status);

677:
678: IF l_debug_level > 0 THEN
679: oe_debug_pub.add('After calling Create_Transaction_Extension'||l_trxn_extension_id);
680: oe_debug_pub.add('Result code'||l_Response_code.result_code);
681: oe_debug_pub.add('Return status'||l_Return_Status);
682: END IF;
683:
684: IF l_return_status = FND_API.G_RET_STS_ERROR THEN
685: IF l_debug_level > 0 THEN

Line 686: oe_debug_pub.add('Result error code in Create_Transaction_Extension'||l_response_code.result_code);

682: END IF;
683:
684: IF l_return_status = FND_API.G_RET_STS_ERROR THEN
685: IF l_debug_level > 0 THEN
686: oe_debug_pub.add('Result error code in Create_Transaction_Extension'||l_response_code.result_code);
687: END IF;
688: RAISE FND_API.G_EXC_ERROR;
689: ELSIF l_return_status = FND_API.G_RET_STS_UNEXP_ERROR THEN
690: IF l_debug_level > 0 THEN

Line 691: oe_debug_pub.add('Result error code in Create_Transaction_Extension'||l_response_code.result_code);

687: END IF;
688: RAISE FND_API.G_EXC_ERROR;
689: ELSIF l_return_status = FND_API.G_RET_STS_UNEXP_ERROR THEN
690: IF l_debug_level > 0 THEN
691: oe_debug_pub.add('Result error code in Create_Transaction_Extension'||l_response_code.result_code);
692: END IF;
693: RAISE FND_API.G_EXC_UNEXPECTED_ERROR;
694: ELSIF l_return_status =FND_API.G_RET_STS_SUCCESS THEN
695: IF l_debug_level > 0 THEN

Line 696: oe_debug_pub.add('Create_Transaction_Extension assignment Successful....');

692: END IF;
693: RAISE FND_API.G_EXC_UNEXPECTED_ERROR;
694: ELSIF l_return_status =FND_API.G_RET_STS_SUCCESS THEN
695: IF l_debug_level > 0 THEN
696: oe_debug_pub.add('Create_Transaction_Extension assignment Successful....');
697: oe_debug_pub.add('After call to Create_Transaction_Extension'||l_return_status);
698: oe_debug_pub.add('After call to create Transaction Extension');
699: oe_debug_pub.add('New trxn extension id'||l_trxn_extension_id);
700: oe_debug_pub.add('Return status'||l_return_status);

Line 697: oe_debug_pub.add('After call to Create_Transaction_Extension'||l_return_status);

693: RAISE FND_API.G_EXC_UNEXPECTED_ERROR;
694: ELSIF l_return_status =FND_API.G_RET_STS_SUCCESS THEN
695: IF l_debug_level > 0 THEN
696: oe_debug_pub.add('Create_Transaction_Extension assignment Successful....');
697: oe_debug_pub.add('After call to Create_Transaction_Extension'||l_return_status);
698: oe_debug_pub.add('After call to create Transaction Extension');
699: oe_debug_pub.add('New trxn extension id'||l_trxn_extension_id);
700: oe_debug_pub.add('Return status'||l_return_status);
701: END IF;

Line 698: oe_debug_pub.add('After call to create Transaction Extension');

694: ELSIF l_return_status =FND_API.G_RET_STS_SUCCESS THEN
695: IF l_debug_level > 0 THEN
696: oe_debug_pub.add('Create_Transaction_Extension assignment Successful....');
697: oe_debug_pub.add('After call to Create_Transaction_Extension'||l_return_status);
698: oe_debug_pub.add('After call to create Transaction Extension');
699: oe_debug_pub.add('New trxn extension id'||l_trxn_extension_id);
700: oe_debug_pub.add('Return status'||l_return_status);
701: END IF;
702:

Line 699: oe_debug_pub.add('New trxn extension id'||l_trxn_extension_id);

695: IF l_debug_level > 0 THEN
696: oe_debug_pub.add('Create_Transaction_Extension assignment Successful....');
697: oe_debug_pub.add('After call to Create_Transaction_Extension'||l_return_status);
698: oe_debug_pub.add('After call to create Transaction Extension');
699: oe_debug_pub.add('New trxn extension id'||l_trxn_extension_id);
700: oe_debug_pub.add('Return status'||l_return_status);
701: END IF;
702:
703: -- bug 5204275

Line 700: oe_debug_pub.add('Return status'||l_return_status);

696: oe_debug_pub.add('Create_Transaction_Extension assignment Successful....');
697: oe_debug_pub.add('After call to Create_Transaction_Extension'||l_return_status);
698: oe_debug_pub.add('After call to create Transaction Extension');
699: oe_debug_pub.add('New trxn extension id'||l_trxn_extension_id);
700: oe_debug_pub.add('Return status'||l_return_status);
701: END IF;
702:
703: -- bug 5204275
704: IF p_payment_type_code = 'CREDIT_CARD'

Line 720: oe_debug_pub.add('Exiting Create_Payment_Trxn.....');

716: --bug 5176015
717: P_x_trxn_extension_id := l_trxn_extension_id;
718: X_return_status := FND_API.G_RET_STS_SUCCESS;
719: IF l_debug_level > 0 THEN
720: oe_debug_pub.add('Exiting Create_Payment_Trxn.....');
721: END IF;
722: EXCEPTION
723:
724: WHEN FND_API.G_EXC_ERROR THEN

Line 727: oe_debug_pub.add('Create_Transaction_Extension assignment error....exc');

723:
724: WHEN FND_API.G_EXC_ERROR THEN
725: l_err_message := SQLERRM;
726: IF l_debug_level > 0 THEN
727: oe_debug_pub.add('Create_Transaction_Extension assignment error....exc');
728: oe_debug_pub.add('After call to Create_Transaction_Extension'||l_return_status);
729: oe_debug_pub.add('Result code'||l_response_code.result_code);
730: oe_debug_pub.add('Error'||l_err_message);
731: END IF;

Line 728: oe_debug_pub.add('After call to Create_Transaction_Extension'||l_return_status);

724: WHEN FND_API.G_EXC_ERROR THEN
725: l_err_message := SQLERRM;
726: IF l_debug_level > 0 THEN
727: oe_debug_pub.add('Create_Transaction_Extension assignment error....exc');
728: oe_debug_pub.add('After call to Create_Transaction_Extension'||l_return_status);
729: oe_debug_pub.add('Result code'||l_response_code.result_code);
730: oe_debug_pub.add('Error'||l_err_message);
731: END IF;
732:

Line 729: oe_debug_pub.add('Result code'||l_response_code.result_code);

725: l_err_message := SQLERRM;
726: IF l_debug_level > 0 THEN
727: oe_debug_pub.add('Create_Transaction_Extension assignment error....exc');
728: oe_debug_pub.add('After call to Create_Transaction_Extension'||l_return_status);
729: oe_debug_pub.add('Result code'||l_response_code.result_code);
730: oe_debug_pub.add('Error'||l_err_message);
731: END IF;
732:
733: X_return_status := FND_API.G_RET_STS_ERROR;

Line 730: oe_debug_pub.add('Error'||l_err_message);

726: IF l_debug_level > 0 THEN
727: oe_debug_pub.add('Create_Transaction_Extension assignment error....exc');
728: oe_debug_pub.add('After call to Create_Transaction_Extension'||l_return_status);
729: oe_debug_pub.add('Result code'||l_response_code.result_code);
730: oe_debug_pub.add('Error'||l_err_message);
731: END IF;
732:
733: X_return_status := FND_API.G_RET_STS_ERROR;
734: OE_MSG_PUB.Count_And_Get

Line 743: oe_debug_pub.add('Create_Transaction_Extension assignment error....unxc');

739:
740: WHEN FND_API.G_EXC_UNEXPECTED_ERROR THEN
741: l_err_message := SQLERRM;
742: IF l_debug_level > 0 THEN
743: oe_debug_pub.add('Create_Transaction_Extension assignment error....unxc');
744: oe_debug_pub.add('After call to Create_Transaction_Extension'||l_return_status);
745: oe_debug_pub.add('Result code'||l_response_code.result_code);
746: oe_debug_pub.add('f Error'||l_err_message);
747: END IF;

Line 744: oe_debug_pub.add('After call to Create_Transaction_Extension'||l_return_status);

740: WHEN FND_API.G_EXC_UNEXPECTED_ERROR THEN
741: l_err_message := SQLERRM;
742: IF l_debug_level > 0 THEN
743: oe_debug_pub.add('Create_Transaction_Extension assignment error....unxc');
744: oe_debug_pub.add('After call to Create_Transaction_Extension'||l_return_status);
745: oe_debug_pub.add('Result code'||l_response_code.result_code);
746: oe_debug_pub.add('f Error'||l_err_message);
747: END IF;
748:

Line 745: oe_debug_pub.add('Result code'||l_response_code.result_code);

741: l_err_message := SQLERRM;
742: IF l_debug_level > 0 THEN
743: oe_debug_pub.add('Create_Transaction_Extension assignment error....unxc');
744: oe_debug_pub.add('After call to Create_Transaction_Extension'||l_return_status);
745: oe_debug_pub.add('Result code'||l_response_code.result_code);
746: oe_debug_pub.add('f Error'||l_err_message);
747: END IF;
748:
749: X_return_status := FND_API.G_RET_STS_UNEXP_ERROR;

Line 746: oe_debug_pub.add('f Error'||l_err_message);

742: IF l_debug_level > 0 THEN
743: oe_debug_pub.add('Create_Transaction_Extension assignment error....unxc');
744: oe_debug_pub.add('After call to Create_Transaction_Extension'||l_return_status);
745: oe_debug_pub.add('Result code'||l_response_code.result_code);
746: oe_debug_pub.add('f Error'||l_err_message);
747: END IF;
748:
749: X_return_status := FND_API.G_RET_STS_UNEXP_ERROR;
750: OE_MSG_PUB.Count_And_Get

Line 759: oe_debug_pub.add('Create_Transaction_Extension assignment error....others');

755:
756: WHEN OTHERS THEN
757: l_err_message := SQLERRM;
758: IF l_debug_level > 0 THEN
759: oe_debug_pub.add('Create_Transaction_Extension assignment error....others');
760: oe_debug_pub.add('After call to Create_Transaction_Extension'||l_return_status);
761: oe_debug_pub.add('Result code'||l_response_code.result_code);
762: oe_debug_pub.add('trx Error'||l_err_message);
763: END IF;

Line 760: oe_debug_pub.add('After call to Create_Transaction_Extension'||l_return_status);

756: WHEN OTHERS THEN
757: l_err_message := SQLERRM;
758: IF l_debug_level > 0 THEN
759: oe_debug_pub.add('Create_Transaction_Extension assignment error....others');
760: oe_debug_pub.add('After call to Create_Transaction_Extension'||l_return_status);
761: oe_debug_pub.add('Result code'||l_response_code.result_code);
762: oe_debug_pub.add('trx Error'||l_err_message);
763: END IF;
764:

Line 761: oe_debug_pub.add('Result code'||l_response_code.result_code);

757: l_err_message := SQLERRM;
758: IF l_debug_level > 0 THEN
759: oe_debug_pub.add('Create_Transaction_Extension assignment error....others');
760: oe_debug_pub.add('After call to Create_Transaction_Extension'||l_return_status);
761: oe_debug_pub.add('Result code'||l_response_code.result_code);
762: oe_debug_pub.add('trx Error'||l_err_message);
763: END IF;
764:
765: X_return_status := FND_API.G_RET_STS_UNEXP_ERROR;

Line 762: oe_debug_pub.add('trx Error'||l_err_message);

758: IF l_debug_level > 0 THEN
759: oe_debug_pub.add('Create_Transaction_Extension assignment error....others');
760: oe_debug_pub.add('After call to Create_Transaction_Extension'||l_return_status);
761: oe_debug_pub.add('Result code'||l_response_code.result_code);
762: oe_debug_pub.add('trx Error'||l_err_message);
763: END IF;
764:
765: X_return_status := FND_API.G_RET_STS_UNEXP_ERROR;
766: IF FND_MSG_PUB.Check_Msg_Level(FND_MSG_PUB.G_MSG_LVL_UNEXP_ERROR)

Line 828: l_debug_level CONSTANT NUMBER := oe_debug_pub.g_debug_level;

824: L_instrument IBY_FNDCPT_SETUP_PUB.PmtInstrument_rec_type;
825: L_assign_id NUMBER;
826: l_invoice_to_org_id OE_ORDER_LINES_ALL.invoice_to_org_id%TYPE;
827: L_pmt_channel_code IBY_FNDCPT_PMT_CHNNLS_VL.payment_channel_code%TYPE;
828: l_debug_level CONSTANT NUMBER := oe_debug_pub.g_debug_level;
829: l_payment_number NUMBER;
830: l_cust_account_id NUMBER; --New
831: l_party_site_id NUMBER;
832: --Bug 4885313

Line 857: oe_debug_pub.add('Entering OE_PAYMENT_TRXN_UTIL.Update_Payment_Trxn...');

853: BEGIN
854:
855:
856: IF l_debug_level > 0 THEN
857: oe_debug_pub.add('Entering OE_PAYMENT_TRXN_UTIL.Update_Payment_Trxn...');
858: END IF;
859:
860: IF p_payment_type_code IN( 'CREDIT_CARD') THEN
861: L_pmt_channel_code := p_payment_type_code;

Line 874: oe_debug_pub.add('Payment channel code returned --->'||l_pmt_channel_code);

870: l_pmt_channel_code := 'BANK_ACCT_XFER';
871: END IF;
872:
873: IF l_debug_level > 0 THEN
874: oe_debug_pub.add('Payment channel code returned --->'||l_pmt_channel_code);
875: END IF;
876:
877: --Getting the instrument type based on
878: --payment channel code

Line 885: oe_debug_pub.add('Instrument type and instrument id'||l_instrument_type||' and '||l_instrument_id);

881: FROM iby_fndcpt_all_pmt_channels_v ifapc
882: WHERE ifapc.payment_channel_code = l_pmt_channel_code;
883:
884: IF l_debug_level > 0 THEN
885: oe_debug_pub.add('Instrument type and instrument id'||l_instrument_type||' and '||l_instrument_id);
886: END IF;
887:
888: --Get party id for the bill to site Verify
889:

Line 905: oe_debug_pub.add('INVOICE_TO_ORG_ID and ORG_ID'||l_invoice_to_org_id||' and '||l_org_id);

901: l_org_id := OE_Order_Cache.g_header_rec.org_id;
902: end if;
903:
904: IF l_debug_level > 0 THEN
905: oe_debug_pub.add('INVOICE_TO_ORG_ID and ORG_ID'||l_invoice_to_org_id||' and '||l_org_id);
906: END IF;
907:
908: Begin
909: Select hca.party_id, acct_site.cust_account_id,acct_site.party_site_id

Line 926: oe_debug_pub.add('Party id retrieved from hz tables-->'||l_party_id);

922: Null;
923: End;
924:
925: IF l_debug_level > 0 THEN
926: oe_debug_pub.add('Party id retrieved from hz tables-->'||l_party_id);
927: oe_debug_pub.add('Payment trxid..'||p_payment_trx_id);
928: END IF;
929:
930:

Line 927: oe_debug_pub.add('Payment trxid..'||p_payment_trx_id);

923: End;
924:
925: IF l_debug_level > 0 THEN
926: oe_debug_pub.add('Party id retrieved from hz tables-->'||l_party_id);
927: oe_debug_pub.add('Payment trxid..'||p_payment_trx_id);
928: END IF;
929:
930:
931: l_payer.payment_function := 'CUSTOMER_PAYMENT';

Line 939: oe_debug_pub.add('Payer context values');

935: l_payer.cust_account_id := l_cust_account_id;
936: l_payer.account_site_id := p_site_use_id;
937:
938: IF l_debug_level > 0 THEN
939: oe_debug_pub.add('Payer context values');
940: oe_debug_pub.add('Payment function --- CUSTOMER_PAYMENT');
941: oe_debug_pub.add('PARTY ID'||l_party_id);
942: oe_debug_pub.add('org_id'||l_org_id);
943: oe_debug_pub.add('org type'||l_org_type);

Line 940: oe_debug_pub.add('Payment function --- CUSTOMER_PAYMENT');

936: l_payer.account_site_id := p_site_use_id;
937:
938: IF l_debug_level > 0 THEN
939: oe_debug_pub.add('Payer context values');
940: oe_debug_pub.add('Payment function --- CUSTOMER_PAYMENT');
941: oe_debug_pub.add('PARTY ID'||l_party_id);
942: oe_debug_pub.add('org_id'||l_org_id);
943: oe_debug_pub.add('org type'||l_org_type);
944: oe_debug_pub.add('cust acct id'||l_cust_account_id);

Line 941: oe_debug_pub.add('PARTY ID'||l_party_id);

937:
938: IF l_debug_level > 0 THEN
939: oe_debug_pub.add('Payer context values');
940: oe_debug_pub.add('Payment function --- CUSTOMER_PAYMENT');
941: oe_debug_pub.add('PARTY ID'||l_party_id);
942: oe_debug_pub.add('org_id'||l_org_id);
943: oe_debug_pub.add('org type'||l_org_type);
944: oe_debug_pub.add('cust acct id'||l_cust_account_id);
945: oe_debug_pub.add('account site id'||p_site_use_id);

Line 942: oe_debug_pub.add('org_id'||l_org_id);

938: IF l_debug_level > 0 THEN
939: oe_debug_pub.add('Payer context values');
940: oe_debug_pub.add('Payment function --- CUSTOMER_PAYMENT');
941: oe_debug_pub.add('PARTY ID'||l_party_id);
942: oe_debug_pub.add('org_id'||l_org_id);
943: oe_debug_pub.add('org type'||l_org_type);
944: oe_debug_pub.add('cust acct id'||l_cust_account_id);
945: oe_debug_pub.add('account site id'||p_site_use_id);
946: END IF;

Line 943: oe_debug_pub.add('org type'||l_org_type);

939: oe_debug_pub.add('Payer context values');
940: oe_debug_pub.add('Payment function --- CUSTOMER_PAYMENT');
941: oe_debug_pub.add('PARTY ID'||l_party_id);
942: oe_debug_pub.add('org_id'||l_org_id);
943: oe_debug_pub.add('org type'||l_org_type);
944: oe_debug_pub.add('cust acct id'||l_cust_account_id);
945: oe_debug_pub.add('account site id'||p_site_use_id);
946: END IF;
947:

Line 944: oe_debug_pub.add('cust acct id'||l_cust_account_id);

940: oe_debug_pub.add('Payment function --- CUSTOMER_PAYMENT');
941: oe_debug_pub.add('PARTY ID'||l_party_id);
942: oe_debug_pub.add('org_id'||l_org_id);
943: oe_debug_pub.add('org type'||l_org_type);
944: oe_debug_pub.add('cust acct id'||l_cust_account_id);
945: oe_debug_pub.add('account site id'||p_site_use_id);
946: END IF;
947:
948: IF p_payment_type_code IN ('ACH', 'DIRECT_DEBIT') THEN

Line 945: oe_debug_pub.add('account site id'||p_site_use_id);

941: oe_debug_pub.add('PARTY ID'||l_party_id);
942: oe_debug_pub.add('org_id'||l_org_id);
943: oe_debug_pub.add('org type'||l_org_type);
944: oe_debug_pub.add('cust acct id'||l_cust_account_id);
945: oe_debug_pub.add('account site id'||p_site_use_id);
946: END IF;
947:
948: IF p_payment_type_code IN ('ACH', 'DIRECT_DEBIT') THEN
949: --bug 5170754

Line 960: oe_debug_pub.add('Assignment id for ach / direct debit --> '||p_payment_trx_id);

956: --set_payer_assignment API of payments to get the assignment
957: --id even though the assignment id is passed from the front end.
958: IF p_payment_trx_id IS NOT NULL THEN
959: IF l_debug_level > 0 THEN
960: oe_debug_pub.add('Assignment id for ach / direct debit --> '||p_payment_trx_id);
961: END IF;
962:
963: SELECT INSTRUMENT_ID into
964: l_instrument_id from

Line 976: oe_debug_pub.add('Before call to Set payer instr assignment API...');

972: l_assignment_attribs.instrument := l_instrument;
973: l_assignment_attribs.Assignment_Id := p_payment_trx_id; -- bug 9857904
974:
975: IF l_debug_level > 0 THEN
976: oe_debug_pub.add('Before call to Set payer instr assignment API...');
977: oe_debug_pub.add('Assignment attributes passed ');
978: oe_debug_pub.add('l_instrument.instrument_id ---> '||l_instrument_id);
979: oe_debug_pub.add('l_instrument.instrument_type -> '||l_instrument_type);
980: END IF;

Line 977: oe_debug_pub.add('Assignment attributes passed ');

973: l_assignment_attribs.Assignment_Id := p_payment_trx_id; -- bug 9857904
974:
975: IF l_debug_level > 0 THEN
976: oe_debug_pub.add('Before call to Set payer instr assignment API...');
977: oe_debug_pub.add('Assignment attributes passed ');
978: oe_debug_pub.add('l_instrument.instrument_id ---> '||l_instrument_id);
979: oe_debug_pub.add('l_instrument.instrument_type -> '||l_instrument_type);
980: END IF;
981:

Line 978: oe_debug_pub.add('l_instrument.instrument_id ---> '||l_instrument_id);

974:
975: IF l_debug_level > 0 THEN
976: oe_debug_pub.add('Before call to Set payer instr assignment API...');
977: oe_debug_pub.add('Assignment attributes passed ');
978: oe_debug_pub.add('l_instrument.instrument_id ---> '||l_instrument_id);
979: oe_debug_pub.add('l_instrument.instrument_type -> '||l_instrument_type);
980: END IF;
981:
982: --

Line 979: oe_debug_pub.add('l_instrument.instrument_type -> '||l_instrument_type);

975: IF l_debug_level > 0 THEN
976: oe_debug_pub.add('Before call to Set payer instr assignment API...');
977: oe_debug_pub.add('Assignment attributes passed ');
978: oe_debug_pub.add('l_instrument.instrument_id ---> '||l_instrument_id);
979: oe_debug_pub.add('l_instrument.instrument_type -> '||l_instrument_type);
980: END IF;
981:
982: --
983: IBY_FNDCPT_SETUP_PUB.Set_Payer_Instr_Assignment

Line 998: oe_debug_pub.add('Result error code in Set_Payer_Instr_Assignment in set payer instr assignment '||l_response_code.result_code);

994: --oe_msg_pub.add_text(p_message_text => l_response_code.result_message);
995:
996: IF l_return_status = FND_API.G_RET_STS_ERROR THEN
997: IF l_debug_level > 0 THEN
998: oe_debug_pub.add('Result error code in Set_Payer_Instr_Assignment in set payer instr assignment '||l_response_code.result_code);
999: END IF;
1000: IF l_response_code.result_code = 'INVALID_CARD_NUMBER' THEN
1001: FND_MESSAGE.SET_NAME('ONT','OE_VPM_CC_ACCT_NOT_SET');
1002: OE_MSG_PUB.ADD;

Line 1004: oe_debug_pub.add( 'OEXUPTXB: Invalid card number or expiration date in set payer instr assignment ' ||l_response_code.result_code) ;

1000: IF l_response_code.result_code = 'INVALID_CARD_NUMBER' THEN
1001: FND_MESSAGE.SET_NAME('ONT','OE_VPM_CC_ACCT_NOT_SET');
1002: OE_MSG_PUB.ADD;
1003: IF l_debug_level > 0 THEN
1004: oe_debug_pub.add( 'OEXUPTXB: Invalid card number or expiration date in set payer instr assignment ' ||l_response_code.result_code) ;
1005: END IF;
1006: ELSIF l_response_code.result_code = 'INVALID_ADDRESS' THEN
1007: FND_MESSAGE.SET_NAME('ONT','OE_CC_BILL_TO_ADDRESS_INVALID');
1008: OE_MSG_PUB.ADD;

Line 1010: oe_debug_pub.add( 'OEXUPTXB: Invalid billing address in set payer instr assignment '||l_response_code.result_code ) ;

1006: ELSIF l_response_code.result_code = 'INVALID_ADDRESS' THEN
1007: FND_MESSAGE.SET_NAME('ONT','OE_CC_BILL_TO_ADDRESS_INVALID');
1008: OE_MSG_PUB.ADD;
1009: IF l_debug_level > 0 THEN
1010: oe_debug_pub.add( 'OEXUPTXB: Invalid billing address in set payer instr assignment '||l_response_code.result_code ) ;
1011: END IF;
1012: ELSIF l_response_code.result_code = 'INVALID_CARD_ISSUER' THEN
1013: FND_MESSAGE.SET_NAME('ONT','OE_VPM_CC_ACCT_NOT_SET'); --bug 5012613
1014: OE_MSG_PUB.ADD;

Line 1016: oe_debug_pub.add( 'OEXUPTXB: Invalid billing address in set payer instr assignment ' ||l_response_code.result_code) ;

1012: ELSIF l_response_code.result_code = 'INVALID_CARD_ISSUER' THEN
1013: FND_MESSAGE.SET_NAME('ONT','OE_VPM_CC_ACCT_NOT_SET'); --bug 5012613
1014: OE_MSG_PUB.ADD;
1015: IF l_debug_level > 0 THEN
1016: oe_debug_pub.add( 'OEXUPTXB: Invalid billing address in set payer instr assignment ' ||l_response_code.result_code) ;
1017: END IF;
1018: END IF;
1019: RAISE FND_API.G_EXC_ERROR;
1020: ELSIF l_return_status = FND_API.G_RET_STS_UNEXP_ERROR THEN

Line 1022: oe_debug_pub.add('Result error code in Set_Payer_Instr_Assignment'||l_response_code.result_code);

1018: END IF;
1019: RAISE FND_API.G_EXC_ERROR;
1020: ELSIF l_return_status = FND_API.G_RET_STS_UNEXP_ERROR THEN
1021: IF l_debug_level > 0 THEN
1022: oe_debug_pub.add('Result error code in Set_Payer_Instr_Assignment'||l_response_code.result_code);
1023: END IF;
1024: RAISE FND_API.G_EXC_UNEXPECTED_ERROR;
1025: ELSIF l_return_status =FND_API.G_RET_STS_SUCCESS THEN
1026: IF l_debug_level > 0 THEN

Line 1027: oe_debug_pub.add('Set_Payer_Instr_Assignment assignment Successful....');

1023: END IF;
1024: RAISE FND_API.G_EXC_UNEXPECTED_ERROR;
1025: ELSIF l_return_status =FND_API.G_RET_STS_SUCCESS THEN
1026: IF l_debug_level > 0 THEN
1027: oe_debug_pub.add('Set_Payer_Instr_Assignment assignment Successful....');
1028: oe_debug_pub.add('After calling Set_Payer_Instr_Assignment');
1029: oe_debug_pub.add('Instr assignment id'||l_assign_id);
1030: END IF;
1031: END IF;

Line 1028: oe_debug_pub.add('After calling Set_Payer_Instr_Assignment');

1024: RAISE FND_API.G_EXC_UNEXPECTED_ERROR;
1025: ELSIF l_return_status =FND_API.G_RET_STS_SUCCESS THEN
1026: IF l_debug_level > 0 THEN
1027: oe_debug_pub.add('Set_Payer_Instr_Assignment assignment Successful....');
1028: oe_debug_pub.add('After calling Set_Payer_Instr_Assignment');
1029: oe_debug_pub.add('Instr assignment id'||l_assign_id);
1030: END IF;
1031: END IF;
1032:

Line 1029: oe_debug_pub.add('Instr assignment id'||l_assign_id);

1025: ELSIF l_return_status =FND_API.G_RET_STS_SUCCESS THEN
1026: IF l_debug_level > 0 THEN
1027: oe_debug_pub.add('Set_Payer_Instr_Assignment assignment Successful....');
1028: oe_debug_pub.add('After calling Set_Payer_Instr_Assignment');
1029: oe_debug_pub.add('Instr assignment id'||l_assign_id);
1030: END IF;
1031: END IF;
1032:
1033: --END IF; --bug 5170754

Line 1038: oe_debug_pub.add('l_inst id'||l_instrument_id);

1034: ELSIF p_payment_type_code = 'CREDIT_CARD' THEN
1035:
1036: L_assignment_attribs.Assignment_Id := p_instrument_assignment_id; --BUG#10066595
1037: IF l_debug_level > 0 THEN
1038: oe_debug_pub.add('l_inst id'||l_instrument_id);
1039: oe_debug_pub.add('Instr assignment id'||l_instrument_assignment_id);
1040: --oe_debug_pub.add('X value'||instr(p_card_number,'X'));
1041: END IF;
1042:

Line 1039: oe_debug_pub.add('Instr assignment id'||l_instrument_assignment_id);

1035:
1036: L_assignment_attribs.Assignment_Id := p_instrument_assignment_id; --BUG#10066595
1037: IF l_debug_level > 0 THEN
1038: oe_debug_pub.add('l_inst id'||l_instrument_id);
1039: oe_debug_pub.add('Instr assignment id'||l_instrument_assignment_id);
1040: --oe_debug_pub.add('X value'||instr(p_card_number,'X'));
1041: END IF;
1042:
1043: IF p_update_card_flag = 'Y' AND l_instrument_id is not null THEN

Line 1040: --oe_debug_pub.add('X value'||instr(p_card_number,'X'));

1036: L_assignment_attribs.Assignment_Id := p_instrument_assignment_id; --BUG#10066595
1037: IF l_debug_level > 0 THEN
1038: oe_debug_pub.add('l_inst id'||l_instrument_id);
1039: oe_debug_pub.add('Instr assignment id'||l_instrument_assignment_id);
1040: --oe_debug_pub.add('X value'||instr(p_card_number,'X'));
1041: END IF;
1042:
1043: IF p_update_card_flag = 'Y' AND l_instrument_id is not null THEN
1044: IF l_debug_level > 0 THEN

Line 1045: oe_debug_pub.add('Before calling update_card..');

1041: END IF;
1042:
1043: IF p_update_card_flag = 'Y' AND l_instrument_id is not null THEN
1044: IF l_debug_level > 0 THEN
1045: oe_debug_pub.add('Before calling update_card..');
1046: --oe_debug_pub.add('Expiration date passed...'||p_exp_date);
1047: --oe_debug_pub.add('Holder name'||p_card_holder_name);
1048: oe_debug_pub.add('Instrument id'||l_instrument_id);
1049: END IF;

Line 1046: --oe_debug_pub.add('Expiration date passed...'||p_exp_date);

1042:
1043: IF p_update_card_flag = 'Y' AND l_instrument_id is not null THEN
1044: IF l_debug_level > 0 THEN
1045: oe_debug_pub.add('Before calling update_card..');
1046: --oe_debug_pub.add('Expiration date passed...'||p_exp_date);
1047: --oe_debug_pub.add('Holder name'||p_card_holder_name);
1048: oe_debug_pub.add('Instrument id'||l_instrument_id);
1049: END IF;
1050: L_credit_card_rec.expiration_date := p_exp_date;

Line 1047: --oe_debug_pub.add('Holder name'||p_card_holder_name);

1043: IF p_update_card_flag = 'Y' AND l_instrument_id is not null THEN
1044: IF l_debug_level > 0 THEN
1045: oe_debug_pub.add('Before calling update_card..');
1046: --oe_debug_pub.add('Expiration date passed...'||p_exp_date);
1047: --oe_debug_pub.add('Holder name'||p_card_holder_name);
1048: oe_debug_pub.add('Instrument id'||l_instrument_id);
1049: END IF;
1050: L_credit_card_rec.expiration_date := p_exp_date;
1051: l_credit_card_rec.Card_Holder_Name := p_card_holder_name;

Line 1048: oe_debug_pub.add('Instrument id'||l_instrument_id);

1044: IF l_debug_level > 0 THEN
1045: oe_debug_pub.add('Before calling update_card..');
1046: --oe_debug_pub.add('Expiration date passed...'||p_exp_date);
1047: --oe_debug_pub.add('Holder name'||p_card_holder_name);
1048: oe_debug_pub.add('Instrument id'||l_instrument_id);
1049: END IF;
1050: L_credit_card_rec.expiration_date := p_exp_date;
1051: l_credit_card_rec.Card_Holder_Name := p_card_holder_name;
1052: l_credit_Card_rec.card_id := l_instrument_id;

Line 1070: oe_debug_pub.add('Result error code in Update_Card exp'||l_response_code.result_code);

1066: IF l_return_status = FND_API.G_RET_STS_ERROR THEN
1067: FND_MESSAGE.SET_NAME('ONT','OE_VPM_CC_ACCT_NOT_SET'); --12691100
1068: OE_MSG_PUB.ADD; --12691100
1069: IF l_debug_level > 0 THEN
1070: oe_debug_pub.add('Result error code in Update_Card exp'||l_response_code.result_code);
1071: END IF;
1072: RAISE FND_API.G_EXC_ERROR;
1073: ELSIF l_return_status = FND_API.G_RET_STS_UNEXP_ERROR THEN
1074: IF l_debug_level > 0 THEN

Line 1075: oe_debug_pub.add('Result error code in Update_Card unxc'||l_response_code.result_code);

1071: END IF;
1072: RAISE FND_API.G_EXC_ERROR;
1073: ELSIF l_return_status = FND_API.G_RET_STS_UNEXP_ERROR THEN
1074: IF l_debug_level > 0 THEN
1075: oe_debug_pub.add('Result error code in Update_Card unxc'||l_response_code.result_code);
1076: END IF;
1077: RAISE FND_API.G_EXC_UNEXPECTED_ERROR;
1078: ELSIF l_return_status =FND_API.G_RET_STS_SUCCESS THEN
1079: IF l_debug_level > 0 THEN

Line 1080: oe_debug_pub.add('Update_Card Successful....');

1076: END IF;
1077: RAISE FND_API.G_EXC_UNEXPECTED_ERROR;
1078: ELSIF l_return_status =FND_API.G_RET_STS_SUCCESS THEN
1079: IF l_debug_level > 0 THEN
1080: oe_debug_pub.add('Update_Card Successful....');
1081: oe_debug_pub.add('Return status '||l_return_status);
1082: END IF;
1083: END IF; --return status
1084: END IF; --update card flag

Line 1081: oe_debug_pub.add('Return status '||l_return_status);

1077: RAISE FND_API.G_EXC_UNEXPECTED_ERROR;
1078: ELSIF l_return_status =FND_API.G_RET_STS_SUCCESS THEN
1079: IF l_debug_level > 0 THEN
1080: oe_debug_pub.add('Update_Card Successful....');
1081: oe_debug_pub.add('Return status '||l_return_status);
1082: END IF;
1083: END IF; --return status
1084: END IF; --update card flag
1085:

Line 1088: oe_debug_pub.add('Before call to Set payer instr assignment API...');

1084: END IF; --update card flag
1085:
1086: IF l_instrument_assignment_id IS NOT NULL THEN
1087: IF l_debug_level > 0 THEN
1088: oe_debug_pub.add('Before call to Set payer instr assignment API...');
1089: oe_debug_pub.add('Assignment attributes passed ');
1090: oe_debug_pub.add('l_instrument.instrument_id ---> '||l_instrument_id);
1091: oe_debug_pub.add('l_instrument.instrument_type -> '||l_instrument_type);
1092: END IF;

Line 1089: oe_debug_pub.add('Assignment attributes passed ');

1085:
1086: IF l_instrument_assignment_id IS NOT NULL THEN
1087: IF l_debug_level > 0 THEN
1088: oe_debug_pub.add('Before call to Set payer instr assignment API...');
1089: oe_debug_pub.add('Assignment attributes passed ');
1090: oe_debug_pub.add('l_instrument.instrument_id ---> '||l_instrument_id);
1091: oe_debug_pub.add('l_instrument.instrument_type -> '||l_instrument_type);
1092: END IF;
1093: l_instrument.instrument_id := l_instrument_id;

Line 1090: oe_debug_pub.add('l_instrument.instrument_id ---> '||l_instrument_id);

1086: IF l_instrument_assignment_id IS NOT NULL THEN
1087: IF l_debug_level > 0 THEN
1088: oe_debug_pub.add('Before call to Set payer instr assignment API...');
1089: oe_debug_pub.add('Assignment attributes passed ');
1090: oe_debug_pub.add('l_instrument.instrument_id ---> '||l_instrument_id);
1091: oe_debug_pub.add('l_instrument.instrument_type -> '||l_instrument_type);
1092: END IF;
1093: l_instrument.instrument_id := l_instrument_id;
1094: l_instrument.instrument_type := l_instrument_type;

Line 1091: oe_debug_pub.add('l_instrument.instrument_type -> '||l_instrument_type);

1087: IF l_debug_level > 0 THEN
1088: oe_debug_pub.add('Before call to Set payer instr assignment API...');
1089: oe_debug_pub.add('Assignment attributes passed ');
1090: oe_debug_pub.add('l_instrument.instrument_id ---> '||l_instrument_id);
1091: oe_debug_pub.add('l_instrument.instrument_type -> '||l_instrument_type);
1092: END IF;
1093: l_instrument.instrument_id := l_instrument_id;
1094: l_instrument.instrument_type := l_instrument_type;
1095: l_assignment_attribs.instrument := l_instrument;

Line 1115: oe_debug_pub.add( 'OEXUPTXB: Invalid card number or expiration date in set payer instr assignment ' || l_response_code.result_code ) ;

1111: IF l_response_code.result_code = 'INVALID_CARD_NUMBER' THEN
1112: FND_MESSAGE.SET_NAME('ONT','OE_VPM_CC_ACCT_NOT_SET');
1113: OE_MSG_PUB.ADD;
1114: IF l_debug_level > 0 THEN
1115: oe_debug_pub.add( 'OEXUPTXB: Invalid card number or expiration date in set payer instr assignment ' || l_response_code.result_code ) ;
1116: END IF;
1117: ELSIF l_response_code.result_code = 'INVALID_ADDRESS' THEN
1118: FND_MESSAGE.SET_NAME('ONT','OE_CC_BILL_TO_ADDRESS_INVALID');
1119: OE_MSG_PUB.ADD;

Line 1121: oe_debug_pub.add( 'OEXUPTXB: Invalid billing address in set payer instr assignment ' || l_response_code.result_code) ;

1117: ELSIF l_response_code.result_code = 'INVALID_ADDRESS' THEN
1118: FND_MESSAGE.SET_NAME('ONT','OE_CC_BILL_TO_ADDRESS_INVALID');
1119: OE_MSG_PUB.ADD;
1120: IF l_debug_level > 0 THEN
1121: oe_debug_pub.add( 'OEXUPTXB: Invalid billing address in set payer instr assignment ' || l_response_code.result_code) ;
1122: END IF;
1123: ELSIF l_response_code.result_code = 'INVALID_CARD_ISSUER' THEN
1124: FND_MESSAGE.SET_NAME('ONT','OE_VPM_CC_ACCT_NOT_SET'); --bug 5012613
1125: OE_MSG_PUB.ADD;

Line 1127: oe_debug_pub.add( 'OEXUPTXB: Invalid billing address in set payer instr assignment ' || l_response_code.result_code) ;

1123: ELSIF l_response_code.result_code = 'INVALID_CARD_ISSUER' THEN
1124: FND_MESSAGE.SET_NAME('ONT','OE_VPM_CC_ACCT_NOT_SET'); --bug 5012613
1125: OE_MSG_PUB.ADD;
1126: IF l_debug_level > 0 THEN
1127: oe_debug_pub.add( 'OEXUPTXB: Invalid billing address in set payer instr assignment ' || l_response_code.result_code) ;
1128: END IF;
1129: ELSE --Setting a generic message bug 5244099
1130: FND_MESSAGE.SET_NAME('ONT','OE_VPM_CC_ACCT_NOT_SET');
1131: OE_MSG_PUB.ADD;

Line 1133: oe_debug_pub.add( 'OEXUPTXB: Setting the generic message in set payer instr assignment ' || l_response_code.result_code) ;

1129: ELSE --Setting a generic message bug 5244099
1130: FND_MESSAGE.SET_NAME('ONT','OE_VPM_CC_ACCT_NOT_SET');
1131: OE_MSG_PUB.ADD;
1132: IF l_debug_level > 0 THEN
1133: oe_debug_pub.add( 'OEXUPTXB: Setting the generic message in set payer instr assignment ' || l_response_code.result_code) ;
1134: END IF;
1135: -- 16604394
1136: END IF;
1137: RAISE FND_API.G_EXC_ERROR;

Line 1143: oe_debug_pub.add('Unexpected result error code in Set_Payer_Instr_Assignment-->'||l_response_code.result_code);

1139: -- 16604394
1140: FND_MESSAGE.SET_NAME('ONT','OE_VPM_CC_ACCT_NOT_SET'); --bug 5244099
1141: OE_MSG_PUB.ADD;
1142: IF l_debug_level > 0 THEN
1143: oe_debug_pub.add('Unexpected result error code in Set_Payer_Instr_Assignment-->'||l_response_code.result_code);
1144: END IF;
1145: -- 16604394
1146: RAISE FND_API.G_EXC_UNEXPECTED_ERROR;
1147: ELSIF l_return_status =FND_API.G_RET_STS_SUCCESS THEN

Line 1149: oe_debug_pub.add('Set Payer instr assignment Successful....');

1145: -- 16604394
1146: RAISE FND_API.G_EXC_UNEXPECTED_ERROR;
1147: ELSIF l_return_status =FND_API.G_RET_STS_SUCCESS THEN
1148: IF l_debug_level > 0 THEN
1149: oe_debug_pub.add('Set Payer instr assignment Successful....');
1150: oe_debug_pub.add('After calling Set_Payer_Instr_Assignment');
1151: oe_debug_pub.add('Instr assignment id'||l_assign_id);
1152: END IF;
1153: END IF;

Line 1150: oe_debug_pub.add('After calling Set_Payer_Instr_Assignment');

1146: RAISE FND_API.G_EXC_UNEXPECTED_ERROR;
1147: ELSIF l_return_status =FND_API.G_RET_STS_SUCCESS THEN
1148: IF l_debug_level > 0 THEN
1149: oe_debug_pub.add('Set Payer instr assignment Successful....');
1150: oe_debug_pub.add('After calling Set_Payer_Instr_Assignment');
1151: oe_debug_pub.add('Instr assignment id'||l_assign_id);
1152: END IF;
1153: END IF;
1154: ELSE

Line 1151: oe_debug_pub.add('Instr assignment id'||l_assign_id);

1147: ELSIF l_return_status =FND_API.G_RET_STS_SUCCESS THEN
1148: IF l_debug_level > 0 THEN
1149: oe_debug_pub.add('Set Payer instr assignment Successful....');
1150: oe_debug_pub.add('After calling Set_Payer_Instr_Assignment');
1151: oe_debug_pub.add('Instr assignment id'||l_assign_id);
1152: END IF;
1153: END IF;
1154: ELSE
1155: L_credit_card_rec.owner_id := l_party_id;

Line 1164: oe_debug_pub.add('Before calling process credit card....');

1160: L_credit_card_rec.card_issuer := p_card_code;
1161: L_credit_card_rec.instrument_type := l_instrument_type;
1162:
1163: IF l_debug_level > 0 THEN
1164: oe_debug_pub.add('Before calling process credit card....');
1165: oe_debug_pub.add('l_party_site_id/stmt billing add'||l_party_site_id);
1166: oe_debug_pub.add('site use id/invoice to org'||p_site_use_id);
1167: --oe_debug_pub.add('card number'||p_card_number);
1168: --oe_debug_pub.add('expiration date'||p_exp_date);

Line 1165: oe_debug_pub.add('l_party_site_id/stmt billing add'||l_party_site_id);

1161: L_credit_card_rec.instrument_type := l_instrument_type;
1162:
1163: IF l_debug_level > 0 THEN
1164: oe_debug_pub.add('Before calling process credit card....');
1165: oe_debug_pub.add('l_party_site_id/stmt billing add'||l_party_site_id);
1166: oe_debug_pub.add('site use id/invoice to org'||p_site_use_id);
1167: --oe_debug_pub.add('card number'||p_card_number);
1168: --oe_debug_pub.add('expiration date'||p_exp_date);
1169: --oe_debug_pub.add('instrument_type'||l_instrument_type);

Line 1166: oe_debug_pub.add('site use id/invoice to org'||p_site_use_id);

1162:
1163: IF l_debug_level > 0 THEN
1164: oe_debug_pub.add('Before calling process credit card....');
1165: oe_debug_pub.add('l_party_site_id/stmt billing add'||l_party_site_id);
1166: oe_debug_pub.add('site use id/invoice to org'||p_site_use_id);
1167: --oe_debug_pub.add('card number'||p_card_number);
1168: --oe_debug_pub.add('expiration date'||p_exp_date);
1169: --oe_debug_pub.add('instrument_type'||l_instrument_type);
1170: --oe_debug_pub.add('Card issuer'||p_card_code);

Line 1167: --oe_debug_pub.add('card number'||p_card_number);

1163: IF l_debug_level > 0 THEN
1164: oe_debug_pub.add('Before calling process credit card....');
1165: oe_debug_pub.add('l_party_site_id/stmt billing add'||l_party_site_id);
1166: oe_debug_pub.add('site use id/invoice to org'||p_site_use_id);
1167: --oe_debug_pub.add('card number'||p_card_number);
1168: --oe_debug_pub.add('expiration date'||p_exp_date);
1169: --oe_debug_pub.add('instrument_type'||l_instrument_type);
1170: --oe_debug_pub.add('Card issuer'||p_card_code);
1171: oe_debug_pub.add('Instrument id'||l_instrument_id);

Line 1168: --oe_debug_pub.add('expiration date'||p_exp_date);

1164: oe_debug_pub.add('Before calling process credit card....');
1165: oe_debug_pub.add('l_party_site_id/stmt billing add'||l_party_site_id);
1166: oe_debug_pub.add('site use id/invoice to org'||p_site_use_id);
1167: --oe_debug_pub.add('card number'||p_card_number);
1168: --oe_debug_pub.add('expiration date'||p_exp_date);
1169: --oe_debug_pub.add('instrument_type'||l_instrument_type);
1170: --oe_debug_pub.add('Card issuer'||p_card_code);
1171: oe_debug_pub.add('Instrument id'||l_instrument_id);
1172: --oe_debug_pub.add('Holder name'||p_card_holder_name);

Line 1169: --oe_debug_pub.add('instrument_type'||l_instrument_type);

1165: oe_debug_pub.add('l_party_site_id/stmt billing add'||l_party_site_id);
1166: oe_debug_pub.add('site use id/invoice to org'||p_site_use_id);
1167: --oe_debug_pub.add('card number'||p_card_number);
1168: --oe_debug_pub.add('expiration date'||p_exp_date);
1169: --oe_debug_pub.add('instrument_type'||l_instrument_type);
1170: --oe_debug_pub.add('Card issuer'||p_card_code);
1171: oe_debug_pub.add('Instrument id'||l_instrument_id);
1172: --oe_debug_pub.add('Holder name'||p_card_holder_name);
1173: oe_debug_pub.add('call to process credit card');

Line 1170: --oe_debug_pub.add('Card issuer'||p_card_code);

1166: oe_debug_pub.add('site use id/invoice to org'||p_site_use_id);
1167: --oe_debug_pub.add('card number'||p_card_number);
1168: --oe_debug_pub.add('expiration date'||p_exp_date);
1169: --oe_debug_pub.add('instrument_type'||l_instrument_type);
1170: --oe_debug_pub.add('Card issuer'||p_card_code);
1171: oe_debug_pub.add('Instrument id'||l_instrument_id);
1172: --oe_debug_pub.add('Holder name'||p_card_holder_name);
1173: oe_debug_pub.add('call to process credit card');
1174: END IF;

Line 1171: oe_debug_pub.add('Instrument id'||l_instrument_id);

1167: --oe_debug_pub.add('card number'||p_card_number);
1168: --oe_debug_pub.add('expiration date'||p_exp_date);
1169: --oe_debug_pub.add('instrument_type'||l_instrument_type);
1170: --oe_debug_pub.add('Card issuer'||p_card_code);
1171: oe_debug_pub.add('Instrument id'||l_instrument_id);
1172: --oe_debug_pub.add('Holder name'||p_card_holder_name);
1173: oe_debug_pub.add('call to process credit card');
1174: END IF;
1175:

Line 1172: --oe_debug_pub.add('Holder name'||p_card_holder_name);

1168: --oe_debug_pub.add('expiration date'||p_exp_date);
1169: --oe_debug_pub.add('instrument_type'||l_instrument_type);
1170: --oe_debug_pub.add('Card issuer'||p_card_code);
1171: oe_debug_pub.add('Instrument id'||l_instrument_id);
1172: --oe_debug_pub.add('Holder name'||p_card_holder_name);
1173: oe_debug_pub.add('call to process credit card');
1174: END IF;
1175:
1176: --13488830 /*9092936 start

Line 1173: oe_debug_pub.add('call to process credit card');

1169: --oe_debug_pub.add('instrument_type'||l_instrument_type);
1170: --oe_debug_pub.add('Card issuer'||p_card_code);
1171: oe_debug_pub.add('Instrument id'||l_instrument_id);
1172: --oe_debug_pub.add('Holder name'||p_card_holder_name);
1173: oe_debug_pub.add('call to process credit card');
1174: END IF;
1175:
1176: --13488830 /*9092936 start
1177: IBY_FNDCPT_SETUP_PUB.Process_Credit_Card

Line 1208: oe_debug_pub.add('After call to process credit card....');

1204:
1205: --oe_msg_pub.add_text(p_message_text => l_response_code.result_message);
1206:
1207: IF l_debug_level > 0 THEN
1208: oe_debug_pub.add('After call to process credit card....');
1209: END IF;
1210:
1211:
1212: IF l_return_status = FND_API.G_RET_STS_ERROR THEN

Line 1214: oe_debug_pub.add('Result error code in Process_Credit_Card -->'||l_response_code.result_code);

1210:
1211:
1212: IF l_return_status = FND_API.G_RET_STS_ERROR THEN
1213: IF l_debug_level > 0 THEN
1214: oe_debug_pub.add('Result error code in Process_Credit_Card -->'||l_response_code.result_code);
1215: END IF;
1216: IF l_response_code.result_code = 'INVALID_CARD_NUMBER' THEN
1217: FND_MESSAGE.SET_NAME('ONT','OE_VPM_CC_ACCT_NOT_SET');
1218: OE_MSG_PUB.ADD;

Line 1220: oe_debug_pub.add( 'OEXUPTXB: Invalid card number or expiration date' ) ;

1216: IF l_response_code.result_code = 'INVALID_CARD_NUMBER' THEN
1217: FND_MESSAGE.SET_NAME('ONT','OE_VPM_CC_ACCT_NOT_SET');
1218: OE_MSG_PUB.ADD;
1219: IF l_debug_level > 0 THEN
1220: oe_debug_pub.add( 'OEXUPTXB: Invalid card number or expiration date' ) ;
1221: END IF;
1222: ELSIF l_response_code.result_code = 'INVALID_ADDRESS' THEN
1223: FND_MESSAGE.SET_NAME('ONT','OE_CC_BILL_TO_ADDRESS_INVALID');
1224: OE_MSG_PUB.ADD;

Line 1226: oe_debug_pub.add( 'OEXUPTXB: Invalid billing address' ) ;

1222: ELSIF l_response_code.result_code = 'INVALID_ADDRESS' THEN
1223: FND_MESSAGE.SET_NAME('ONT','OE_CC_BILL_TO_ADDRESS_INVALID');
1224: OE_MSG_PUB.ADD;
1225: IF l_debug_level > 0 THEN
1226: oe_debug_pub.add( 'OEXUPTXB: Invalid billing address' ) ;
1227: END IF;
1228: ELSIF l_response_code.result_code = 'INVALID_CARD_ISSUER' THEN
1229: FND_MESSAGE.SET_NAME('ONT','OE_VPM_CC_ACCT_NOT_SET'); --bug 5012613
1230: OE_MSG_PUB.ADD;

Line 1232: oe_debug_pub.add( 'OEXUPTXB: Invalid billing address' ) ;

1228: ELSIF l_response_code.result_code = 'INVALID_CARD_ISSUER' THEN
1229: FND_MESSAGE.SET_NAME('ONT','OE_VPM_CC_ACCT_NOT_SET'); --bug 5012613
1230: OE_MSG_PUB.ADD;
1231: IF l_debug_level > 0 THEN
1232: oe_debug_pub.add( 'OEXUPTXB: Invalid billing address' ) ;
1233: END IF;
1234: ELSE --Setting a generic message bug 5244099
1235: FND_MESSAGE.SET_NAME('ONT','OE_VPM_CC_ACCT_NOT_SET');
1236: OE_MSG_PUB.ADD;

Line 1238: oe_debug_pub.add( 'OEXUPTXB: Setting the generic message' ) ;

1234: ELSE --Setting a generic message bug 5244099
1235: FND_MESSAGE.SET_NAME('ONT','OE_VPM_CC_ACCT_NOT_SET');
1236: OE_MSG_PUB.ADD;
1237: IF l_debug_level > 0 THEN
1238: oe_debug_pub.add( 'OEXUPTXB: Setting the generic message' ) ;
1239: END IF;
1240: END IF;
1241: RAISE FND_API.G_EXC_ERROR;
1242: ELSIF l_return_status = FND_API.G_RET_STS_UNEXP_ERROR THEN

Line 1246: oe_debug_pub.add('Unexpected result error code in Process_Credit_Card-->'||l_response_code.result_code);

1242: ELSIF l_return_status = FND_API.G_RET_STS_UNEXP_ERROR THEN
1243: FND_MESSAGE.SET_NAME('ONT','OE_VPM_CC_ACCT_NOT_SET'); --bug 5244099
1244: OE_MSG_PUB.ADD;
1245: IF l_debug_level > 0 THEN
1246: oe_debug_pub.add('Unexpected result error code in Process_Credit_Card-->'||l_response_code.result_code);
1247: END IF;
1248: RAISE FND_API.G_EXC_UNEXPECTED_ERROR;
1249: ELSIF l_return_status =FND_API.G_RET_STS_SUCCESS THEN
1250: IF l_debug_level > 0 THEN

Line 1251: oe_debug_pub.add('Process_Credit_Card assignment Successful....');

1247: END IF;
1248: RAISE FND_API.G_EXC_UNEXPECTED_ERROR;
1249: ELSIF l_return_status =FND_API.G_RET_STS_SUCCESS THEN
1250: IF l_debug_level > 0 THEN
1251: oe_debug_pub.add('Process_Credit_Card assignment Successful....');
1252: oe_debug_pub.add('After calling Process_Credit_Card');
1253: oe_debug_pub.add('Instr assignment id'||l_assign_id);
1254: END IF;
1255: END IF; --Return status

Line 1252: oe_debug_pub.add('After calling Process_Credit_Card');

1248: RAISE FND_API.G_EXC_UNEXPECTED_ERROR;
1249: ELSIF l_return_status =FND_API.G_RET_STS_SUCCESS THEN
1250: IF l_debug_level > 0 THEN
1251: oe_debug_pub.add('Process_Credit_Card assignment Successful....');
1252: oe_debug_pub.add('After calling Process_Credit_Card');
1253: oe_debug_pub.add('Instr assignment id'||l_assign_id);
1254: END IF;
1255: END IF; --Return status
1256: END IF;--Instrument assignment id

Line 1253: oe_debug_pub.add('Instr assignment id'||l_assign_id);

1249: ELSIF l_return_status =FND_API.G_RET_STS_SUCCESS THEN
1250: IF l_debug_level > 0 THEN
1251: oe_debug_pub.add('Process_Credit_Card assignment Successful....');
1252: oe_debug_pub.add('After calling Process_Credit_Card');
1253: oe_debug_pub.add('Instr assignment id'||l_assign_id);
1254: END IF;
1255: END IF; --Return status
1256: END IF;--Instrument assignment id
1257: END IF;--payment type code

Line 1272: oe_debug_pub.add('Calling update transaction extension...');

1268: IF OE_Payment_Trxn_Util.g_old_bill_to_site IS NULL THEN
1269: --
1270: --
1271: IF l_debug_level > 0 THEN
1272: oe_debug_pub.add('Calling update transaction extension...');
1273: END IF;
1274:
1275: IF p_payment_type_code IN ('ACH', 'DIRECT_DEBIT') THEN
1276: l_trxn_attribs.Originating_Application_Id := 660;

Line 1291: oe_debug_pub.add('Values passed to Update_trxn_extn');

1287: END IF;
1288: END IF;
1289:
1290: IF l_debug_level > 0 THEN
1291: oe_debug_pub.add('Values passed to Update_trxn_extn');
1292: oe_debug_pub.add('payment channel -->'||l_pmt_channel_code);
1293: oe_debug_pub.add('Assignment id ---->'|| l_assign_id);
1294: oe_debug_pub.add('trxn attributes record type values');
1295: oe_debug_pub.add('l_trxn_attribs.Instrument_Security_Code --->'||p_instrument_security_code);

Line 1292: oe_debug_pub.add('payment channel -->'||l_pmt_channel_code);

1288: END IF;
1289:
1290: IF l_debug_level > 0 THEN
1291: oe_debug_pub.add('Values passed to Update_trxn_extn');
1292: oe_debug_pub.add('payment channel -->'||l_pmt_channel_code);
1293: oe_debug_pub.add('Assignment id ---->'|| l_assign_id);
1294: oe_debug_pub.add('trxn attributes record type values');
1295: oe_debug_pub.add('l_trxn_attribs.Instrument_Security_Code --->'||p_instrument_security_code);
1296: oe_debug_pub.add('l_trxn_attribs.Originating application id ---> 660');

Line 1293: oe_debug_pub.add('Assignment id ---->'|| l_assign_id);

1289:
1290: IF l_debug_level > 0 THEN
1291: oe_debug_pub.add('Values passed to Update_trxn_extn');
1292: oe_debug_pub.add('payment channel -->'||l_pmt_channel_code);
1293: oe_debug_pub.add('Assignment id ---->'|| l_assign_id);
1294: oe_debug_pub.add('trxn attributes record type values');
1295: oe_debug_pub.add('l_trxn_attribs.Instrument_Security_Code --->'||p_instrument_security_code);
1296: oe_debug_pub.add('l_trxn_attribs.Originating application id ---> 660');
1297: oe_debug_pub.add('l_trxn_attribs.order_id ----> '||p_header_id);

Line 1294: oe_debug_pub.add('trxn attributes record type values');

1290: IF l_debug_level > 0 THEN
1291: oe_debug_pub.add('Values passed to Update_trxn_extn');
1292: oe_debug_pub.add('payment channel -->'||l_pmt_channel_code);
1293: oe_debug_pub.add('Assignment id ---->'|| l_assign_id);
1294: oe_debug_pub.add('trxn attributes record type values');
1295: oe_debug_pub.add('l_trxn_attribs.Instrument_Security_Code --->'||p_instrument_security_code);
1296: oe_debug_pub.add('l_trxn_attribs.Originating application id ---> 660');
1297: oe_debug_pub.add('l_trxn_attribs.order_id ----> '||p_header_id);
1298: oe_debug_pub.add('l_trxn_attribs.trxn_ref_number1 --->'||p_line_id);

Line 1295: oe_debug_pub.add('l_trxn_attribs.Instrument_Security_Code --->'||p_instrument_security_code);

1291: oe_debug_pub.add('Values passed to Update_trxn_extn');
1292: oe_debug_pub.add('payment channel -->'||l_pmt_channel_code);
1293: oe_debug_pub.add('Assignment id ---->'|| l_assign_id);
1294: oe_debug_pub.add('trxn attributes record type values');
1295: oe_debug_pub.add('l_trxn_attribs.Instrument_Security_Code --->'||p_instrument_security_code);
1296: oe_debug_pub.add('l_trxn_attribs.Originating application id ---> 660');
1297: oe_debug_pub.add('l_trxn_attribs.order_id ----> '||p_header_id);
1298: oe_debug_pub.add('l_trxn_attribs.trxn_ref_number1 --->'||p_line_id);
1299: oe_debug_pub.add('l_trxn_attribs.trxn_ref_number2 --->'||p_payment_number);

Line 1296: oe_debug_pub.add('l_trxn_attribs.Originating application id ---> 660');

1292: oe_debug_pub.add('payment channel -->'||l_pmt_channel_code);
1293: oe_debug_pub.add('Assignment id ---->'|| l_assign_id);
1294: oe_debug_pub.add('trxn attributes record type values');
1295: oe_debug_pub.add('l_trxn_attribs.Instrument_Security_Code --->'||p_instrument_security_code);
1296: oe_debug_pub.add('l_trxn_attribs.Originating application id ---> 660');
1297: oe_debug_pub.add('l_trxn_attribs.order_id ----> '||p_header_id);
1298: oe_debug_pub.add('l_trxn_attribs.trxn_ref_number1 --->'||p_line_id);
1299: oe_debug_pub.add('l_trxn_attribs.trxn_ref_number2 --->'||p_payment_number);
1300: --oe_debug_pub.add('l_trxn_attribs.VoiceAuth_date ---->'||p_credit_card_approval_date);

Line 1297: oe_debug_pub.add('l_trxn_attribs.order_id ----> '||p_header_id);

1293: oe_debug_pub.add('Assignment id ---->'|| l_assign_id);
1294: oe_debug_pub.add('trxn attributes record type values');
1295: oe_debug_pub.add('l_trxn_attribs.Instrument_Security_Code --->'||p_instrument_security_code);
1296: oe_debug_pub.add('l_trxn_attribs.Originating application id ---> 660');
1297: oe_debug_pub.add('l_trxn_attribs.order_id ----> '||p_header_id);
1298: oe_debug_pub.add('l_trxn_attribs.trxn_ref_number1 --->'||p_line_id);
1299: oe_debug_pub.add('l_trxn_attribs.trxn_ref_number2 --->'||p_payment_number);
1300: --oe_debug_pub.add('l_trxn_attribs.VoiceAuth_date ---->'||p_credit_card_approval_date);
1301: --oe_debug_pub.add('l_trxn_attribs.VoiceAuth_code ---->'||p_credit_card_approval_code);

Line 1298: oe_debug_pub.add('l_trxn_attribs.trxn_ref_number1 --->'||p_line_id);

1294: oe_debug_pub.add('trxn attributes record type values');
1295: oe_debug_pub.add('l_trxn_attribs.Instrument_Security_Code --->'||p_instrument_security_code);
1296: oe_debug_pub.add('l_trxn_attribs.Originating application id ---> 660');
1297: oe_debug_pub.add('l_trxn_attribs.order_id ----> '||p_header_id);
1298: oe_debug_pub.add('l_trxn_attribs.trxn_ref_number1 --->'||p_line_id);
1299: oe_debug_pub.add('l_trxn_attribs.trxn_ref_number2 --->'||p_payment_number);
1300: --oe_debug_pub.add('l_trxn_attribs.VoiceAuth_date ---->'||p_credit_card_approval_date);
1301: --oe_debug_pub.add('l_trxn_attribs.VoiceAuth_code ---->'||p_credit_card_approval_code);
1302: END IF;

Line 1299: oe_debug_pub.add('l_trxn_attribs.trxn_ref_number2 --->'||p_payment_number);

1295: oe_debug_pub.add('l_trxn_attribs.Instrument_Security_Code --->'||p_instrument_security_code);
1296: oe_debug_pub.add('l_trxn_attribs.Originating application id ---> 660');
1297: oe_debug_pub.add('l_trxn_attribs.order_id ----> '||p_header_id);
1298: oe_debug_pub.add('l_trxn_attribs.trxn_ref_number1 --->'||p_line_id);
1299: oe_debug_pub.add('l_trxn_attribs.trxn_ref_number2 --->'||p_payment_number);
1300: --oe_debug_pub.add('l_trxn_attribs.VoiceAuth_date ---->'||p_credit_card_approval_date);
1301: --oe_debug_pub.add('l_trxn_attribs.VoiceAuth_code ---->'||p_credit_card_approval_code);
1302: END IF;
1303:

Line 1300: --oe_debug_pub.add('l_trxn_attribs.VoiceAuth_date ---->'||p_credit_card_approval_date);

1296: oe_debug_pub.add('l_trxn_attribs.Originating application id ---> 660');
1297: oe_debug_pub.add('l_trxn_attribs.order_id ----> '||p_header_id);
1298: oe_debug_pub.add('l_trxn_attribs.trxn_ref_number1 --->'||p_line_id);
1299: oe_debug_pub.add('l_trxn_attribs.trxn_ref_number2 --->'||p_payment_number);
1300: --oe_debug_pub.add('l_trxn_attribs.VoiceAuth_date ---->'||p_credit_card_approval_date);
1301: --oe_debug_pub.add('l_trxn_attribs.VoiceAuth_code ---->'||p_credit_card_approval_code);
1302: END IF;
1303:
1304: --bug 5028932

Line 1301: --oe_debug_pub.add('l_trxn_attribs.VoiceAuth_code ---->'||p_credit_card_approval_code);

1297: oe_debug_pub.add('l_trxn_attribs.order_id ----> '||p_header_id);
1298: oe_debug_pub.add('l_trxn_attribs.trxn_ref_number1 --->'||p_line_id);
1299: oe_debug_pub.add('l_trxn_attribs.trxn_ref_number2 --->'||p_payment_number);
1300: --oe_debug_pub.add('l_trxn_attribs.VoiceAuth_date ---->'||p_credit_card_approval_date);
1301: --oe_debug_pub.add('l_trxn_attribs.VoiceAuth_code ---->'||p_credit_card_approval_code);
1302: END IF;
1303:
1304: --bug 5028932
1305: BEGIN

Line 1318: oe_debug_pub.add('Others part approval code value ---> '||l_approval_code);

1314: EXCEPTION
1315: WHEN OTHERS THEN
1316: l_approval_code := null;
1317: IF l_debug_level >0 THEN
1318: oe_debug_pub.add('Others part approval code value ---> '||l_approval_code);
1319: END IF;
1320: END;
1321:
1322: -- to check if the authorization has been settled

Line 1344: oe_debug_pub.add('Settled Flag value....'||l_settled_flag);

1340: l_old_card_number := NULL;
1341: END;
1342:
1343: IF l_debug_level > 0 THEN
1344: oe_debug_pub.add('Settled Flag value....'||l_settled_flag);
1345: END IF;
1346:
1347:
1348: --If approval code is not null then the transaction

Line 1378: oe_debug_pub.add( 'OEXUPTXB: authorization has either expired or not exists.');

1374:
1375: IF nvl(l_effective_auth_amount,0) = 0 THEN
1376: l_reauthorize_flag := 'Y';
1377: IF l_debug_level > 0 THEN
1378: oe_debug_pub.add( 'OEXUPTXB: authorization has either expired or not exists.');
1379: END IF;
1380: END IF;
1381:
1382: IF l_debug_level > 0 THEN

Line 1383: oe_debug_pub.add('Reauthorize flag value ----> '||l_reauthorize_flag);

1379: END IF;
1380: END IF;
1381:
1382: IF l_debug_level > 0 THEN
1383: oe_debug_pub.add('Reauthorize flag value ----> '||l_reauthorize_flag);
1384: END IF;
1385: END IF;
1386:
1387: IF l_debug_level > 0 THEN

Line 1388: oe_debug_pub.add('Old instrument_id ---> '||l_old_instrument_id);

1384: END IF;
1385: END IF;
1386:
1387: IF l_debug_level > 0 THEN
1388: oe_debug_pub.add('Old instrument_id ---> '||l_old_instrument_id);
1389: oe_debug_pub.add('New instrument id..... '||l_instrument_id);
1390: --oe_debug_pub.add('Old card number -----> '||l_old_card_number);
1391: --oe_debug_pub.add('New card number -----> '||p_card_number);
1392: END IF;

Line 1389: oe_debug_pub.add('New instrument id..... '||l_instrument_id);

1385: END IF;
1386:
1387: IF l_debug_level > 0 THEN
1388: oe_debug_pub.add('Old instrument_id ---> '||l_old_instrument_id);
1389: oe_debug_pub.add('New instrument id..... '||l_instrument_id);
1390: --oe_debug_pub.add('Old card number -----> '||l_old_card_number);
1391: --oe_debug_pub.add('New card number -----> '||p_card_number);
1392: END IF;
1393:

Line 1390: --oe_debug_pub.add('Old card number -----> '||l_old_card_number);

1386:
1387: IF l_debug_level > 0 THEN
1388: oe_debug_pub.add('Old instrument_id ---> '||l_old_instrument_id);
1389: oe_debug_pub.add('New instrument id..... '||l_instrument_id);
1390: --oe_debug_pub.add('Old card number -----> '||l_old_card_number);
1391: --oe_debug_pub.add('New card number -----> '||p_card_number);
1392: END IF;
1393:
1394: IF l_settled_flag = 'Y' OR l_reauthorize_flag = 'Y' THEN

Line 1391: --oe_debug_pub.add('New card number -----> '||p_card_number);

1387: IF l_debug_level > 0 THEN
1388: oe_debug_pub.add('Old instrument_id ---> '||l_old_instrument_id);
1389: oe_debug_pub.add('New instrument id..... '||l_instrument_id);
1390: --oe_debug_pub.add('Old card number -----> '||l_old_card_number);
1391: --oe_debug_pub.add('New card number -----> '||p_card_number);
1392: END IF;
1393:
1394: IF l_settled_flag = 'Y' OR l_reauthorize_flag = 'Y' THEN
1395:

Line 1397: oe_debug_pub.add( 'OEXUPTXB.pls: authorization has been settled, need to re-authorize.');

1393:
1394: IF l_settled_flag = 'Y' OR l_reauthorize_flag = 'Y' THEN
1395:
1396: IF l_debug_level > 0 THEN
1397: oe_debug_pub.add( 'OEXUPTXB.pls: authorization has been settled, need to re-authorize.');
1398: END IF;
1399:
1400: IF Oe_Payment_Trxn_Util.Get_CC_Security_Code_Use = 'REQUIRED'
1401: AND (l_trxn_attribs.Instrument_Security_Code IS NULL OR

Line 1416: oe_debug_pub.add( 'OEXUPTXB.pls: Before calling Create_New_Payment_Trxn');

1412: THEN
1413:
1414: -- need to create a new payment transaction extension as the old one has been settled.
1415: IF l_debug_level > 0 THEN
1416: oe_debug_pub.add( 'OEXUPTXB.pls: Before calling Create_New_Payment_Trxn');
1417: oe_debug_pub.add( 'p_trxn_extension --->'||p_trxn_extension_id);
1418: oe_debug_pub.add( 'p_org_id -----> '||l_org_id);
1419: oe_debug_pub.add( 'p_site_use_id ---> '||p_site_use_id);
1420: oe_debug_pub.add( 'l_trxn_extension_id --> '||l_trxn_extension_id);

Line 1417: oe_debug_pub.add( 'p_trxn_extension --->'||p_trxn_extension_id);

1413:
1414: -- need to create a new payment transaction extension as the old one has been settled.
1415: IF l_debug_level > 0 THEN
1416: oe_debug_pub.add( 'OEXUPTXB.pls: Before calling Create_New_Payment_Trxn');
1417: oe_debug_pub.add( 'p_trxn_extension --->'||p_trxn_extension_id);
1418: oe_debug_pub.add( 'p_org_id -----> '||l_org_id);
1419: oe_debug_pub.add( 'p_site_use_id ---> '||p_site_use_id);
1420: oe_debug_pub.add( 'l_trxn_extension_id --> '||l_trxn_extension_id);
1421: END IF;

Line 1418: oe_debug_pub.add( 'p_org_id -----> '||l_org_id);

1414: -- need to create a new payment transaction extension as the old one has been settled.
1415: IF l_debug_level > 0 THEN
1416: oe_debug_pub.add( 'OEXUPTXB.pls: Before calling Create_New_Payment_Trxn');
1417: oe_debug_pub.add( 'p_trxn_extension --->'||p_trxn_extension_id);
1418: oe_debug_pub.add( 'p_org_id -----> '||l_org_id);
1419: oe_debug_pub.add( 'p_site_use_id ---> '||p_site_use_id);
1420: oe_debug_pub.add( 'l_trxn_extension_id --> '||l_trxn_extension_id);
1421: END IF;
1422:

Line 1419: oe_debug_pub.add( 'p_site_use_id ---> '||p_site_use_id);

1415: IF l_debug_level > 0 THEN
1416: oe_debug_pub.add( 'OEXUPTXB.pls: Before calling Create_New_Payment_Trxn');
1417: oe_debug_pub.add( 'p_trxn_extension --->'||p_trxn_extension_id);
1418: oe_debug_pub.add( 'p_org_id -----> '||l_org_id);
1419: oe_debug_pub.add( 'p_site_use_id ---> '||p_site_use_id);
1420: oe_debug_pub.add( 'l_trxn_extension_id --> '||l_trxn_extension_id);
1421: END IF;
1422:
1423: OE_Verify_Payment_PUB.Create_New_Payment_Trxn (p_trxn_extension_id => p_trxn_extension_id,

Line 1420: oe_debug_pub.add( 'l_trxn_extension_id --> '||l_trxn_extension_id);

1416: oe_debug_pub.add( 'OEXUPTXB.pls: Before calling Create_New_Payment_Trxn');
1417: oe_debug_pub.add( 'p_trxn_extension --->'||p_trxn_extension_id);
1418: oe_debug_pub.add( 'p_org_id -----> '||l_org_id);
1419: oe_debug_pub.add( 'p_site_use_id ---> '||p_site_use_id);
1420: oe_debug_pub.add( 'l_trxn_extension_id --> '||l_trxn_extension_id);
1421: END IF;
1422:
1423: OE_Verify_Payment_PUB.Create_New_Payment_Trxn (p_trxn_extension_id => p_trxn_extension_id,
1424: p_org_id => l_org_id,

Line 1434: oe_debug_pub.add( 'OEXUPTXB.pls: Exp. error in call to Create_New_Payment_Trxn');

1430: x_return_status => x_return_status);
1431:
1432: IF l_return_status = FND_API.G_RET_STS_ERROR THEN
1433: IF l_debug_level > 0 THEN
1434: oe_debug_pub.add( 'OEXUPTXB.pls: Exp. error in call to Create_New_Payment_Trxn');
1435: oe_debug_pub.add( 'SQL ERRM ----> '||sqlerrm);
1436: END IF;
1437: RAISE FND_API.G_EXC_ERROR;
1438: ELSIF l_return_status = FND_API.G_RET_STS_UNEXP_ERROR THEN

Line 1435: oe_debug_pub.add( 'SQL ERRM ----> '||sqlerrm);

1431:
1432: IF l_return_status = FND_API.G_RET_STS_ERROR THEN
1433: IF l_debug_level > 0 THEN
1434: oe_debug_pub.add( 'OEXUPTXB.pls: Exp. error in call to Create_New_Payment_Trxn');
1435: oe_debug_pub.add( 'SQL ERRM ----> '||sqlerrm);
1436: END IF;
1437: RAISE FND_API.G_EXC_ERROR;
1438: ELSIF l_return_status = FND_API.G_RET_STS_UNEXP_ERROR THEN
1439: IF l_debug_level > 0 THEN

Line 1440: oe_debug_pub.add( 'OEXUPTXB.pls: Unexp. error in call to Create_New_Payment_Trxn');

1436: END IF;
1437: RAISE FND_API.G_EXC_ERROR;
1438: ELSIF l_return_status = FND_API.G_RET_STS_UNEXP_ERROR THEN
1439: IF l_debug_level > 0 THEN
1440: oe_debug_pub.add( 'OEXUPTXB.pls: Unexp. error in call to Create_New_Payment_Trxn');
1441: oe_debug_pub.add( 'SQL ERRM ----> '||sqlerrm);
1442: END IF;
1443: RAISE FND_API.G_EXC_UNEXPECTED_ERROR;
1444: END IF;

Line 1441: oe_debug_pub.add( 'SQL ERRM ----> '||sqlerrm);

1437: RAISE FND_API.G_EXC_ERROR;
1438: ELSIF l_return_status = FND_API.G_RET_STS_UNEXP_ERROR THEN
1439: IF l_debug_level > 0 THEN
1440: oe_debug_pub.add( 'OEXUPTXB.pls: Unexp. error in call to Create_New_Payment_Trxn');
1441: oe_debug_pub.add( 'SQL ERRM ----> '||sqlerrm);
1442: END IF;
1443: RAISE FND_API.G_EXC_UNEXPECTED_ERROR;
1444: END IF;
1445:

Line 1447: oe_debug_pub.add( 'OEXUPTXB.pls: After successful call to Create_New_Payment_Trxn');

1443: RAISE FND_API.G_EXC_UNEXPECTED_ERROR;
1444: END IF;
1445:
1446: IF l_debug_level > 0 THEN
1447: oe_debug_pub.add( 'OEXUPTXB.pls: After successful call to Create_New_Payment_Trxn');
1448: oe_debug_pub.add( 'New trxn extension --->'||l_trxn_extension_id);
1449: END IF;
1450: --CC Reversal ER#16014135 Start
1451: Begin

Line 1448: oe_debug_pub.add( 'New trxn extension --->'||l_trxn_extension_id);

1444: END IF;
1445:
1446: IF l_debug_level > 0 THEN
1447: oe_debug_pub.add( 'OEXUPTXB.pls: After successful call to Create_New_Payment_Trxn');
1448: oe_debug_pub.add( 'New trxn extension --->'||l_trxn_extension_id);
1449: END IF;
1450: --CC Reversal ER#16014135 Start
1451: Begin
1452: oe_payment_trxn_util.Reverse_CreditCard_Auth

Line 1462: oe_debug_pub.add('Reverse_CreditCard_Auth error....exc',5);

1458: p_new_trxn_extension_id =>l_trxn_extension_id
1459: );
1460: IF l_return_status = FND_API.G_RET_STS_ERROR THEN
1461: IF l_debug_level > 0 THEN
1462: oe_debug_pub.add('Reverse_CreditCard_Auth error....exc',5);
1463: oe_debug_pub.add('After call to Reverse_CreditCard_Auth'||l_return_status,5);
1464: oe_debug_pub.add('Error'||sqlerrm,5);
1465: END IF;
1466: RAISE FND_API.G_EXC_ERROR;

Line 1463: oe_debug_pub.add('After call to Reverse_CreditCard_Auth'||l_return_status,5);

1459: );
1460: IF l_return_status = FND_API.G_RET_STS_ERROR THEN
1461: IF l_debug_level > 0 THEN
1462: oe_debug_pub.add('Reverse_CreditCard_Auth error....exc',5);
1463: oe_debug_pub.add('After call to Reverse_CreditCard_Auth'||l_return_status,5);
1464: oe_debug_pub.add('Error'||sqlerrm,5);
1465: END IF;
1466: RAISE FND_API.G_EXC_ERROR;
1467:

Line 1464: oe_debug_pub.add('Error'||sqlerrm,5);

1460: IF l_return_status = FND_API.G_RET_STS_ERROR THEN
1461: IF l_debug_level > 0 THEN
1462: oe_debug_pub.add('Reverse_CreditCard_Auth error....exc',5);
1463: oe_debug_pub.add('After call to Reverse_CreditCard_Auth'||l_return_status,5);
1464: oe_debug_pub.add('Error'||sqlerrm,5);
1465: END IF;
1466: RAISE FND_API.G_EXC_ERROR;
1467:
1468: ELSIF l_return_status= FND_API.G_RET_STS_UNEXP_ERROR THEN

Line 1470: oe_debug_pub.add('After call to Reverse_CreditCard_Auth --> Unexpected error',5);

1466: RAISE FND_API.G_EXC_ERROR;
1467:
1468: ELSIF l_return_status= FND_API.G_RET_STS_UNEXP_ERROR THEN
1469: IF l_debug_level > 0 THEN
1470: oe_debug_pub.add('After call to Reverse_CreditCard_Auth --> Unexpected error',5);
1471: oe_debug_pub.add('Error message '||sqlerrm,5);
1472: END IF;
1473: RAISE FND_API.G_EXC_UNEXPECTED_ERROR;
1474: ELSIF l_return_status=FND_API.G_RET_STS_SUCCESS Then

Line 1471: oe_debug_pub.add('Error message '||sqlerrm,5);

1467:
1468: ELSIF l_return_status= FND_API.G_RET_STS_UNEXP_ERROR THEN
1469: IF l_debug_level > 0 THEN
1470: oe_debug_pub.add('After call to Reverse_CreditCard_Auth --> Unexpected error',5);
1471: oe_debug_pub.add('Error message '||sqlerrm,5);
1472: END IF;
1473: RAISE FND_API.G_EXC_UNEXPECTED_ERROR;
1474: ELSIF l_return_status=FND_API.G_RET_STS_SUCCESS Then
1475: IF l_debug_level > 0 THEN

Line 1476: oe_debug_pub.add('Call to Reverse_CreditCard_Auth --> Success',5);

1472: END IF;
1473: RAISE FND_API.G_EXC_UNEXPECTED_ERROR;
1474: ELSIF l_return_status=FND_API.G_RET_STS_SUCCESS Then
1475: IF l_debug_level > 0 THEN
1476: oe_debug_pub.add('Call to Reverse_CreditCard_Auth --> Success',5);
1477: end if;
1478: END IF;
1479: END;
1480: --CC Reversal ER#16014135 End

Line 1500: oe_debug_pub.add('Linda -- p_trxn_extension_id is: '||p_trxn_extension_id);

1496: -- different trxn_extension_id for the same order, we will
1497: -- need to make sure the trxn ref2 is different, as the
1498: -- order id and trxn ref1 would be the same.
1499:
1500: oe_debug_pub.add('Linda -- p_trxn_extension_id is: '||p_trxn_extension_id);
1501:
1502: BEGIN
1503: -- bug 8586227
1504: select trxn_ref_number2

Line 1526: oe_debug_pub.add('Before calling create_transaction extension');

1522: END IF;
1523: -- end of bug 5575513
1524:
1525: IF l_debug_level > 0 THEN
1526: oe_debug_pub.add('Before calling create_transaction extension');
1527: oe_debug_pub.add('payment channel -->'||l_pmt_channel_code);
1528: oe_debug_pub.add('Assignment id ---->'|| l_assign_id);
1529: oe_debug_pub.add('trxn attributes record type values');
1530: oe_debug_pub.add('l_trxn_attribs.Instrument_Security_Code --->'||p_instrument_security_code);

Line 1527: oe_debug_pub.add('payment channel -->'||l_pmt_channel_code);

1523: -- end of bug 5575513
1524:
1525: IF l_debug_level > 0 THEN
1526: oe_debug_pub.add('Before calling create_transaction extension');
1527: oe_debug_pub.add('payment channel -->'||l_pmt_channel_code);
1528: oe_debug_pub.add('Assignment id ---->'|| l_assign_id);
1529: oe_debug_pub.add('trxn attributes record type values');
1530: oe_debug_pub.add('l_trxn_attribs.Instrument_Security_Code --->'||p_instrument_security_code);
1531: oe_debug_pub.add('l_trxn_attribs.Originating application id ---> '||l_trxn_attribs.Originating_application_id);

Line 1528: oe_debug_pub.add('Assignment id ---->'|| l_assign_id);

1524:
1525: IF l_debug_level > 0 THEN
1526: oe_debug_pub.add('Before calling create_transaction extension');
1527: oe_debug_pub.add('payment channel -->'||l_pmt_channel_code);
1528: oe_debug_pub.add('Assignment id ---->'|| l_assign_id);
1529: oe_debug_pub.add('trxn attributes record type values');
1530: oe_debug_pub.add('l_trxn_attribs.Instrument_Security_Code --->'||p_instrument_security_code);
1531: oe_debug_pub.add('l_trxn_attribs.Originating application id ---> '||l_trxn_attribs.Originating_application_id);
1532: oe_debug_pub.add('l_trxn_attribs.order_id ----> '||l_trxn_attribs.order_id);

Line 1529: oe_debug_pub.add('trxn attributes record type values');

1525: IF l_debug_level > 0 THEN
1526: oe_debug_pub.add('Before calling create_transaction extension');
1527: oe_debug_pub.add('payment channel -->'||l_pmt_channel_code);
1528: oe_debug_pub.add('Assignment id ---->'|| l_assign_id);
1529: oe_debug_pub.add('trxn attributes record type values');
1530: oe_debug_pub.add('l_trxn_attribs.Instrument_Security_Code --->'||p_instrument_security_code);
1531: oe_debug_pub.add('l_trxn_attribs.Originating application id ---> '||l_trxn_attribs.Originating_application_id);
1532: oe_debug_pub.add('l_trxn_attribs.order_id ----> '||l_trxn_attribs.order_id);
1533: oe_debug_pub.add('l_trxn_attribs.trxn_ref_number1 --->'||l_trxn_attribs.trxn_ref_number1);

Line 1530: oe_debug_pub.add('l_trxn_attribs.Instrument_Security_Code --->'||p_instrument_security_code);

1526: oe_debug_pub.add('Before calling create_transaction extension');
1527: oe_debug_pub.add('payment channel -->'||l_pmt_channel_code);
1528: oe_debug_pub.add('Assignment id ---->'|| l_assign_id);
1529: oe_debug_pub.add('trxn attributes record type values');
1530: oe_debug_pub.add('l_trxn_attribs.Instrument_Security_Code --->'||p_instrument_security_code);
1531: oe_debug_pub.add('l_trxn_attribs.Originating application id ---> '||l_trxn_attribs.Originating_application_id);
1532: oe_debug_pub.add('l_trxn_attribs.order_id ----> '||l_trxn_attribs.order_id);
1533: oe_debug_pub.add('l_trxn_attribs.trxn_ref_number1 --->'||l_trxn_attribs.trxn_ref_number1);
1534: oe_debug_pub.add('l_trxn_attribs.trxn_ref_number2 --->'||l_trxn_attribs.trxn_ref_number2);

Line 1531: oe_debug_pub.add('l_trxn_attribs.Originating application id ---> '||l_trxn_attribs.Originating_application_id);

1527: oe_debug_pub.add('payment channel -->'||l_pmt_channel_code);
1528: oe_debug_pub.add('Assignment id ---->'|| l_assign_id);
1529: oe_debug_pub.add('trxn attributes record type values');
1530: oe_debug_pub.add('l_trxn_attribs.Instrument_Security_Code --->'||p_instrument_security_code);
1531: oe_debug_pub.add('l_trxn_attribs.Originating application id ---> '||l_trxn_attribs.Originating_application_id);
1532: oe_debug_pub.add('l_trxn_attribs.order_id ----> '||l_trxn_attribs.order_id);
1533: oe_debug_pub.add('l_trxn_attribs.trxn_ref_number1 --->'||l_trxn_attribs.trxn_ref_number1);
1534: oe_debug_pub.add('l_trxn_attribs.trxn_ref_number2 --->'||l_trxn_attribs.trxn_ref_number2);
1535: END IF;

Line 1532: oe_debug_pub.add('l_trxn_attribs.order_id ----> '||l_trxn_attribs.order_id);

1528: oe_debug_pub.add('Assignment id ---->'|| l_assign_id);
1529: oe_debug_pub.add('trxn attributes record type values');
1530: oe_debug_pub.add('l_trxn_attribs.Instrument_Security_Code --->'||p_instrument_security_code);
1531: oe_debug_pub.add('l_trxn_attribs.Originating application id ---> '||l_trxn_attribs.Originating_application_id);
1532: oe_debug_pub.add('l_trxn_attribs.order_id ----> '||l_trxn_attribs.order_id);
1533: oe_debug_pub.add('l_trxn_attribs.trxn_ref_number1 --->'||l_trxn_attribs.trxn_ref_number1);
1534: oe_debug_pub.add('l_trxn_attribs.trxn_ref_number2 --->'||l_trxn_attribs.trxn_ref_number2);
1535: END IF;
1536:

Line 1533: oe_debug_pub.add('l_trxn_attribs.trxn_ref_number1 --->'||l_trxn_attribs.trxn_ref_number1);

1529: oe_debug_pub.add('trxn attributes record type values');
1530: oe_debug_pub.add('l_trxn_attribs.Instrument_Security_Code --->'||p_instrument_security_code);
1531: oe_debug_pub.add('l_trxn_attribs.Originating application id ---> '||l_trxn_attribs.Originating_application_id);
1532: oe_debug_pub.add('l_trxn_attribs.order_id ----> '||l_trxn_attribs.order_id);
1533: oe_debug_pub.add('l_trxn_attribs.trxn_ref_number1 --->'||l_trxn_attribs.trxn_ref_number1);
1534: oe_debug_pub.add('l_trxn_attribs.trxn_ref_number2 --->'||l_trxn_attribs.trxn_ref_number2);
1535: END IF;
1536:
1537: IBY_Fndcpt_Trxn_Pub.Create_Transaction_Extension

Line 1534: oe_debug_pub.add('l_trxn_attribs.trxn_ref_number2 --->'||l_trxn_attribs.trxn_ref_number2);

1530: oe_debug_pub.add('l_trxn_attribs.Instrument_Security_Code --->'||p_instrument_security_code);
1531: oe_debug_pub.add('l_trxn_attribs.Originating application id ---> '||l_trxn_attribs.Originating_application_id);
1532: oe_debug_pub.add('l_trxn_attribs.order_id ----> '||l_trxn_attribs.order_id);
1533: oe_debug_pub.add('l_trxn_attribs.trxn_ref_number1 --->'||l_trxn_attribs.trxn_ref_number1);
1534: oe_debug_pub.add('l_trxn_attribs.trxn_ref_number2 --->'||l_trxn_attribs.trxn_ref_number2);
1535: END IF;
1536:
1537: IBY_Fndcpt_Trxn_Pub.Create_Transaction_Extension
1538: (p_api_version => 1.0,

Line 1555: oe_debug_pub.add('After calling Create_Transaction_Extension'||l_trxn_extension_id);

1551:
1552: --oe_msg_pub.add_text(p_message_text => l_response_code.result_message);
1553:
1554: IF l_debug_level > 0 THEN
1555: oe_debug_pub.add('After calling Create_Transaction_Extension'||l_trxn_extension_id);
1556: oe_debug_pub.add('Result code'||l_Response_code.result_code);
1557: oe_debug_pub.add('Return status'||l_Return_Status);
1558: END IF;
1559:

Line 1556: oe_debug_pub.add('Result code'||l_Response_code.result_code);

1552: --oe_msg_pub.add_text(p_message_text => l_response_code.result_message);
1553:
1554: IF l_debug_level > 0 THEN
1555: oe_debug_pub.add('After calling Create_Transaction_Extension'||l_trxn_extension_id);
1556: oe_debug_pub.add('Result code'||l_Response_code.result_code);
1557: oe_debug_pub.add('Return status'||l_Return_Status);
1558: END IF;
1559:
1560: IF l_return_status = FND_API.G_RET_STS_ERROR THEN

Line 1557: oe_debug_pub.add('Return status'||l_Return_Status);

1553:
1554: IF l_debug_level > 0 THEN
1555: oe_debug_pub.add('After calling Create_Transaction_Extension'||l_trxn_extension_id);
1556: oe_debug_pub.add('Result code'||l_Response_code.result_code);
1557: oe_debug_pub.add('Return status'||l_Return_Status);
1558: END IF;
1559:
1560: IF l_return_status = FND_API.G_RET_STS_ERROR THEN
1561: IF l_debug_level > 0 THEN

Line 1562: oe_debug_pub.add('Result error code in Create_Transaction_Extension'||l_response_code.result_code);

1558: END IF;
1559:
1560: IF l_return_status = FND_API.G_RET_STS_ERROR THEN
1561: IF l_debug_level > 0 THEN
1562: oe_debug_pub.add('Result error code in Create_Transaction_Extension'||l_response_code.result_code);
1563: END IF;
1564: RAISE FND_API.G_EXC_ERROR;
1565: ELSIF l_return_status = FND_API.G_RET_STS_UNEXP_ERROR THEN
1566: IF l_debug_level > 0 THEN

Line 1567: oe_debug_pub.add('Result error code in Create_Transaction_Extension'||l_response_code.result_code);

1563: END IF;
1564: RAISE FND_API.G_EXC_ERROR;
1565: ELSIF l_return_status = FND_API.G_RET_STS_UNEXP_ERROR THEN
1566: IF l_debug_level > 0 THEN
1567: oe_debug_pub.add('Result error code in Create_Transaction_Extension'||l_response_code.result_code);
1568: END IF;
1569: RAISE FND_API.G_EXC_UNEXPECTED_ERROR;
1570: ELSIF l_return_status =FND_API.G_RET_STS_SUCCESS THEN
1571: --CC Reversal ER#16014135 Start

Line 1583: oe_debug_pub.add('Reverse_CreditCard_Auth error....exc',5);

1579: p_new_trxn_extension_id => l_trxn_extension_id
1580: );
1581: IF l_return_status = FND_API.G_RET_STS_ERROR THEN
1582: IF l_debug_level > 0 THEN
1583: oe_debug_pub.add('Reverse_CreditCard_Auth error....exc',5);
1584: oe_debug_pub.add('After call to Reverse_CreditCard_Auth'||l_return_status,5);
1585: oe_debug_pub.add('Error'||sqlerrm,5);
1586: END IF;
1587: RAISE FND_API.G_EXC_ERROR;

Line 1584: oe_debug_pub.add('After call to Reverse_CreditCard_Auth'||l_return_status,5);

1580: );
1581: IF l_return_status = FND_API.G_RET_STS_ERROR THEN
1582: IF l_debug_level > 0 THEN
1583: oe_debug_pub.add('Reverse_CreditCard_Auth error....exc',5);
1584: oe_debug_pub.add('After call to Reverse_CreditCard_Auth'||l_return_status,5);
1585: oe_debug_pub.add('Error'||sqlerrm,5);
1586: END IF;
1587: RAISE FND_API.G_EXC_ERROR;
1588: ELSIF l_return_status= FND_API.G_RET_STS_UNEXP_ERROR Then

Line 1585: oe_debug_pub.add('Error'||sqlerrm,5);

1581: IF l_return_status = FND_API.G_RET_STS_ERROR THEN
1582: IF l_debug_level > 0 THEN
1583: oe_debug_pub.add('Reverse_CreditCard_Auth error....exc',5);
1584: oe_debug_pub.add('After call to Reverse_CreditCard_Auth'||l_return_status,5);
1585: oe_debug_pub.add('Error'||sqlerrm,5);
1586: END IF;
1587: RAISE FND_API.G_EXC_ERROR;
1588: ELSIF l_return_status= FND_API.G_RET_STS_UNEXP_ERROR Then
1589: IF l_debug_level > 0 THEN

Line 1590: oe_debug_pub.add('After call to Reverse_CreditCard_Auth --> Unexpected error',5);

1586: END IF;
1587: RAISE FND_API.G_EXC_ERROR;
1588: ELSIF l_return_status= FND_API.G_RET_STS_UNEXP_ERROR Then
1589: IF l_debug_level > 0 THEN
1590: oe_debug_pub.add('After call to Reverse_CreditCard_Auth --> Unexpected error',5);
1591: oe_debug_pub.add('Error message '||sqlerrm,5);
1592: END IF;
1593: RAISE FND_API.G_EXC_UNEXPECTED_ERROR;
1594: ELSIF l_return_status=FND_API.G_RET_STS_SUCCESS Then

Line 1591: oe_debug_pub.add('Error message '||sqlerrm,5);

1587: RAISE FND_API.G_EXC_ERROR;
1588: ELSIF l_return_status= FND_API.G_RET_STS_UNEXP_ERROR Then
1589: IF l_debug_level > 0 THEN
1590: oe_debug_pub.add('After call to Reverse_CreditCard_Auth --> Unexpected error',5);
1591: oe_debug_pub.add('Error message '||sqlerrm,5);
1592: END IF;
1593: RAISE FND_API.G_EXC_UNEXPECTED_ERROR;
1594: ELSIF l_return_status=FND_API.G_RET_STS_SUCCESS Then
1595: IF l_debug_level > 0 THEN

Line 1596: oe_debug_pub.add('Call to Reverse_CreditCard_Auth --> Success',5);

1592: END IF;
1593: RAISE FND_API.G_EXC_UNEXPECTED_ERROR;
1594: ELSIF l_return_status=FND_API.G_RET_STS_SUCCESS Then
1595: IF l_debug_level > 0 THEN
1596: oe_debug_pub.add('Call to Reverse_CreditCard_Auth --> Success',5);
1597: end if;
1598: END IF;
1599: END;
1600: --CC Reversal ER#16014135 End

Line 1605: oe_debug_pub.add('Create_Transaction_Extension assignment Successful....');

1601: --Setting the trxn extension id to the new value
1602: --as the old trxn extension id was deleted
1603: p_trxn_extension_id := l_trxn_extension_id ;
1604: IF l_debug_level > 0 THEN
1605: oe_debug_pub.add('Create_Transaction_Extension assignment Successful....');
1606: oe_debug_pub.add('After call to Create_Transaction_Extension'||l_return_status);
1607: oe_debug_pub.add('After call to create Transaction Extension');
1608: oe_debug_pub.add('New trxn extension id'||l_trxn_extension_id);
1609: oe_debug_pub.add('Return status'||l_return_status);

Line 1606: oe_debug_pub.add('After call to Create_Transaction_Extension'||l_return_status);

1602: --as the old trxn extension id was deleted
1603: p_trxn_extension_id := l_trxn_extension_id ;
1604: IF l_debug_level > 0 THEN
1605: oe_debug_pub.add('Create_Transaction_Extension assignment Successful....');
1606: oe_debug_pub.add('After call to Create_Transaction_Extension'||l_return_status);
1607: oe_debug_pub.add('After call to create Transaction Extension');
1608: oe_debug_pub.add('New trxn extension id'||l_trxn_extension_id);
1609: oe_debug_pub.add('Return status'||l_return_status);
1610: END IF;

Line 1607: oe_debug_pub.add('After call to create Transaction Extension');

1603: p_trxn_extension_id := l_trxn_extension_id ;
1604: IF l_debug_level > 0 THEN
1605: oe_debug_pub.add('Create_Transaction_Extension assignment Successful....');
1606: oe_debug_pub.add('After call to Create_Transaction_Extension'||l_return_status);
1607: oe_debug_pub.add('After call to create Transaction Extension');
1608: oe_debug_pub.add('New trxn extension id'||l_trxn_extension_id);
1609: oe_debug_pub.add('Return status'||l_return_status);
1610: END IF;
1611: END IF;

Line 1608: oe_debug_pub.add('New trxn extension id'||l_trxn_extension_id);

1604: IF l_debug_level > 0 THEN
1605: oe_debug_pub.add('Create_Transaction_Extension assignment Successful....');
1606: oe_debug_pub.add('After call to Create_Transaction_Extension'||l_return_status);
1607: oe_debug_pub.add('After call to create Transaction Extension');
1608: oe_debug_pub.add('New trxn extension id'||l_trxn_extension_id);
1609: oe_debug_pub.add('Return status'||l_return_status);
1610: END IF;
1611: END IF;
1612: --bug 5299050

Line 1609: oe_debug_pub.add('Return status'||l_return_status);

1605: oe_debug_pub.add('Create_Transaction_Extension assignment Successful....');
1606: oe_debug_pub.add('After call to Create_Transaction_Extension'||l_return_status);
1607: oe_debug_pub.add('After call to create Transaction Extension');
1608: oe_debug_pub.add('New trxn extension id'||l_trxn_extension_id);
1609: oe_debug_pub.add('Return status'||l_return_status);
1610: END IF;
1611: END IF;
1612: --bug 5299050
1613: END IF; -- Settled or Expired

Line 1636: oe_debug_pub.add('l_trxn_attribs.VoiceAuth_date ---->'||l_trxn_attribs.VoiceAuth_date);

1632: END IF;
1633: END IF;
1634:
1635: IF l_debug_level > 0 THEN
1636: oe_debug_pub.add('l_trxn_attribs.VoiceAuth_date ---->'||l_trxn_attribs.VoiceAuth_date);
1637: oe_debug_pub.add('l_trxn_attribs.VoiceAuth_code ---->'||l_trxn_attribs.VoiceAuth_code);
1638: END IF;
1639: --Bug 7460481 ends
1640:

Line 1637: oe_debug_pub.add('l_trxn_attribs.VoiceAuth_code ---->'||l_trxn_attribs.VoiceAuth_code);

1633: END IF;
1634:
1635: IF l_debug_level > 0 THEN
1636: oe_debug_pub.add('l_trxn_attribs.VoiceAuth_date ---->'||l_trxn_attribs.VoiceAuth_date);
1637: oe_debug_pub.add('l_trxn_attribs.VoiceAuth_code ---->'||l_trxn_attribs.VoiceAuth_code);
1638: END IF;
1639: --Bug 7460481 ends
1640:
1641: IBY_Fndcpt_Trxn_Pub.Update_Transaction_Extension

Line 1658: oe_debug_pub.add('After calling update transaction extension...');

1654:
1655: --oe_msg_pub.add_text(p_message_text => l_response_code.result_message);
1656:
1657: IF l_debug_level > 0 THEN
1658: oe_debug_pub.add('After calling update transaction extension...');
1659: END IF;
1660:
1661: IF l_return_status = FND_API.G_RET_STS_ERROR THEN
1662: IF l_debug_level > 0 THEN

Line 1663: oe_debug_pub.add('Result error code in Update_Transaction_Extension'||l_response_code.result_code);

1659: END IF;
1660:
1661: IF l_return_status = FND_API.G_RET_STS_ERROR THEN
1662: IF l_debug_level > 0 THEN
1663: oe_debug_pub.add('Result error code in Update_Transaction_Extension'||l_response_code.result_code);
1664: END IF;
1665: RAISE FND_API.G_EXC_ERROR;
1666: ELSIF l_return_status = FND_API.G_RET_STS_UNEXP_ERROR THEN
1667: IF l_debug_level > 0 THEN

Line 1668: oe_debug_pub.add('Result error code in Update_Transaction_Extension'||l_response_code.result_code);

1664: END IF;
1665: RAISE FND_API.G_EXC_ERROR;
1666: ELSIF l_return_status = FND_API.G_RET_STS_UNEXP_ERROR THEN
1667: IF l_debug_level > 0 THEN
1668: oe_debug_pub.add('Result error code in Update_Transaction_Extension'||l_response_code.result_code);
1669: END IF;
1670: RAISE FND_API.G_EXC_UNEXPECTED_ERROR;
1671: ELSIF l_return_status =FND_API.G_RET_STS_SUCCESS THEN
1672: IF l_debug_level > 0 THEN

Line 1673: oe_debug_pub.add('Update_Transaction_Extension assignment Successful....');

1669: END IF;
1670: RAISE FND_API.G_EXC_UNEXPECTED_ERROR;
1671: ELSIF l_return_status =FND_API.G_RET_STS_SUCCESS THEN
1672: IF l_debug_level > 0 THEN
1673: oe_debug_pub.add('Update_Transaction_Extension assignment Successful....');
1674: oe_debug_pub.add('After calling Update_Transaction_Extension');
1675: END IF;
1676: END IF;
1677: END IF; -- Approval code not null

Line 1674: oe_debug_pub.add('After calling Update_Transaction_Extension');

1670: RAISE FND_API.G_EXC_UNEXPECTED_ERROR;
1671: ELSIF l_return_status =FND_API.G_RET_STS_SUCCESS THEN
1672: IF l_debug_level > 0 THEN
1673: oe_debug_pub.add('Update_Transaction_Extension assignment Successful....');
1674: oe_debug_pub.add('After calling Update_Transaction_Extension');
1675: END IF;
1676: END IF;
1677: END IF; -- Approval code not null
1678: --bug 5028932

Line 1682: oe_debug_pub.add('Bill to has changed....Need to delete this trxn id as context has changed!');

1678: --bug 5028932
1679: --bug 4885313
1680: ELSIF OE_Payment_Trxn_Util.g_old_bill_to_site IS NOT NULL THEN
1681: IF l_debug_level > 0 THEN
1682: oe_debug_pub.add('Bill to has changed....Need to delete this trxn id as context has changed!');
1683: oe_debug_pub.add('Before calling Delete Transaction Extension API...');
1684: oe_debug_pub.add('Trxn extension id --------> '||p_trxn_extension_id);
1685: oe_debug_pub.add('Payer equivalency --------> '||IBY_FNDCPT_COMMON_PUB.G_PAYER_EQUIV_IMMEDIATE);
1686: END IF;

Line 1683: oe_debug_pub.add('Before calling Delete Transaction Extension API...');

1679: --bug 4885313
1680: ELSIF OE_Payment_Trxn_Util.g_old_bill_to_site IS NOT NULL THEN
1681: IF l_debug_level > 0 THEN
1682: oe_debug_pub.add('Bill to has changed....Need to delete this trxn id as context has changed!');
1683: oe_debug_pub.add('Before calling Delete Transaction Extension API...');
1684: oe_debug_pub.add('Trxn extension id --------> '||p_trxn_extension_id);
1685: oe_debug_pub.add('Payer equivalency --------> '||IBY_FNDCPT_COMMON_PUB.G_PAYER_EQUIV_IMMEDIATE);
1686: END IF;
1687: --Setting the context corresponding to the old bill to

Line 1684: oe_debug_pub.add('Trxn extension id --------> '||p_trxn_extension_id);

1680: ELSIF OE_Payment_Trxn_Util.g_old_bill_to_site IS NOT NULL THEN
1681: IF l_debug_level > 0 THEN
1682: oe_debug_pub.add('Bill to has changed....Need to delete this trxn id as context has changed!');
1683: oe_debug_pub.add('Before calling Delete Transaction Extension API...');
1684: oe_debug_pub.add('Trxn extension id --------> '||p_trxn_extension_id);
1685: oe_debug_pub.add('Payer equivalency --------> '||IBY_FNDCPT_COMMON_PUB.G_PAYER_EQUIV_IMMEDIATE);
1686: END IF;
1687: --Setting the context corresponding to the old bill to
1688: --site as the trxn extension id was created for that site.

Line 1685: oe_debug_pub.add('Payer equivalency --------> '||IBY_FNDCPT_COMMON_PUB.G_PAYER_EQUIV_IMMEDIATE);

1681: IF l_debug_level > 0 THEN
1682: oe_debug_pub.add('Bill to has changed....Need to delete this trxn id as context has changed!');
1683: oe_debug_pub.add('Before calling Delete Transaction Extension API...');
1684: oe_debug_pub.add('Trxn extension id --------> '||p_trxn_extension_id);
1685: oe_debug_pub.add('Payer equivalency --------> '||IBY_FNDCPT_COMMON_PUB.G_PAYER_EQUIV_IMMEDIATE);
1686: END IF;
1687: --Setting the context corresponding to the old bill to
1688: --site as the trxn extension id was created for that site.
1689: l_payer.account_site_id := OE_Payment_Trxn_Util.g_old_bill_to_site;

Line 1710: oe_debug_pub.add('Result error code in Delete_Transaction_Extension'||l_response_code.result_code);

1706: p_entity_id => p_trxn_extension_id);
1707:
1708: IF l_return_status = FND_API.G_RET_STS_ERROR THEN
1709: IF l_debug_level > 0 THEN
1710: oe_debug_pub.add('Result error code in Delete_Transaction_Extension'||l_response_code.result_code);
1711: oe_debug_pub.add('sql error'||sqlerrm);
1712: oe_debug_pub.add('msg data'||l_msg_data);
1713: END IF;
1714: RAISE FND_API.G_EXC_ERROR;

Line 1711: oe_debug_pub.add('sql error'||sqlerrm);

1707:
1708: IF l_return_status = FND_API.G_RET_STS_ERROR THEN
1709: IF l_debug_level > 0 THEN
1710: oe_debug_pub.add('Result error code in Delete_Transaction_Extension'||l_response_code.result_code);
1711: oe_debug_pub.add('sql error'||sqlerrm);
1712: oe_debug_pub.add('msg data'||l_msg_data);
1713: END IF;
1714: RAISE FND_API.G_EXC_ERROR;
1715: ELSIF l_return_status = FND_API.G_RET_STS_UNEXP_ERROR THEN

Line 1712: oe_debug_pub.add('msg data'||l_msg_data);

1708: IF l_return_status = FND_API.G_RET_STS_ERROR THEN
1709: IF l_debug_level > 0 THEN
1710: oe_debug_pub.add('Result error code in Delete_Transaction_Extension'||l_response_code.result_code);
1711: oe_debug_pub.add('sql error'||sqlerrm);
1712: oe_debug_pub.add('msg data'||l_msg_data);
1713: END IF;
1714: RAISE FND_API.G_EXC_ERROR;
1715: ELSIF l_return_status = FND_API.G_RET_STS_UNEXP_ERROR THEN
1716: IF l_debug_level > 0 THEN

Line 1717: oe_debug_pub.add('Result error code in Delete_Transaction_Extension'||l_response_code.result_code);

1713: END IF;
1714: RAISE FND_API.G_EXC_ERROR;
1715: ELSIF l_return_status = FND_API.G_RET_STS_UNEXP_ERROR THEN
1716: IF l_debug_level > 0 THEN
1717: oe_debug_pub.add('Result error code in Delete_Transaction_Extension'||l_response_code.result_code);
1718: oe_debug_pub.add('sql error'||sqlerrm);
1719: oe_debug_pub.add('msg data'||l_msg_data);
1720: END IF;
1721: RAISE FND_API.G_EXC_UNEXPECTED_ERROR;

Line 1718: oe_debug_pub.add('sql error'||sqlerrm);

1714: RAISE FND_API.G_EXC_ERROR;
1715: ELSIF l_return_status = FND_API.G_RET_STS_UNEXP_ERROR THEN
1716: IF l_debug_level > 0 THEN
1717: oe_debug_pub.add('Result error code in Delete_Transaction_Extension'||l_response_code.result_code);
1718: oe_debug_pub.add('sql error'||sqlerrm);
1719: oe_debug_pub.add('msg data'||l_msg_data);
1720: END IF;
1721: RAISE FND_API.G_EXC_UNEXPECTED_ERROR;
1722: ELSIF l_return_status =FND_API.G_RET_STS_SUCCESS THEN

Line 1719: oe_debug_pub.add('msg data'||l_msg_data);

1715: ELSIF l_return_status = FND_API.G_RET_STS_UNEXP_ERROR THEN
1716: IF l_debug_level > 0 THEN
1717: oe_debug_pub.add('Result error code in Delete_Transaction_Extension'||l_response_code.result_code);
1718: oe_debug_pub.add('sql error'||sqlerrm);
1719: oe_debug_pub.add('msg data'||l_msg_data);
1720: END IF;
1721: RAISE FND_API.G_EXC_UNEXPECTED_ERROR;
1722: ELSIF l_return_status =FND_API.G_RET_STS_SUCCESS THEN
1723: IF l_debug_level > 0 THEN

Line 1724: oe_debug_pub.add('Delete_Transaction_Extension Successful....');

1720: END IF;
1721: RAISE FND_API.G_EXC_UNEXPECTED_ERROR;
1722: ELSIF l_return_status =FND_API.G_RET_STS_SUCCESS THEN
1723: IF l_debug_level > 0 THEN
1724: oe_debug_pub.add('Delete_Transaction_Extension Successful....');
1725: oe_debug_pub.add('After calling Delete_Transaction_Extension');
1726: oe_debug_pub.add('sql error'||sqlerrm);
1727: oe_debug_pub.add('msg data'||l_msg_data);
1728: END IF;

Line 1725: oe_debug_pub.add('After calling Delete_Transaction_Extension');

1721: RAISE FND_API.G_EXC_UNEXPECTED_ERROR;
1722: ELSIF l_return_status =FND_API.G_RET_STS_SUCCESS THEN
1723: IF l_debug_level > 0 THEN
1724: oe_debug_pub.add('Delete_Transaction_Extension Successful....');
1725: oe_debug_pub.add('After calling Delete_Transaction_Extension');
1726: oe_debug_pub.add('sql error'||sqlerrm);
1727: oe_debug_pub.add('msg data'||l_msg_data);
1728: END IF;
1729: END IF;

Line 1726: oe_debug_pub.add('sql error'||sqlerrm);

1722: ELSIF l_return_status =FND_API.G_RET_STS_SUCCESS THEN
1723: IF l_debug_level > 0 THEN
1724: oe_debug_pub.add('Delete_Transaction_Extension Successful....');
1725: oe_debug_pub.add('After calling Delete_Transaction_Extension');
1726: oe_debug_pub.add('sql error'||sqlerrm);
1727: oe_debug_pub.add('msg data'||l_msg_data);
1728: END IF;
1729: END IF;
1730:

Line 1727: oe_debug_pub.add('msg data'||l_msg_data);

1723: IF l_debug_level > 0 THEN
1724: oe_debug_pub.add('Delete_Transaction_Extension Successful....');
1725: oe_debug_pub.add('After calling Delete_Transaction_Extension');
1726: oe_debug_pub.add('sql error'||sqlerrm);
1727: oe_debug_pub.add('msg data'||l_msg_data);
1728: END IF;
1729: END IF;
1730:
1731: IF p_payment_type_code IN ('ACH', 'DIRECT_DEBIT') THEN

Line 1750: oe_debug_pub.add('Before calling create_transaction extension');

1746: --Now setting the account site id as the new bill to site
1747: --for creating this trxn extension id
1748: l_payer.account_site_id := p_site_use_id;
1749: IF l_debug_level > 0 THEN
1750: oe_debug_pub.add('Before calling create_transaction extension');
1751: oe_debug_pub.add('payment channel -->'||l_pmt_channel_code);
1752: oe_debug_pub.add('Assignment id ---->'|| l_assign_id);
1753: oe_debug_pub.add('trxn attributes record type values');
1754: oe_debug_pub.add('l_trxn_attribs.Instrument_Security_Code --->'||p_instrument_security_code);

Line 1751: oe_debug_pub.add('payment channel -->'||l_pmt_channel_code);

1747: --for creating this trxn extension id
1748: l_payer.account_site_id := p_site_use_id;
1749: IF l_debug_level > 0 THEN
1750: oe_debug_pub.add('Before calling create_transaction extension');
1751: oe_debug_pub.add('payment channel -->'||l_pmt_channel_code);
1752: oe_debug_pub.add('Assignment id ---->'|| l_assign_id);
1753: oe_debug_pub.add('trxn attributes record type values');
1754: oe_debug_pub.add('l_trxn_attribs.Instrument_Security_Code --->'||p_instrument_security_code);
1755: oe_debug_pub.add('l_trxn_attribs.Originating application id ---> '||l_trxn_attribs.Originating_application_id);

Line 1752: oe_debug_pub.add('Assignment id ---->'|| l_assign_id);

1748: l_payer.account_site_id := p_site_use_id;
1749: IF l_debug_level > 0 THEN
1750: oe_debug_pub.add('Before calling create_transaction extension');
1751: oe_debug_pub.add('payment channel -->'||l_pmt_channel_code);
1752: oe_debug_pub.add('Assignment id ---->'|| l_assign_id);
1753: oe_debug_pub.add('trxn attributes record type values');
1754: oe_debug_pub.add('l_trxn_attribs.Instrument_Security_Code --->'||p_instrument_security_code);
1755: oe_debug_pub.add('l_trxn_attribs.Originating application id ---> '||l_trxn_attribs.Originating_application_id);
1756: oe_debug_pub.add('l_trxn_attribs.order_id ----> '||l_trxn_attribs.order_id);

Line 1753: oe_debug_pub.add('trxn attributes record type values');

1749: IF l_debug_level > 0 THEN
1750: oe_debug_pub.add('Before calling create_transaction extension');
1751: oe_debug_pub.add('payment channel -->'||l_pmt_channel_code);
1752: oe_debug_pub.add('Assignment id ---->'|| l_assign_id);
1753: oe_debug_pub.add('trxn attributes record type values');
1754: oe_debug_pub.add('l_trxn_attribs.Instrument_Security_Code --->'||p_instrument_security_code);
1755: oe_debug_pub.add('l_trxn_attribs.Originating application id ---> '||l_trxn_attribs.Originating_application_id);
1756: oe_debug_pub.add('l_trxn_attribs.order_id ----> '||l_trxn_attribs.order_id);
1757: oe_debug_pub.add('l_trxn_attribs.trxn_ref_number1 --->'||l_trxn_attribs.trxn_ref_number1);

Line 1754: oe_debug_pub.add('l_trxn_attribs.Instrument_Security_Code --->'||p_instrument_security_code);

1750: oe_debug_pub.add('Before calling create_transaction extension');
1751: oe_debug_pub.add('payment channel -->'||l_pmt_channel_code);
1752: oe_debug_pub.add('Assignment id ---->'|| l_assign_id);
1753: oe_debug_pub.add('trxn attributes record type values');
1754: oe_debug_pub.add('l_trxn_attribs.Instrument_Security_Code --->'||p_instrument_security_code);
1755: oe_debug_pub.add('l_trxn_attribs.Originating application id ---> '||l_trxn_attribs.Originating_application_id);
1756: oe_debug_pub.add('l_trxn_attribs.order_id ----> '||l_trxn_attribs.order_id);
1757: oe_debug_pub.add('l_trxn_attribs.trxn_ref_number1 --->'||l_trxn_attribs.trxn_ref_number1);
1758: oe_debug_pub.add('l_trxn_attribs.trxn_ref_number2 --->'||l_trxn_attribs.trxn_ref_number2);

Line 1755: oe_debug_pub.add('l_trxn_attribs.Originating application id ---> '||l_trxn_attribs.Originating_application_id);

1751: oe_debug_pub.add('payment channel -->'||l_pmt_channel_code);
1752: oe_debug_pub.add('Assignment id ---->'|| l_assign_id);
1753: oe_debug_pub.add('trxn attributes record type values');
1754: oe_debug_pub.add('l_trxn_attribs.Instrument_Security_Code --->'||p_instrument_security_code);
1755: oe_debug_pub.add('l_trxn_attribs.Originating application id ---> '||l_trxn_attribs.Originating_application_id);
1756: oe_debug_pub.add('l_trxn_attribs.order_id ----> '||l_trxn_attribs.order_id);
1757: oe_debug_pub.add('l_trxn_attribs.trxn_ref_number1 --->'||l_trxn_attribs.trxn_ref_number1);
1758: oe_debug_pub.add('l_trxn_attribs.trxn_ref_number2 --->'||l_trxn_attribs.trxn_ref_number2);
1759: END IF;

Line 1756: oe_debug_pub.add('l_trxn_attribs.order_id ----> '||l_trxn_attribs.order_id);

1752: oe_debug_pub.add('Assignment id ---->'|| l_assign_id);
1753: oe_debug_pub.add('trxn attributes record type values');
1754: oe_debug_pub.add('l_trxn_attribs.Instrument_Security_Code --->'||p_instrument_security_code);
1755: oe_debug_pub.add('l_trxn_attribs.Originating application id ---> '||l_trxn_attribs.Originating_application_id);
1756: oe_debug_pub.add('l_trxn_attribs.order_id ----> '||l_trxn_attribs.order_id);
1757: oe_debug_pub.add('l_trxn_attribs.trxn_ref_number1 --->'||l_trxn_attribs.trxn_ref_number1);
1758: oe_debug_pub.add('l_trxn_attribs.trxn_ref_number2 --->'||l_trxn_attribs.trxn_ref_number2);
1759: END IF;
1760:

Line 1757: oe_debug_pub.add('l_trxn_attribs.trxn_ref_number1 --->'||l_trxn_attribs.trxn_ref_number1);

1753: oe_debug_pub.add('trxn attributes record type values');
1754: oe_debug_pub.add('l_trxn_attribs.Instrument_Security_Code --->'||p_instrument_security_code);
1755: oe_debug_pub.add('l_trxn_attribs.Originating application id ---> '||l_trxn_attribs.Originating_application_id);
1756: oe_debug_pub.add('l_trxn_attribs.order_id ----> '||l_trxn_attribs.order_id);
1757: oe_debug_pub.add('l_trxn_attribs.trxn_ref_number1 --->'||l_trxn_attribs.trxn_ref_number1);
1758: oe_debug_pub.add('l_trxn_attribs.trxn_ref_number2 --->'||l_trxn_attribs.trxn_ref_number2);
1759: END IF;
1760:
1761: IBY_Fndcpt_Trxn_Pub.Create_Transaction_Extension

Line 1758: oe_debug_pub.add('l_trxn_attribs.trxn_ref_number2 --->'||l_trxn_attribs.trxn_ref_number2);

1754: oe_debug_pub.add('l_trxn_attribs.Instrument_Security_Code --->'||p_instrument_security_code);
1755: oe_debug_pub.add('l_trxn_attribs.Originating application id ---> '||l_trxn_attribs.Originating_application_id);
1756: oe_debug_pub.add('l_trxn_attribs.order_id ----> '||l_trxn_attribs.order_id);
1757: oe_debug_pub.add('l_trxn_attribs.trxn_ref_number1 --->'||l_trxn_attribs.trxn_ref_number1);
1758: oe_debug_pub.add('l_trxn_attribs.trxn_ref_number2 --->'||l_trxn_attribs.trxn_ref_number2);
1759: END IF;
1760:
1761: IBY_Fndcpt_Trxn_Pub.Create_Transaction_Extension
1762: (p_api_version => 1.0,

Line 1779: oe_debug_pub.add('After calling Create_Transaction_Extension'||l_trxn_extension_id);

1775:
1776: --oe_msg_pub.add_text(p_message_text => l_response_code.result_message);
1777:
1778: IF l_debug_level > 0 THEN
1779: oe_debug_pub.add('After calling Create_Transaction_Extension'||l_trxn_extension_id);
1780: oe_debug_pub.add('Result code'||l_Response_code.result_code);
1781: oe_debug_pub.add('Return status'||l_Return_Status);
1782: END IF;
1783:

Line 1780: oe_debug_pub.add('Result code'||l_Response_code.result_code);

1776: --oe_msg_pub.add_text(p_message_text => l_response_code.result_message);
1777:
1778: IF l_debug_level > 0 THEN
1779: oe_debug_pub.add('After calling Create_Transaction_Extension'||l_trxn_extension_id);
1780: oe_debug_pub.add('Result code'||l_Response_code.result_code);
1781: oe_debug_pub.add('Return status'||l_Return_Status);
1782: END IF;
1783:
1784: IF l_return_status = FND_API.G_RET_STS_ERROR THEN

Line 1781: oe_debug_pub.add('Return status'||l_Return_Status);

1777:
1778: IF l_debug_level > 0 THEN
1779: oe_debug_pub.add('After calling Create_Transaction_Extension'||l_trxn_extension_id);
1780: oe_debug_pub.add('Result code'||l_Response_code.result_code);
1781: oe_debug_pub.add('Return status'||l_Return_Status);
1782: END IF;
1783:
1784: IF l_return_status = FND_API.G_RET_STS_ERROR THEN
1785: IF l_debug_level > 0 THEN

Line 1786: oe_debug_pub.add('Result error code in Create_Transaction_Extension'||l_response_code.result_code);

1782: END IF;
1783:
1784: IF l_return_status = FND_API.G_RET_STS_ERROR THEN
1785: IF l_debug_level > 0 THEN
1786: oe_debug_pub.add('Result error code in Create_Transaction_Extension'||l_response_code.result_code);
1787: END IF;
1788: RAISE FND_API.G_EXC_ERROR;
1789: ELSIF l_return_status = FND_API.G_RET_STS_UNEXP_ERROR THEN
1790: IF l_debug_level > 0 THEN

Line 1791: oe_debug_pub.add('Result error code in Create_Transaction_Extension'||l_response_code.result_code);

1787: END IF;
1788: RAISE FND_API.G_EXC_ERROR;
1789: ELSIF l_return_status = FND_API.G_RET_STS_UNEXP_ERROR THEN
1790: IF l_debug_level > 0 THEN
1791: oe_debug_pub.add('Result error code in Create_Transaction_Extension'||l_response_code.result_code);
1792: END IF;
1793: RAISE FND_API.G_EXC_UNEXPECTED_ERROR;
1794: ELSIF l_return_status =FND_API.G_RET_STS_SUCCESS THEN
1795: --CC Reversal ER#16014135 Start

Line 1807: oe_debug_pub.add('Reverse_CreditCard_Auth error....exc',5);

1803: p_new_trxn_extension_id => l_trxn_extension_id
1804: );
1805: IF l_return_status = FND_API.G_RET_STS_ERROR THEN
1806: IF l_debug_level > 0 THEN
1807: oe_debug_pub.add('Reverse_CreditCard_Auth error....exc',5);
1808: oe_debug_pub.add('After call to Reverse_CreditCard_Auth'||l_return_status,5);
1809: oe_debug_pub.add('Error'||sqlerrm,5);
1810: END IF;
1811: RAISE FND_API.G_EXC_ERROR;

Line 1808: oe_debug_pub.add('After call to Reverse_CreditCard_Auth'||l_return_status,5);

1804: );
1805: IF l_return_status = FND_API.G_RET_STS_ERROR THEN
1806: IF l_debug_level > 0 THEN
1807: oe_debug_pub.add('Reverse_CreditCard_Auth error....exc',5);
1808: oe_debug_pub.add('After call to Reverse_CreditCard_Auth'||l_return_status,5);
1809: oe_debug_pub.add('Error'||sqlerrm,5);
1810: END IF;
1811: RAISE FND_API.G_EXC_ERROR;
1812: ELSIF l_return_status= FND_API.G_RET_STS_UNEXP_ERROR Then

Line 1809: oe_debug_pub.add('Error'||sqlerrm,5);

1805: IF l_return_status = FND_API.G_RET_STS_ERROR THEN
1806: IF l_debug_level > 0 THEN
1807: oe_debug_pub.add('Reverse_CreditCard_Auth error....exc',5);
1808: oe_debug_pub.add('After call to Reverse_CreditCard_Auth'||l_return_status,5);
1809: oe_debug_pub.add('Error'||sqlerrm,5);
1810: END IF;
1811: RAISE FND_API.G_EXC_ERROR;
1812: ELSIF l_return_status= FND_API.G_RET_STS_UNEXP_ERROR Then
1813: IF l_debug_level > 0 THEN

Line 1814: oe_debug_pub.add('After call to Reverse_CreditCard_Auth --> Unexpected error',5);

1810: END IF;
1811: RAISE FND_API.G_EXC_ERROR;
1812: ELSIF l_return_status= FND_API.G_RET_STS_UNEXP_ERROR Then
1813: IF l_debug_level > 0 THEN
1814: oe_debug_pub.add('After call to Reverse_CreditCard_Auth --> Unexpected error',5);
1815: oe_debug_pub.add('Error message '||sqlerrm,5);
1816: END IF;
1817: RAISE FND_API.G_EXC_UNEXPECTED_ERROR;
1818: ELSIF l_return_status=FND_API.G_RET_STS_SUCCESS Then

Line 1815: oe_debug_pub.add('Error message '||sqlerrm,5);

1811: RAISE FND_API.G_EXC_ERROR;
1812: ELSIF l_return_status= FND_API.G_RET_STS_UNEXP_ERROR Then
1813: IF l_debug_level > 0 THEN
1814: oe_debug_pub.add('After call to Reverse_CreditCard_Auth --> Unexpected error',5);
1815: oe_debug_pub.add('Error message '||sqlerrm,5);
1816: END IF;
1817: RAISE FND_API.G_EXC_UNEXPECTED_ERROR;
1818: ELSIF l_return_status=FND_API.G_RET_STS_SUCCESS Then
1819: IF l_debug_level > 0 THEN

Line 1820: oe_debug_pub.add('Call to Reverse_CreditCard_Auth --> Success',5);

1816: END IF;
1817: RAISE FND_API.G_EXC_UNEXPECTED_ERROR;
1818: ELSIF l_return_status=FND_API.G_RET_STS_SUCCESS Then
1819: IF l_debug_level > 0 THEN
1820: oe_debug_pub.add('Call to Reverse_CreditCard_Auth --> Success',5);
1821: end if;
1822: END IF;
1823: END;
1824: --CC Reversal ER#16014135 End

Line 1829: oe_debug_pub.add('Create_Transaction_Extension assignment Successful....');

1825: --Setting the trxn extension id to the new value
1826: --as the old trxn extension id was deleted
1827: p_trxn_extension_id := l_trxn_extension_id ;
1828: IF l_debug_level > 0 THEN
1829: oe_debug_pub.add('Create_Transaction_Extension assignment Successful....');
1830: oe_debug_pub.add('After call to Create_Transaction_Extension'||l_return_status);
1831: oe_debug_pub.add('After call to create Transaction Extension');
1832: oe_debug_pub.add('New trxn extension id'||l_trxn_extension_id);
1833: oe_debug_pub.add('Return status'||l_return_status);

Line 1830: oe_debug_pub.add('After call to Create_Transaction_Extension'||l_return_status);

1826: --as the old trxn extension id was deleted
1827: p_trxn_extension_id := l_trxn_extension_id ;
1828: IF l_debug_level > 0 THEN
1829: oe_debug_pub.add('Create_Transaction_Extension assignment Successful....');
1830: oe_debug_pub.add('After call to Create_Transaction_Extension'||l_return_status);
1831: oe_debug_pub.add('After call to create Transaction Extension');
1832: oe_debug_pub.add('New trxn extension id'||l_trxn_extension_id);
1833: oe_debug_pub.add('Return status'||l_return_status);
1834: END IF;

Line 1831: oe_debug_pub.add('After call to create Transaction Extension');

1827: p_trxn_extension_id := l_trxn_extension_id ;
1828: IF l_debug_level > 0 THEN
1829: oe_debug_pub.add('Create_Transaction_Extension assignment Successful....');
1830: oe_debug_pub.add('After call to Create_Transaction_Extension'||l_return_status);
1831: oe_debug_pub.add('After call to create Transaction Extension');
1832: oe_debug_pub.add('New trxn extension id'||l_trxn_extension_id);
1833: oe_debug_pub.add('Return status'||l_return_status);
1834: END IF;
1835: END IF;

Line 1832: oe_debug_pub.add('New trxn extension id'||l_trxn_extension_id);

1828: IF l_debug_level > 0 THEN
1829: oe_debug_pub.add('Create_Transaction_Extension assignment Successful....');
1830: oe_debug_pub.add('After call to Create_Transaction_Extension'||l_return_status);
1831: oe_debug_pub.add('After call to create Transaction Extension');
1832: oe_debug_pub.add('New trxn extension id'||l_trxn_extension_id);
1833: oe_debug_pub.add('Return status'||l_return_status);
1834: END IF;
1835: END IF;
1836:

Line 1833: oe_debug_pub.add('Return status'||l_return_status);

1829: oe_debug_pub.add('Create_Transaction_Extension assignment Successful....');
1830: oe_debug_pub.add('After call to Create_Transaction_Extension'||l_return_status);
1831: oe_debug_pub.add('After call to create Transaction Extension');
1832: oe_debug_pub.add('New trxn extension id'||l_trxn_extension_id);
1833: oe_debug_pub.add('Return status'||l_return_status);
1834: END IF;
1835: END IF;
1836:
1837: END IF; -- old bill to site

Line 1840: oe_debug_pub.add('Exiting Update_Payment_Trxn.....');

1836:
1837: END IF; -- old bill to site
1838: --bug 4885313
1839: IF l_debug_level > 0 THEN
1840: oe_debug_pub.add('Exiting Update_Payment_Trxn.....');
1841: END IF;
1842:
1843: X_return_status := FND_API.G_RET_STS_SUCCESS;
1844:

Line 1913: l_debug_level CONSTANT NUMBER := oe_debug_pub.g_debug_level;

1909: l_instrument IBY_FNDCPT_SETUP_PUB.PmtInstrument_rec_type;
1910: l_exists_assignment VARCHAR2(1) := 'N';
1911: l_assign_id IBY_FNDCPT_PAYER_ASSGN_INSTR_V.instr_assignment_id%TYPE;
1912:
1913: l_debug_level CONSTANT NUMBER := oe_debug_pub.g_debug_level;
1914:
1915: BEGIN
1916: --Get party id for the bill to site;??
1917: IF p_line_id is not null then

Line 1931: oe_debug_pub.add('INVOICE_TO_ORG_ID and ORG_ID'||l_invoice_to_org_id||' and '||l_org_id);

1927: l_invoice_to_org_id := OE_Order_Cache.g_header_rec.invoice_to_org_id;
1928: l_org_id := OE_Order_Cache.g_header_rec.org_id;
1929: end if;
1930: IF l_debug_level > 0 THEN
1931: oe_debug_pub.add('INVOICE_TO_ORG_ID and ORG_ID'||l_invoice_to_org_id||' and '||l_org_id);
1932: END IF;
1933:
1934: Begin
1935: Select hca.party_id, acct_site.cust_account_id

Line 1969: oe_debug_pub.add('instrument_id is: '||l_instrument_id,1);

1965: null;
1966: End;
1967:
1968: IF l_debug_level > 0 THEN
1969: oe_debug_pub.add('instrument_id is: '||l_instrument_id,1);
1970: END IF;
1971:
1972: -- Need to call the Set Payer Instr Assignment API always
1973: --to create a new assignment id at the account level as iStore

Line 1989: oe_debug_pub.add('l_exists_assignment is: '||l_exists_assignment,1);

1985: l_exists_assignment := 'N';
1986: End;
1987:
1988: IF l_debug_level > 0 THEN
1989: oe_debug_pub.add('l_exists_assignment is: '||l_exists_assignment,1);
1990: END IF;
1991:
1992: IF l_exists_assignment = 'N' THEN*/
1993:

Line 2002: oe_debug_pub.add('Calling Oracle Payments API to create new assignment.',1);

1998: l_instrument.instrument_id := l_instrument_id;
1999: l_assignment_attribs.instrument := l_instrument;
2000:
2001: IF l_debug_level > 0 THEN
2002: oe_debug_pub.add('Calling Oracle Payments API to create new assignment.',1);
2003: oe_debug_pub.add('Before call to Set payer instr assignment API...');
2004: oe_debug_pub.add('Assignment attributes passed ');
2005: oe_debug_pub.add('l_instrument.instrument_id ---> '||l_instrument_id);
2006: oe_debug_pub.add('l_instrument.instrument_type -> '||l_instrument_type);

Line 2003: oe_debug_pub.add('Before call to Set payer instr assignment API...');

1999: l_assignment_attribs.instrument := l_instrument;
2000:
2001: IF l_debug_level > 0 THEN
2002: oe_debug_pub.add('Calling Oracle Payments API to create new assignment.',1);
2003: oe_debug_pub.add('Before call to Set payer instr assignment API...');
2004: oe_debug_pub.add('Assignment attributes passed ');
2005: oe_debug_pub.add('l_instrument.instrument_id ---> '||l_instrument_id);
2006: oe_debug_pub.add('l_instrument.instrument_type -> '||l_instrument_type);
2007: END IF;

Line 2004: oe_debug_pub.add('Assignment attributes passed ');

2000:
2001: IF l_debug_level > 0 THEN
2002: oe_debug_pub.add('Calling Oracle Payments API to create new assignment.',1);
2003: oe_debug_pub.add('Before call to Set payer instr assignment API...');
2004: oe_debug_pub.add('Assignment attributes passed ');
2005: oe_debug_pub.add('l_instrument.instrument_id ---> '||l_instrument_id);
2006: oe_debug_pub.add('l_instrument.instrument_type -> '||l_instrument_type);
2007: END IF;
2008:

Line 2005: oe_debug_pub.add('l_instrument.instrument_id ---> '||l_instrument_id);

2001: IF l_debug_level > 0 THEN
2002: oe_debug_pub.add('Calling Oracle Payments API to create new assignment.',1);
2003: oe_debug_pub.add('Before call to Set payer instr assignment API...');
2004: oe_debug_pub.add('Assignment attributes passed ');
2005: oe_debug_pub.add('l_instrument.instrument_id ---> '||l_instrument_id);
2006: oe_debug_pub.add('l_instrument.instrument_type -> '||l_instrument_type);
2007: END IF;
2008:
2009: IBY_FNDCPT_SETUP_PUB.Set_Payer_Instr_Assignment

Line 2006: oe_debug_pub.add('l_instrument.instrument_type -> '||l_instrument_type);

2002: oe_debug_pub.add('Calling Oracle Payments API to create new assignment.',1);
2003: oe_debug_pub.add('Before call to Set payer instr assignment API...');
2004: oe_debug_pub.add('Assignment attributes passed ');
2005: oe_debug_pub.add('l_instrument.instrument_id ---> '||l_instrument_id);
2006: oe_debug_pub.add('l_instrument.instrument_type -> '||l_instrument_type);
2007: END IF;
2008:
2009: IBY_FNDCPT_SETUP_PUB.Set_Payer_Instr_Assignment
2010: (p_api_version => 1.0,

Line 2028: oe_debug_pub.add( 'OEXUPTXB: Invalid card number or expiration date in set payer instr assignment ' || l_response_code.result_code ) ;

2024: IF l_response_code.result_code = 'INVALID_CARD_NUMBER' THEN
2025: FND_MESSAGE.SET_NAME('ONT','OE_VPM_CC_ACCT_NOT_SET');
2026: OE_MSG_PUB.ADD;
2027: IF l_debug_level > 0 THEN
2028: oe_debug_pub.add( 'OEXUPTXB: Invalid card number or expiration date in set payer instr assignment ' || l_response_code.result_code ) ;
2029: END IF;
2030: ELSIF l_response_code.result_code = 'INVALID_ADDRESS' THEN
2031: FND_MESSAGE.SET_NAME('ONT','OE_CC_BILL_TO_ADDRESS_INVALID');
2032: OE_MSG_PUB.ADD;

Line 2034: oe_debug_pub.add( 'OEXUPTXB: Invalid billing address in set payer instr assignment ' || l_response_code.result_code) ;

2030: ELSIF l_response_code.result_code = 'INVALID_ADDRESS' THEN
2031: FND_MESSAGE.SET_NAME('ONT','OE_CC_BILL_TO_ADDRESS_INVALID');
2032: OE_MSG_PUB.ADD;
2033: IF l_debug_level > 0 THEN
2034: oe_debug_pub.add( 'OEXUPTXB: Invalid billing address in set payer instr assignment ' || l_response_code.result_code) ;
2035: END IF;
2036: ELSIF l_response_code.result_code = 'INVALID_CARD_ISSUER' THEN
2037: FND_MESSAGE.SET_NAME('ONT','OE_VPM_CC_ACCT_NOT_SET'); --bug 5012613
2038: OE_MSG_PUB.ADD;

Line 2040: oe_debug_pub.add( 'OEXUPTXB: Invalid billing address in set payer instr assignment ' || l_response_code.result_code) ;

2036: ELSIF l_response_code.result_code = 'INVALID_CARD_ISSUER' THEN
2037: FND_MESSAGE.SET_NAME('ONT','OE_VPM_CC_ACCT_NOT_SET'); --bug 5012613
2038: OE_MSG_PUB.ADD;
2039: IF l_debug_level > 0 THEN
2040: oe_debug_pub.add( 'OEXUPTXB: Invalid billing address in set payer instr assignment ' || l_response_code.result_code) ;
2041: END IF;
2042: ELSE --Setting a generic message bug 5244099
2043: FND_MESSAGE.SET_NAME('ONT','OE_VPM_CC_ACCT_NOT_SET');
2044: OE_MSG_PUB.ADD;

Line 2046: oe_debug_pub.add( 'OEXUPTXB: Setting the generic message in set payer instr assignment ' || l_response_code.result_code) ;

2042: ELSE --Setting a generic message bug 5244099
2043: FND_MESSAGE.SET_NAME('ONT','OE_VPM_CC_ACCT_NOT_SET');
2044: OE_MSG_PUB.ADD;
2045: IF l_debug_level > 0 THEN
2046: oe_debug_pub.add( 'OEXUPTXB: Setting the generic message in set payer instr assignment ' || l_response_code.result_code) ;
2047: END IF;
2048: END IF;
2049: -- 16604394
2050: RAISE FND_API.G_EXC_ERROR;

Line 2057: oe_debug_pub.add('Unexpected result error code in Set_Payer_Instr_Assignment-->'||l_response_code.result_code);

2053: FND_MESSAGE.SET_NAME('ONT','OE_VPM_CC_ACCT_NOT_SET'); --bug 5244099
2054: OE_MSG_PUB.ADD;
2055: -- 16604394
2056: IF l_debug_level > 0 THEN
2057: oe_debug_pub.add('Unexpected result error code in Set_Payer_Instr_Assignment-->'||l_response_code.result_code);
2058: END IF;
2059: RAISE FND_API.G_EXC_UNEXPECTED_ERROR;
2060: ELSIF l_return_status = FND_API.G_RET_STS_SUCCESS THEN
2061: IF l_debug_level > 0 THEN

Line 2062: oe_debug_pub.add('Result code in Set_Payer_Instr_Assignment'||l_response_code.result_code);

2058: END IF;
2059: RAISE FND_API.G_EXC_UNEXPECTED_ERROR;
2060: ELSIF l_return_status = FND_API.G_RET_STS_SUCCESS THEN
2061: IF l_debug_level > 0 THEN
2062: oe_debug_pub.add('Result code in Set_Payer_Instr_Assignment'||l_response_code.result_code);
2063: oe_debug_pub.add('new assignment id is: '||l_assign_id,1);
2064: END IF;
2065: END IF;
2066:

Line 2063: oe_debug_pub.add('new assignment id is: '||l_assign_id,1);

2059: RAISE FND_API.G_EXC_UNEXPECTED_ERROR;
2060: ELSIF l_return_status = FND_API.G_RET_STS_SUCCESS THEN
2061: IF l_debug_level > 0 THEN
2062: oe_debug_pub.add('Result code in Set_Payer_Instr_Assignment'||l_response_code.result_code);
2063: oe_debug_pub.add('new assignment id is: '||l_assign_id,1);
2064: END IF;
2065: END IF;
2066:
2067: --Populating the new assignment id to the copy instr

Line 2075: oe_debug_pub.add('Payer context in copy...'||l_party_id||' and '||l_org_type ||'and'||l_cust_account_id||'and'||'and'||p_site_use_id||'and'||p_trxn_extension_id||'and'||p_header_id);

2071:
2072: p_entities(1) := p_trxn_extension_id;
2073:
2074: IF l_debug_level > 0 THEN
2075: oe_debug_pub.add('Payer context in copy...'||l_party_id||' and '||l_org_type ||'and'||l_cust_account_id||'and'||'and'||p_site_use_id||'and'||p_trxn_extension_id||'and'||p_header_id);
2076: END IF;
2077:
2078: --
2079: IF p_line_id IS NOT NULL THEN

Line 2087: oe_debug_pub.add('Values passed to Copy_transaction_extension');

2083: l_trxn_attribs.Originating_Application_Id := 660;
2084:
2085: --
2086: IF l_debug_level > 0 THEN
2087: oe_debug_pub.add('Values passed to Copy_transaction_extension');
2088: oe_debug_pub.add('original trxn extension id ---->'||p_entities(1));
2089: oe_debug_pub.add('trxn attributes record type values');
2090: --oe_debug_pub.add('l_trxn_attribs.Instrument_Security_Code --->'||p_instrument_security_code);
2091: oe_debug_pub.add('l_trxn_attribs.Originating application id ---> 660');

Line 2088: oe_debug_pub.add('original trxn extension id ---->'||p_entities(1));

2084:
2085: --
2086: IF l_debug_level > 0 THEN
2087: oe_debug_pub.add('Values passed to Copy_transaction_extension');
2088: oe_debug_pub.add('original trxn extension id ---->'||p_entities(1));
2089: oe_debug_pub.add('trxn attributes record type values');
2090: --oe_debug_pub.add('l_trxn_attribs.Instrument_Security_Code --->'||p_instrument_security_code);
2091: oe_debug_pub.add('l_trxn_attribs.Originating application id ---> 660');
2092: oe_debug_pub.add('l_trxn_attribs.order_id ----> '||p_header_id);

Line 2089: oe_debug_pub.add('trxn attributes record type values');

2085: --
2086: IF l_debug_level > 0 THEN
2087: oe_debug_pub.add('Values passed to Copy_transaction_extension');
2088: oe_debug_pub.add('original trxn extension id ---->'||p_entities(1));
2089: oe_debug_pub.add('trxn attributes record type values');
2090: --oe_debug_pub.add('l_trxn_attribs.Instrument_Security_Code --->'||p_instrument_security_code);
2091: oe_debug_pub.add('l_trxn_attribs.Originating application id ---> 660');
2092: oe_debug_pub.add('l_trxn_attribs.order_id ----> '||p_header_id);
2093: oe_debug_pub.add('l_trxn_attribs.trxn_ref_number1 --->'||p_line_id);

Line 2090: --oe_debug_pub.add('l_trxn_attribs.Instrument_Security_Code --->'||p_instrument_security_code);

2086: IF l_debug_level > 0 THEN
2087: oe_debug_pub.add('Values passed to Copy_transaction_extension');
2088: oe_debug_pub.add('original trxn extension id ---->'||p_entities(1));
2089: oe_debug_pub.add('trxn attributes record type values');
2090: --oe_debug_pub.add('l_trxn_attribs.Instrument_Security_Code --->'||p_instrument_security_code);
2091: oe_debug_pub.add('l_trxn_attribs.Originating application id ---> 660');
2092: oe_debug_pub.add('l_trxn_attribs.order_id ----> '||p_header_id);
2093: oe_debug_pub.add('l_trxn_attribs.trxn_ref_number1 --->'||p_line_id);
2094: --oe_debug_pub.add('l_trxn_attribs.trxn_ref_number2 --->'||p_payment_number);

Line 2091: oe_debug_pub.add('l_trxn_attribs.Originating application id ---> 660');

2087: oe_debug_pub.add('Values passed to Copy_transaction_extension');
2088: oe_debug_pub.add('original trxn extension id ---->'||p_entities(1));
2089: oe_debug_pub.add('trxn attributes record type values');
2090: --oe_debug_pub.add('l_trxn_attribs.Instrument_Security_Code --->'||p_instrument_security_code);
2091: oe_debug_pub.add('l_trxn_attribs.Originating application id ---> 660');
2092: oe_debug_pub.add('l_trxn_attribs.order_id ----> '||p_header_id);
2093: oe_debug_pub.add('l_trxn_attribs.trxn_ref_number1 --->'||p_line_id);
2094: --oe_debug_pub.add('l_trxn_attribs.trxn_ref_number2 --->'||p_payment_number);
2095: oe_debug_pub.add('l_trxn_attribs.copy_instr_assign_id ---->'||l_assign_id);

Line 2092: oe_debug_pub.add('l_trxn_attribs.order_id ----> '||p_header_id);

2088: oe_debug_pub.add('original trxn extension id ---->'||p_entities(1));
2089: oe_debug_pub.add('trxn attributes record type values');
2090: --oe_debug_pub.add('l_trxn_attribs.Instrument_Security_Code --->'||p_instrument_security_code);
2091: oe_debug_pub.add('l_trxn_attribs.Originating application id ---> 660');
2092: oe_debug_pub.add('l_trxn_attribs.order_id ----> '||p_header_id);
2093: oe_debug_pub.add('l_trxn_attribs.trxn_ref_number1 --->'||p_line_id);
2094: --oe_debug_pub.add('l_trxn_attribs.trxn_ref_number2 --->'||p_payment_number);
2095: oe_debug_pub.add('l_trxn_attribs.copy_instr_assign_id ---->'||l_assign_id);
2096: END IF;

Line 2093: oe_debug_pub.add('l_trxn_attribs.trxn_ref_number1 --->'||p_line_id);

2089: oe_debug_pub.add('trxn attributes record type values');
2090: --oe_debug_pub.add('l_trxn_attribs.Instrument_Security_Code --->'||p_instrument_security_code);
2091: oe_debug_pub.add('l_trxn_attribs.Originating application id ---> 660');
2092: oe_debug_pub.add('l_trxn_attribs.order_id ----> '||p_header_id);
2093: oe_debug_pub.add('l_trxn_attribs.trxn_ref_number1 --->'||p_line_id);
2094: --oe_debug_pub.add('l_trxn_attribs.trxn_ref_number2 --->'||p_payment_number);
2095: oe_debug_pub.add('l_trxn_attribs.copy_instr_assign_id ---->'||l_assign_id);
2096: END IF;
2097: IBY_Fndcpt_Trxn_Pub.Copy_Transaction_Extension

Line 2094: --oe_debug_pub.add('l_trxn_attribs.trxn_ref_number2 --->'||p_payment_number);

2090: --oe_debug_pub.add('l_trxn_attribs.Instrument_Security_Code --->'||p_instrument_security_code);
2091: oe_debug_pub.add('l_trxn_attribs.Originating application id ---> 660');
2092: oe_debug_pub.add('l_trxn_attribs.order_id ----> '||p_header_id);
2093: oe_debug_pub.add('l_trxn_attribs.trxn_ref_number1 --->'||p_line_id);
2094: --oe_debug_pub.add('l_trxn_attribs.trxn_ref_number2 --->'||p_payment_number);
2095: oe_debug_pub.add('l_trxn_attribs.copy_instr_assign_id ---->'||l_assign_id);
2096: END IF;
2097: IBY_Fndcpt_Trxn_Pub.Copy_Transaction_Extension
2098: (p_api_version => 1.0,

Line 2095: oe_debug_pub.add('l_trxn_attribs.copy_instr_assign_id ---->'||l_assign_id);

2091: oe_debug_pub.add('l_trxn_attribs.Originating application id ---> 660');
2092: oe_debug_pub.add('l_trxn_attribs.order_id ----> '||p_header_id);
2093: oe_debug_pub.add('l_trxn_attribs.trxn_ref_number1 --->'||p_line_id);
2094: --oe_debug_pub.add('l_trxn_attribs.trxn_ref_number2 --->'||p_payment_number);
2095: oe_debug_pub.add('l_trxn_attribs.copy_instr_assign_id ---->'||l_assign_id);
2096: END IF;
2097: IBY_Fndcpt_Trxn_Pub.Copy_Transaction_Extension
2098: (p_api_version => 1.0,
2099: p_init_msg_list => FND_API.G_TRUE,

Line 2112: oe_debug_pub.add('Return status from Copy_Transaction_Extension'||l_return_status);

2108: X_entity_id => x_trxn_extension_id,
2109: x_response => l_response_code);
2110:
2111: IF l_debug_level > 0 THEN
2112: oe_debug_pub.add('Return status from Copy_Transaction_Extension'||l_return_status);
2113: END IF;
2114:
2115: IF l_return_status = FND_API.G_RET_STS_ERROR THEN
2116: IF l_debug_level > 0 THEN

Line 2117: oe_debug_pub.add('Result error code in Copy_Transaction_Extension'||l_response_code.result_code);

2113: END IF;
2114:
2115: IF l_return_status = FND_API.G_RET_STS_ERROR THEN
2116: IF l_debug_level > 0 THEN
2117: oe_debug_pub.add('Result error code in Copy_Transaction_Extension'||l_response_code.result_code);
2118: END IF;
2119: --IF l_response_code.result_code = '
2120: RAISE FND_API.G_EXC_ERROR;
2121: ELSIF l_return_status = FND_API.G_RET_STS_UNEXP_ERROR THEN

Line 2123: oe_debug_pub.add('Result error code in Copy_Transaction_Extension'||l_response_code.result_code);

2119: --IF l_response_code.result_code = '
2120: RAISE FND_API.G_EXC_ERROR;
2121: ELSIF l_return_status = FND_API.G_RET_STS_UNEXP_ERROR THEN
2122: IF l_debug_level > 0 THEN
2123: oe_debug_pub.add('Result error code in Copy_Transaction_Extension'||l_response_code.result_code);
2124: END IF;
2125: RAISE FND_API.G_EXC_UNEXPECTED_ERROR;
2126: ELSIF l_return_status = FND_API.G_RET_STS_SUCCESS THEN
2127: IF l_debug_level > 0 THEN

Line 2128: oe_debug_pub.add('Result code in Copy_Transaction_Extension'||l_response_code.result_code);

2124: END IF;
2125: RAISE FND_API.G_EXC_UNEXPECTED_ERROR;
2126: ELSIF l_return_status = FND_API.G_RET_STS_SUCCESS THEN
2127: IF l_debug_level > 0 THEN
2128: oe_debug_pub.add('Result code in Copy_Transaction_Extension'||l_response_code.result_code);
2129: END IF;
2130: END IF;
2131:
2132: IF l_debug_level > 0 THEN

Line 2133: oe_debug_pub.add('Exiting OE_PAYMENT_TRXN_UTIL.Copy_Payment_Trxn.', 1);

2129: END IF;
2130: END IF;
2131:
2132: IF l_debug_level > 0 THEN
2133: oe_debug_pub.add('Exiting OE_PAYMENT_TRXN_UTIL.Copy_Payment_Trxn.', 1);
2134: END IF;
2135:
2136: X_return_status := FND_API.G_RET_STS_SUCCESS;
2137:

Line 2143: oe_debug_pub.add('Copy_Transaction_Extension error....exc');

2139:
2140: WHEN FND_API.G_EXC_ERROR THEN
2141: l_err_message := SQLERRM;
2142: IF l_debug_level > 0 THEN
2143: oe_debug_pub.add('Copy_Transaction_Extension error....exc');
2144: oe_debug_pub.add('After call to Copy_Transaction_Extension'||l_return_status);
2145: oe_debug_pub.add('Result code'||l_response_code.result_code);
2146: oe_debug_pub.add('Error'||l_err_message);
2147: END IF;

Line 2144: oe_debug_pub.add('After call to Copy_Transaction_Extension'||l_return_status);

2140: WHEN FND_API.G_EXC_ERROR THEN
2141: l_err_message := SQLERRM;
2142: IF l_debug_level > 0 THEN
2143: oe_debug_pub.add('Copy_Transaction_Extension error....exc');
2144: oe_debug_pub.add('After call to Copy_Transaction_Extension'||l_return_status);
2145: oe_debug_pub.add('Result code'||l_response_code.result_code);
2146: oe_debug_pub.add('Error'||l_err_message);
2147: END IF;
2148:

Line 2145: oe_debug_pub.add('Result code'||l_response_code.result_code);

2141: l_err_message := SQLERRM;
2142: IF l_debug_level > 0 THEN
2143: oe_debug_pub.add('Copy_Transaction_Extension error....exc');
2144: oe_debug_pub.add('After call to Copy_Transaction_Extension'||l_return_status);
2145: oe_debug_pub.add('Result code'||l_response_code.result_code);
2146: oe_debug_pub.add('Error'||l_err_message);
2147: END IF;
2148:
2149: X_return_status := FND_API.G_RET_STS_ERROR;

Line 2146: oe_debug_pub.add('Error'||l_err_message);

2142: IF l_debug_level > 0 THEN
2143: oe_debug_pub.add('Copy_Transaction_Extension error....exc');
2144: oe_debug_pub.add('After call to Copy_Transaction_Extension'||l_return_status);
2145: oe_debug_pub.add('Result code'||l_response_code.result_code);
2146: oe_debug_pub.add('Error'||l_err_message);
2147: END IF;
2148:
2149: X_return_status := FND_API.G_RET_STS_ERROR;
2150: OE_MSG_PUB.Count_And_Get

Line 2158: oe_debug_pub.add('Copy_Transaction_Extension error....unxc');

2154: RAISE FND_API.G_EXC_ERROR;
2155: WHEN FND_API.G_EXC_UNEXPECTED_ERROR THEN
2156: l_err_message := SQLERRM;
2157: IF l_debug_level > 0 THEN
2158: oe_debug_pub.add('Copy_Transaction_Extension error....unxc');
2159: oe_debug_pub.add('After call to Copy_Transaction_Extension'||l_return_status);
2160: oe_debug_pub.add('Result code'||l_response_code.result_code);
2161: oe_debug_pub.add('f Error'||l_err_message);
2162: END IF;

Line 2159: oe_debug_pub.add('After call to Copy_Transaction_Extension'||l_return_status);

2155: WHEN FND_API.G_EXC_UNEXPECTED_ERROR THEN
2156: l_err_message := SQLERRM;
2157: IF l_debug_level > 0 THEN
2158: oe_debug_pub.add('Copy_Transaction_Extension error....unxc');
2159: oe_debug_pub.add('After call to Copy_Transaction_Extension'||l_return_status);
2160: oe_debug_pub.add('Result code'||l_response_code.result_code);
2161: oe_debug_pub.add('f Error'||l_err_message);
2162: END IF;
2163:

Line 2160: oe_debug_pub.add('Result code'||l_response_code.result_code);

2156: l_err_message := SQLERRM;
2157: IF l_debug_level > 0 THEN
2158: oe_debug_pub.add('Copy_Transaction_Extension error....unxc');
2159: oe_debug_pub.add('After call to Copy_Transaction_Extension'||l_return_status);
2160: oe_debug_pub.add('Result code'||l_response_code.result_code);
2161: oe_debug_pub.add('f Error'||l_err_message);
2162: END IF;
2163:
2164: X_return_status := FND_API.G_RET_STS_UNEXP_ERROR;

Line 2161: oe_debug_pub.add('f Error'||l_err_message);

2157: IF l_debug_level > 0 THEN
2158: oe_debug_pub.add('Copy_Transaction_Extension error....unxc');
2159: oe_debug_pub.add('After call to Copy_Transaction_Extension'||l_return_status);
2160: oe_debug_pub.add('Result code'||l_response_code.result_code);
2161: oe_debug_pub.add('f Error'||l_err_message);
2162: END IF;
2163:
2164: X_return_status := FND_API.G_RET_STS_UNEXP_ERROR;
2165: OE_MSG_PUB.Count_And_Get

Line 2174: oe_debug_pub.add('Create_Transaction_Extension assignment error....others');

2170:
2171: WHEN OTHERS THEN
2172: l_err_message := SQLERRM;
2173: IF l_debug_level > 0 THEN
2174: oe_debug_pub.add('Create_Transaction_Extension assignment error....others');
2175: oe_debug_pub.add('After call to Create_Transaction_Extension'||l_return_status);
2176: oe_debug_pub.add('Result code'||l_response_code.result_code);
2177: oe_debug_pub.add('trx Error'||l_err_message);
2178: END IF;

Line 2175: oe_debug_pub.add('After call to Create_Transaction_Extension'||l_return_status);

2171: WHEN OTHERS THEN
2172: l_err_message := SQLERRM;
2173: IF l_debug_level > 0 THEN
2174: oe_debug_pub.add('Create_Transaction_Extension assignment error....others');
2175: oe_debug_pub.add('After call to Create_Transaction_Extension'||l_return_status);
2176: oe_debug_pub.add('Result code'||l_response_code.result_code);
2177: oe_debug_pub.add('trx Error'||l_err_message);
2178: END IF;
2179:

Line 2176: oe_debug_pub.add('Result code'||l_response_code.result_code);

2172: l_err_message := SQLERRM;
2173: IF l_debug_level > 0 THEN
2174: oe_debug_pub.add('Create_Transaction_Extension assignment error....others');
2175: oe_debug_pub.add('After call to Create_Transaction_Extension'||l_return_status);
2176: oe_debug_pub.add('Result code'||l_response_code.result_code);
2177: oe_debug_pub.add('trx Error'||l_err_message);
2178: END IF;
2179:
2180: X_return_status := FND_API.G_RET_STS_UNEXP_ERROR;

Line 2177: oe_debug_pub.add('trx Error'||l_err_message);

2173: IF l_debug_level > 0 THEN
2174: oe_debug_pub.add('Create_Transaction_Extension assignment error....others');
2175: oe_debug_pub.add('After call to Create_Transaction_Extension'||l_return_status);
2176: oe_debug_pub.add('Result code'||l_response_code.result_code);
2177: oe_debug_pub.add('trx Error'||l_err_message);
2178: END IF;
2179:
2180: X_return_status := FND_API.G_RET_STS_UNEXP_ERROR;
2181: IF FND_MSG_PUB.Check_Msg_Level(FND_MSG_PUB.G_MSG_LVL_UNEXP_ERROR)

Line 2232: l_debug_level CONSTANT NUMBER := oe_debug_pub.g_debug_level;

2228: l_payment_function VARCHAR2(80);
2229: l_org_id NUMBER;
2230: l_trxn_attribs IBY_FNDCPT_TRXN_PUB.TrxnExtension_rec_type;
2231: l_err_message VARCHAR2(2000);
2232: l_debug_level CONSTANT NUMBER := oe_debug_pub.g_debug_level;
2233: L_authorized VARCHAR2(1);
2234: l_encrypted VARCHAR2(30); --PADSS
2235: BEGIN
2236:

Line 2238: oe_debug_pub.add('Entering Get_Payment_Trxn_Info...');

2234: l_encrypted VARCHAR2(30); --PADSS
2235: BEGIN
2236:
2237: IF l_debug_level > 0 THEN
2238: oe_debug_pub.add('Entering Get_Payment_Trxn_Info...');
2239: x_return_status := FND_API.G_RET_STS_SUCCESS;
2240: END IF;
2241:
2242: --< if l_trxn_extension_id is null, this might be called from sales order header>

Line 2249: oe_debug_pub.add('Trxn extension id from oe_payments'||l_trxn_extension_id);

2245: INTO l_trxn_extension_id
2246: FROM oe_payments
2247: WHERE header_id = p_header_id;
2248: IF l_debug_level > 0 THEN
2249: oe_debug_pub.add('Trxn extension id from oe_payments'||l_trxn_extension_id);
2250: END IF;
2251:
2252: END IF;
2253:

Line 2312: oe_debug_pub.add('Values retrieved in Get_Payment_Trxn_Info...');

2308: ITEV.TRXN_EXTENSION_ID = l_trxn_extension_id;
2309:
2310:
2311: IF l_debug_level > 0 THEN
2312: oe_debug_pub.add('Values retrieved in Get_Payment_Trxn_Info...');
2313: --oe_debug_pub.add('x_credit_card_number ----> '||x_credit_card_number);
2314: --oe_debug_pub.add('x_credit_card_holder_name ----> '||x_credit_card_holder_name);
2315: --oe_debug_pub.add('x_credit_card_expiration_date ---> '||x_credit_card_expiration_date);
2316: --oe_debug_pub.add('x_credit_card_code ---> '||x_credit_card_code);

Line 2313: --oe_debug_pub.add('x_credit_card_number ----> '||x_credit_card_number);

2309:
2310:
2311: IF l_debug_level > 0 THEN
2312: oe_debug_pub.add('Values retrieved in Get_Payment_Trxn_Info...');
2313: --oe_debug_pub.add('x_credit_card_number ----> '||x_credit_card_number);
2314: --oe_debug_pub.add('x_credit_card_holder_name ----> '||x_credit_card_holder_name);
2315: --oe_debug_pub.add('x_credit_card_expiration_date ---> '||x_credit_card_expiration_date);
2316: --oe_debug_pub.add('x_credit_card_code ---> '||x_credit_card_code);
2317: oe_debug_pub.add('l_authorized ---> '||l_authorized);

Line 2314: --oe_debug_pub.add('x_credit_card_holder_name ----> '||x_credit_card_holder_name);

2310:
2311: IF l_debug_level > 0 THEN
2312: oe_debug_pub.add('Values retrieved in Get_Payment_Trxn_Info...');
2313: --oe_debug_pub.add('x_credit_card_number ----> '||x_credit_card_number);
2314: --oe_debug_pub.add('x_credit_card_holder_name ----> '||x_credit_card_holder_name);
2315: --oe_debug_pub.add('x_credit_card_expiration_date ---> '||x_credit_card_expiration_date);
2316: --oe_debug_pub.add('x_credit_card_code ---> '||x_credit_card_code);
2317: oe_debug_pub.add('l_authorized ---> '||l_authorized);
2318: oe_debug_pub.add('x_instrument_security_code ----> '||x_instrument_security_code);

Line 2315: --oe_debug_pub.add('x_credit_card_expiration_date ---> '||x_credit_card_expiration_date);

2311: IF l_debug_level > 0 THEN
2312: oe_debug_pub.add('Values retrieved in Get_Payment_Trxn_Info...');
2313: --oe_debug_pub.add('x_credit_card_number ----> '||x_credit_card_number);
2314: --oe_debug_pub.add('x_credit_card_holder_name ----> '||x_credit_card_holder_name);
2315: --oe_debug_pub.add('x_credit_card_expiration_date ---> '||x_credit_card_expiration_date);
2316: --oe_debug_pub.add('x_credit_card_code ---> '||x_credit_card_code);
2317: oe_debug_pub.add('l_authorized ---> '||l_authorized);
2318: oe_debug_pub.add('x_instrument_security_code ----> '||x_instrument_security_code);
2319: oe_debug_pub.add('x_instrument_id ---> '||x_instrument_id);

Line 2316: --oe_debug_pub.add('x_credit_card_code ---> '||x_credit_card_code);

2312: oe_debug_pub.add('Values retrieved in Get_Payment_Trxn_Info...');
2313: --oe_debug_pub.add('x_credit_card_number ----> '||x_credit_card_number);
2314: --oe_debug_pub.add('x_credit_card_holder_name ----> '||x_credit_card_holder_name);
2315: --oe_debug_pub.add('x_credit_card_expiration_date ---> '||x_credit_card_expiration_date);
2316: --oe_debug_pub.add('x_credit_card_code ---> '||x_credit_card_code);
2317: oe_debug_pub.add('l_authorized ---> '||l_authorized);
2318: oe_debug_pub.add('x_instrument_security_code ----> '||x_instrument_security_code);
2319: oe_debug_pub.add('x_instrument_id ---> '||x_instrument_id);
2320: oe_debug_pub.add('x_instrument_assignment_id ----> '||x_instrument_assignment_id);

Line 2317: oe_debug_pub.add('l_authorized ---> '||l_authorized);

2313: --oe_debug_pub.add('x_credit_card_number ----> '||x_credit_card_number);
2314: --oe_debug_pub.add('x_credit_card_holder_name ----> '||x_credit_card_holder_name);
2315: --oe_debug_pub.add('x_credit_card_expiration_date ---> '||x_credit_card_expiration_date);
2316: --oe_debug_pub.add('x_credit_card_code ---> '||x_credit_card_code);
2317: oe_debug_pub.add('l_authorized ---> '||l_authorized);
2318: oe_debug_pub.add('x_instrument_security_code ----> '||x_instrument_security_code);
2319: oe_debug_pub.add('x_instrument_id ---> '||x_instrument_id);
2320: oe_debug_pub.add('x_instrument_assignment_id ----> '||x_instrument_assignment_id);
2321: END IF;

Line 2318: oe_debug_pub.add('x_instrument_security_code ----> '||x_instrument_security_code);

2314: --oe_debug_pub.add('x_credit_card_holder_name ----> '||x_credit_card_holder_name);
2315: --oe_debug_pub.add('x_credit_card_expiration_date ---> '||x_credit_card_expiration_date);
2316: --oe_debug_pub.add('x_credit_card_code ---> '||x_credit_card_code);
2317: oe_debug_pub.add('l_authorized ---> '||l_authorized);
2318: oe_debug_pub.add('x_instrument_security_code ----> '||x_instrument_security_code);
2319: oe_debug_pub.add('x_instrument_id ---> '||x_instrument_id);
2320: oe_debug_pub.add('x_instrument_assignment_id ----> '||x_instrument_assignment_id);
2321: END IF;
2322:

Line 2319: oe_debug_pub.add('x_instrument_id ---> '||x_instrument_id);

2315: --oe_debug_pub.add('x_credit_card_expiration_date ---> '||x_credit_card_expiration_date);
2316: --oe_debug_pub.add('x_credit_card_code ---> '||x_credit_card_code);
2317: oe_debug_pub.add('l_authorized ---> '||l_authorized);
2318: oe_debug_pub.add('x_instrument_security_code ----> '||x_instrument_security_code);
2319: oe_debug_pub.add('x_instrument_id ---> '||x_instrument_id);
2320: oe_debug_pub.add('x_instrument_assignment_id ----> '||x_instrument_assignment_id);
2321: END IF;
2322:
2323: --PADSS start

Line 2320: oe_debug_pub.add('x_instrument_assignment_id ----> '||x_instrument_assignment_id);

2316: --oe_debug_pub.add('x_credit_card_code ---> '||x_credit_card_code);
2317: oe_debug_pub.add('l_authorized ---> '||l_authorized);
2318: oe_debug_pub.add('x_instrument_security_code ----> '||x_instrument_security_code);
2319: oe_debug_pub.add('x_instrument_id ---> '||x_instrument_id);
2320: oe_debug_pub.add('x_instrument_assignment_id ----> '||x_instrument_assignment_id);
2321: END IF;
2322:
2323: --PADSS start
2324: begin

Line 2343: oe_debug_pub.add('Before calling IBY Get_authorization API...');

2339: --PADSS end
2340:
2341: IF l_authorized = 'Y' THEN
2342: IF l_debug_level > 0 THEN
2343: oe_debug_pub.add('Before calling IBY Get_authorization API...');
2344: oe_debug_pub.add('trxn extn id passed to get auth'||l_trxn_extension_id);
2345: END IF;
2346: IBY_Fndcpt_Trxn_Pub.Get_Authorization
2347: (p_api_version => 1.0,

Line 2344: oe_debug_pub.add('trxn extn id passed to get auth'||l_trxn_extension_id);

2340:
2341: IF l_authorized = 'Y' THEN
2342: IF l_debug_level > 0 THEN
2343: oe_debug_pub.add('Before calling IBY Get_authorization API...');
2344: oe_debug_pub.add('trxn extn id passed to get auth'||l_trxn_extension_id);
2345: END IF;
2346: IBY_Fndcpt_Trxn_Pub.Get_Authorization
2347: (p_api_version => 1.0,
2348: x_return_status => l_return_status,

Line 2357: oe_debug_pub.add('Return status from Get_Authorization'||l_return_status);

2353: x_auth_result => l_auth_result,
2354: x_response => l_response);
2355:
2356: IF l_debug_level > 0 THEN
2357: oe_debug_pub.add('Return status from Get_Authorization'||l_return_status);
2358: END IF;
2359:
2360: IF l_return_status = FND_API.G_RET_STS_ERROR THEN
2361: IF l_debug_level > 0 THEN

Line 2362: oe_debug_pub.add('Result error code in Get_Authorization'||l_response.result_code);

2358: END IF;
2359:
2360: IF l_return_status = FND_API.G_RET_STS_ERROR THEN
2361: IF l_debug_level > 0 THEN
2362: oe_debug_pub.add('Result error code in Get_Authorization'||l_response.result_code);
2363: END IF;
2364: --IF l_response_code.result_code = '
2365: ELSIF l_return_status = FND_API.G_RET_STS_UNEXP_ERROR THEN
2366: IF l_debug_level > 0 THEN

Line 2367: oe_debug_pub.add('Result error code in Get_Authorization'||l_response.result_code);

2363: END IF;
2364: --IF l_response_code.result_code = '
2365: ELSIF l_return_status = FND_API.G_RET_STS_UNEXP_ERROR THEN
2366: IF l_debug_level > 0 THEN
2367: oe_debug_pub.add('Result error code in Get_Authorization'||l_response.result_code);
2368: END IF;
2369: ELSIF l_return_status = FND_API.G_RET_STS_SUCCESS THEN
2370: IF l_debug_level > 0 THEN
2371: oe_debug_pub.add('Success in Get_Authorization'||l_response.result_code);

Line 2371: oe_debug_pub.add('Success in Get_Authorization'||l_response.result_code);

2367: oe_debug_pub.add('Result error code in Get_Authorization'||l_response.result_code);
2368: END IF;
2369: ELSIF l_return_status = FND_API.G_RET_STS_SUCCESS THEN
2370: IF l_debug_level > 0 THEN
2371: oe_debug_pub.add('Success in Get_Authorization'||l_response.result_code);
2372: --oe_debug_pub.add('approval code ----> '||l_auth_result.auth_code);
2373: --oe_debug_pub.add('x_credit_card_approval_date ---> '||l_auth_result.auth_date);
2374: END IF;
2375: x_credit_card_approval_code := l_auth_result.auth_code;

Line 2372: --oe_debug_pub.add('approval code ----> '||l_auth_result.auth_code);

2368: END IF;
2369: ELSIF l_return_status = FND_API.G_RET_STS_SUCCESS THEN
2370: IF l_debug_level > 0 THEN
2371: oe_debug_pub.add('Success in Get_Authorization'||l_response.result_code);
2372: --oe_debug_pub.add('approval code ----> '||l_auth_result.auth_code);
2373: --oe_debug_pub.add('x_credit_card_approval_date ---> '||l_auth_result.auth_date);
2374: END IF;
2375: x_credit_card_approval_code := l_auth_result.auth_code;
2376: x_credit_card_approval_date := l_auth_result.auth_date;

Line 2373: --oe_debug_pub.add('x_credit_card_approval_date ---> '||l_auth_result.auth_date);

2369: ELSIF l_return_status = FND_API.G_RET_STS_SUCCESS THEN
2370: IF l_debug_level > 0 THEN
2371: oe_debug_pub.add('Success in Get_Authorization'||l_response.result_code);
2372: --oe_debug_pub.add('approval code ----> '||l_auth_result.auth_code);
2373: --oe_debug_pub.add('x_credit_card_approval_date ---> '||l_auth_result.auth_date);
2374: END IF;
2375: x_credit_card_approval_code := l_auth_result.auth_code;
2376: x_credit_card_approval_date := l_auth_result.auth_date;
2377: END IF;

Line 2387: oe_debug_pub.add('Exiting Get_Payment_Trxn_Info....');

2383:
2384: X_return_status := FND_API.G_RET_STS_SUCCESS;
2385:
2386: IF l_debug_level > 0 THEN
2387: oe_debug_pub.add('Exiting Get_Payment_Trxn_Info....');
2388: END IF;
2389:
2390: EXCEPTION
2391:

Line 2395: oe_debug_pub.add('Get_Payment_Trxn_Info error....exc');

2391:
2392: WHEN FND_API.G_EXC_ERROR THEN
2393: l_err_message := SQLERRM;
2394: IF l_debug_level > 0 THEN
2395: oe_debug_pub.add('Get_Payment_Trxn_Info error....exc');
2396: oe_debug_pub.add('After call to Get_Payment_Trxn_Info'||l_return_status);
2397: oe_debug_pub.add('Result code'||l_response.result_code);
2398: oe_debug_pub.add('Error'||l_err_message);
2399: END IF;

Line 2396: oe_debug_pub.add('After call to Get_Payment_Trxn_Info'||l_return_status);

2392: WHEN FND_API.G_EXC_ERROR THEN
2393: l_err_message := SQLERRM;
2394: IF l_debug_level > 0 THEN
2395: oe_debug_pub.add('Get_Payment_Trxn_Info error....exc');
2396: oe_debug_pub.add('After call to Get_Payment_Trxn_Info'||l_return_status);
2397: oe_debug_pub.add('Result code'||l_response.result_code);
2398: oe_debug_pub.add('Error'||l_err_message);
2399: END IF;
2400:

Line 2397: oe_debug_pub.add('Result code'||l_response.result_code);

2393: l_err_message := SQLERRM;
2394: IF l_debug_level > 0 THEN
2395: oe_debug_pub.add('Get_Payment_Trxn_Info error....exc');
2396: oe_debug_pub.add('After call to Get_Payment_Trxn_Info'||l_return_status);
2397: oe_debug_pub.add('Result code'||l_response.result_code);
2398: oe_debug_pub.add('Error'||l_err_message);
2399: END IF;
2400:
2401:

Line 2398: oe_debug_pub.add('Error'||l_err_message);

2394: IF l_debug_level > 0 THEN
2395: oe_debug_pub.add('Get_Payment_Trxn_Info error....exc');
2396: oe_debug_pub.add('After call to Get_Payment_Trxn_Info'||l_return_status);
2397: oe_debug_pub.add('Result code'||l_response.result_code);
2398: oe_debug_pub.add('Error'||l_err_message);
2399: END IF;
2400:
2401:
2402: OE_MSG_PUB.Count_And_Get

Line 2410: oe_debug_pub.add('Get_Payment_Trxn_Info error....unxc');

2406:
2407: WHEN FND_API.G_EXC_UNEXPECTED_ERROR THEN
2408: l_err_message := SQLERRM;
2409: IF l_debug_level > 0 THEN
2410: oe_debug_pub.add('Get_Payment_Trxn_Info error....unxc');
2411: oe_debug_pub.add('After call to Get_Payment_Trxn_Info'||l_return_status);
2412: oe_debug_pub.add('Result code'||l_response.result_code);
2413: oe_debug_pub.add('f Error'||l_err_message);
2414: END IF;

Line 2411: oe_debug_pub.add('After call to Get_Payment_Trxn_Info'||l_return_status);

2407: WHEN FND_API.G_EXC_UNEXPECTED_ERROR THEN
2408: l_err_message := SQLERRM;
2409: IF l_debug_level > 0 THEN
2410: oe_debug_pub.add('Get_Payment_Trxn_Info error....unxc');
2411: oe_debug_pub.add('After call to Get_Payment_Trxn_Info'||l_return_status);
2412: oe_debug_pub.add('Result code'||l_response.result_code);
2413: oe_debug_pub.add('f Error'||l_err_message);
2414: END IF;
2415:

Line 2412: oe_debug_pub.add('Result code'||l_response.result_code);

2408: l_err_message := SQLERRM;
2409: IF l_debug_level > 0 THEN
2410: oe_debug_pub.add('Get_Payment_Trxn_Info error....unxc');
2411: oe_debug_pub.add('After call to Get_Payment_Trxn_Info'||l_return_status);
2412: oe_debug_pub.add('Result code'||l_response.result_code);
2413: oe_debug_pub.add('f Error'||l_err_message);
2414: END IF;
2415:
2416:

Line 2413: oe_debug_pub.add('f Error'||l_err_message);

2409: IF l_debug_level > 0 THEN
2410: oe_debug_pub.add('Get_Payment_Trxn_Info error....unxc');
2411: oe_debug_pub.add('After call to Get_Payment_Trxn_Info'||l_return_status);
2412: oe_debug_pub.add('Result code'||l_response.result_code);
2413: oe_debug_pub.add('f Error'||l_err_message);
2414: END IF;
2415:
2416:
2417: OE_MSG_PUB.Count_And_Get

Line 2425: oe_debug_pub.add('Get_Payment_Trxn_Info error....others');

2421:
2422: WHEN OTHERS THEN
2423: l_err_message := SQLERRM;
2424: IF l_debug_level > 0 THEN
2425: oe_debug_pub.add('Get_Payment_Trxn_Info error....others');
2426: oe_debug_pub.add('After call to Get_Payment_Trxn_Info'||l_return_status);
2427: oe_debug_pub.add('Result code'||l_response.result_code);
2428: oe_debug_pub.add('trx Error'||l_err_message);
2429: END IF;

Line 2426: oe_debug_pub.add('After call to Get_Payment_Trxn_Info'||l_return_status);

2422: WHEN OTHERS THEN
2423: l_err_message := SQLERRM;
2424: IF l_debug_level > 0 THEN
2425: oe_debug_pub.add('Get_Payment_Trxn_Info error....others');
2426: oe_debug_pub.add('After call to Get_Payment_Trxn_Info'||l_return_status);
2427: oe_debug_pub.add('Result code'||l_response.result_code);
2428: oe_debug_pub.add('trx Error'||l_err_message);
2429: END IF;
2430:

Line 2427: oe_debug_pub.add('Result code'||l_response.result_code);

2423: l_err_message := SQLERRM;
2424: IF l_debug_level > 0 THEN
2425: oe_debug_pub.add('Get_Payment_Trxn_Info error....others');
2426: oe_debug_pub.add('After call to Get_Payment_Trxn_Info'||l_return_status);
2427: oe_debug_pub.add('Result code'||l_response.result_code);
2428: oe_debug_pub.add('trx Error'||l_err_message);
2429: END IF;
2430:
2431:

Line 2428: oe_debug_pub.add('trx Error'||l_err_message);

2424: IF l_debug_level > 0 THEN
2425: oe_debug_pub.add('Get_Payment_Trxn_Info error....others');
2426: oe_debug_pub.add('After call to Get_Payment_Trxn_Info'||l_return_status);
2427: oe_debug_pub.add('Result code'||l_response.result_code);
2428: oe_debug_pub.add('trx Error'||l_err_message);
2429: END IF;
2430:
2431:
2432: IF FND_MSG_PUB.Check_Msg_Level(FND_MSG_PUB.G_MSG_LVL_UNEXP_ERROR)

Line 2471: l_debug_level CONSTANT NUMBER := oe_debug_pub.g_debug_level;

2467: L_party_id NUMBER;
2468: L_response_code IBY_FNDCPT_COMMON_PUB.Result_rec_type;
2469: l_cust_account_id NUMBER;
2470: l_err_message VARCHAR2(2000);
2471: l_debug_level CONSTANT NUMBER := oe_debug_pub.g_debug_level;
2472: l_site_use_id NUMBER := p_site_use_id;
2473: l_payment_channel_code VARCHAR2(80);
2474: l_invoice_to_org_id NUMBER;
2475: -- bug 5194228

Line 2488: oe_debug_pub.add('Entering Delete_Payment_Trxn...');

2484:
2485: BEGIN
2486:
2487: IF l_debug_level > 0 THEN
2488: oe_debug_pub.add('Entering Delete_Payment_Trxn...');
2489: END IF;
2490:
2491: IF p_line_id is not null then
2492: Select ORG_ID into l_org_id

Line 2518: oe_debug_pub.add('Trxn extn id not found....');

2514: and itev.trxn_extension_id=p_trxn_extension_id;
2515:
2516: exception
2517: when others then
2518: oe_debug_pub.add('Trxn extn id not found....');
2519: end ;
2520:
2521: --Incase of deleting payments due to bill to site change
2522: --the invoice to org id is passed as null. So querying the

Line 2526: oe_debug_pub.add('Inside l_site_use_id is null....'||l_payment_channel_code);

2522: --the invoice to org id is passed as null. So querying the
2523: --old invoice to org id from the payments tables in this case.
2524: IF l_site_use_id is null then
2525: IF l_debug_level > 0 THEN
2526: oe_debug_pub.add('Inside l_site_use_id is null....'||l_payment_channel_code);
2527: oe_debug_pub.add('Trxn extension id used to query ----> '||p_trxn_extension_id);
2528: END IF;
2529:
2530: BEGIN

Line 2527: oe_debug_pub.add('Trxn extension id used to query ----> '||p_trxn_extension_id);

2523: --old invoice to org id from the payments tables in this case.
2524: IF l_site_use_id is null then
2525: IF l_debug_level > 0 THEN
2526: oe_debug_pub.add('Inside l_site_use_id is null....'||l_payment_channel_code);
2527: oe_debug_pub.add('Trxn extension id used to query ----> '||p_trxn_extension_id);
2528: END IF;
2529:
2530: BEGIN
2531: IF l_payment_channel_code = 'CREDIT_CARD' THEN

Line 2533: oe_debug_pub.add('Inside the credit card query for site use id...'||p_trxn_extension_id);

2529:
2530: BEGIN
2531: IF l_payment_channel_code = 'CREDIT_CARD' THEN
2532: IF l_debug_level > 0 THEN
2533: oe_debug_pub.add('Inside the credit card query for site use id...'||p_trxn_extension_id);
2534: END IF;
2535: -- bug 8586227
2536: select ifpai.acct_site_use_id into l_site_use_id
2537: from iby_fndcpt_payer_assgn_instr_v ifpai,

Line 2543: oe_debug_pub.add('Inside the ACH and Direct debit query for site use id...'||p_trxn_extension_id);

2539: ifpai.instr_assignment_id = itev.instr_assignment_id and
2540: itev.trxn_extension_id = p_trxn_extension_id;
2541: ELSE
2542: IF l_debug_level > 0 THEN
2543: oe_debug_pub.add('Inside the ACH and Direct debit query for site use id...'||p_trxn_extension_id);
2544: END IF;
2545: select iepa.acct_site_use_id into l_site_use_id from
2546: iby_external_payers_all iepa, iby_fndcpt_tx_extensions ifte
2547: where iepa.ext_payer_id = ifte.ext_payer_id and

Line 2551: oe_debug_pub.add('site use id queried ---> '||l_site_use_id);

2547: where iepa.ext_payer_id = ifte.ext_payer_id and
2548: ifte.trxn_extension_id = p_trxn_extension_id;
2549: END IF;
2550: IF l_debug_level > 0 THEN
2551: oe_debug_pub.add('site use id queried ---> '||l_site_use_id);
2552: END IF;
2553: EXCEPTION
2554: WHEN NO_DATA_FOUND THEN
2555: IF l_debug_level > 0 THEN

Line 2556: oe_debug_pub.add('site use id not found..!!'||sqlerrm);

2552: END IF;
2553: EXCEPTION
2554: WHEN NO_DATA_FOUND THEN
2555: IF l_debug_level > 0 THEN
2556: oe_debug_pub.add('site use id not found..!!'||sqlerrm);
2557: END IF;
2558: END;
2559: END IF;
2560:

Line 2582: oe_debug_pub.add('Payer context values...');

2578: --Setting the payer context appropriately
2579: l_payer.account_site_id := l_site_use_id;
2580:
2581: IF l_debug_level > 0 THEN
2582: oe_debug_pub.add('Payer context values...');
2583: oe_debug_pub.add('party id'||l_party_id);
2584: oe_debug_pub.add('org id'||l_org_id);
2585: oe_debug_pub.add('cust acct id'||l_cust_account_id);
2586: oe_debug_pub.add('site use id'||l_site_use_id);

Line 2583: oe_debug_pub.add('party id'||l_party_id);

2579: l_payer.account_site_id := l_site_use_id;
2580:
2581: IF l_debug_level > 0 THEN
2582: oe_debug_pub.add('Payer context values...');
2583: oe_debug_pub.add('party id'||l_party_id);
2584: oe_debug_pub.add('org id'||l_org_id);
2585: oe_debug_pub.add('cust acct id'||l_cust_account_id);
2586: oe_debug_pub.add('site use id'||l_site_use_id);
2587: END IF;

Line 2584: oe_debug_pub.add('org id'||l_org_id);

2580:
2581: IF l_debug_level > 0 THEN
2582: oe_debug_pub.add('Payer context values...');
2583: oe_debug_pub.add('party id'||l_party_id);
2584: oe_debug_pub.add('org id'||l_org_id);
2585: oe_debug_pub.add('cust acct id'||l_cust_account_id);
2586: oe_debug_pub.add('site use id'||l_site_use_id);
2587: END IF;
2588:

Line 2585: oe_debug_pub.add('cust acct id'||l_cust_account_id);

2581: IF l_debug_level > 0 THEN
2582: oe_debug_pub.add('Payer context values...');
2583: oe_debug_pub.add('party id'||l_party_id);
2584: oe_debug_pub.add('org id'||l_org_id);
2585: oe_debug_pub.add('cust acct id'||l_cust_account_id);
2586: oe_debug_pub.add('site use id'||l_site_use_id);
2587: END IF;
2588:
2589: BEGIN

Line 2586: oe_debug_pub.add('site use id'||l_site_use_id);

2582: oe_debug_pub.add('Payer context values...');
2583: oe_debug_pub.add('party id'||l_party_id);
2584: oe_debug_pub.add('org id'||l_org_id);
2585: oe_debug_pub.add('cust acct id'||l_cust_account_id);
2586: oe_debug_pub.add('site use id'||l_site_use_id);
2587: END IF;
2588:
2589: BEGIN
2590: IF l_debug_level > 0 THEN

Line 2591: oe_debug_pub.add('Before calling Delete Transaction Extension API...');

2587: END IF;
2588:
2589: BEGIN
2590: IF l_debug_level > 0 THEN
2591: oe_debug_pub.add('Before calling Delete Transaction Extension API...');
2592: oe_debug_pub.add('Trxn extension id --------> '||p_trxn_extension_id);
2593: oe_debug_pub.add('Payer equivalency --------> '||IBY_FNDCPT_COMMON_PUB.G_PAYER_EQUIV_IMMEDIATE);
2594: END IF;
2595: -- bug 5194228

Line 2592: oe_debug_pub.add('Trxn extension id --------> '||p_trxn_extension_id);

2588:
2589: BEGIN
2590: IF l_debug_level > 0 THEN
2591: oe_debug_pub.add('Before calling Delete Transaction Extension API...');
2592: oe_debug_pub.add('Trxn extension id --------> '||p_trxn_extension_id);
2593: oe_debug_pub.add('Payer equivalency --------> '||IBY_FNDCPT_COMMON_PUB.G_PAYER_EQUIV_IMMEDIATE);
2594: END IF;
2595: -- bug 5194228
2596: IF nvl(l_authorized_flag,'N') = 'N' and nvl(l_Settled_flag,'N') = 'N' THEN

Line 2593: oe_debug_pub.add('Payer equivalency --------> '||IBY_FNDCPT_COMMON_PUB.G_PAYER_EQUIV_IMMEDIATE);

2589: BEGIN
2590: IF l_debug_level > 0 THEN
2591: oe_debug_pub.add('Before calling Delete Transaction Extension API...');
2592: oe_debug_pub.add('Trxn extension id --------> '||p_trxn_extension_id);
2593: oe_debug_pub.add('Payer equivalency --------> '||IBY_FNDCPT_COMMON_PUB.G_PAYER_EQUIV_IMMEDIATE);
2594: END IF;
2595: -- bug 5194228
2596: IF nvl(l_authorized_flag,'N') = 'N' and nvl(l_Settled_flag,'N') = 'N' THEN
2597: IBY_FNDCPT_TRXN_PUB.Delete_Transaction_Extension

Line 2611: oe_debug_pub.add('Result error code in Delete_Transaction_Extension'||l_response_code.result_code);

2607: p_entity_id => p_trxn_extension_id);
2608:
2609: IF l_return_status = FND_API.G_RET_STS_ERROR THEN
2610: IF l_debug_level > 0 THEN
2611: oe_debug_pub.add('Result error code in Delete_Transaction_Extension'||l_response_code.result_code);
2612: oe_debug_pub.add('sql error'||sqlerrm);
2613: oe_debug_pub.add('msg data'||l_msg_data);
2614: END IF;
2615: RAISE FND_API.G_EXC_ERROR;

Line 2612: oe_debug_pub.add('sql error'||sqlerrm);

2608:
2609: IF l_return_status = FND_API.G_RET_STS_ERROR THEN
2610: IF l_debug_level > 0 THEN
2611: oe_debug_pub.add('Result error code in Delete_Transaction_Extension'||l_response_code.result_code);
2612: oe_debug_pub.add('sql error'||sqlerrm);
2613: oe_debug_pub.add('msg data'||l_msg_data);
2614: END IF;
2615: RAISE FND_API.G_EXC_ERROR;
2616: ELSIF l_return_status = FND_API.G_RET_STS_UNEXP_ERROR THEN

Line 2613: oe_debug_pub.add('msg data'||l_msg_data);

2609: IF l_return_status = FND_API.G_RET_STS_ERROR THEN
2610: IF l_debug_level > 0 THEN
2611: oe_debug_pub.add('Result error code in Delete_Transaction_Extension'||l_response_code.result_code);
2612: oe_debug_pub.add('sql error'||sqlerrm);
2613: oe_debug_pub.add('msg data'||l_msg_data);
2614: END IF;
2615: RAISE FND_API.G_EXC_ERROR;
2616: ELSIF l_return_status = FND_API.G_RET_STS_UNEXP_ERROR THEN
2617: IF l_debug_level > 0 THEN

Line 2618: oe_debug_pub.add('Result error code in Delete_Transaction_Extension'||l_response_code.result_code);

2614: END IF;
2615: RAISE FND_API.G_EXC_ERROR;
2616: ELSIF l_return_status = FND_API.G_RET_STS_UNEXP_ERROR THEN
2617: IF l_debug_level > 0 THEN
2618: oe_debug_pub.add('Result error code in Delete_Transaction_Extension'||l_response_code.result_code);
2619: oe_debug_pub.add('sql error'||sqlerrm);
2620: oe_debug_pub.add('msg data'||l_msg_data);
2621: END IF;
2622: RAISE FND_API.G_EXC_UNEXPECTED_ERROR;

Line 2619: oe_debug_pub.add('sql error'||sqlerrm);

2615: RAISE FND_API.G_EXC_ERROR;
2616: ELSIF l_return_status = FND_API.G_RET_STS_UNEXP_ERROR THEN
2617: IF l_debug_level > 0 THEN
2618: oe_debug_pub.add('Result error code in Delete_Transaction_Extension'||l_response_code.result_code);
2619: oe_debug_pub.add('sql error'||sqlerrm);
2620: oe_debug_pub.add('msg data'||l_msg_data);
2621: END IF;
2622: RAISE FND_API.G_EXC_UNEXPECTED_ERROR;
2623: ELSIF l_return_status =FND_API.G_RET_STS_SUCCESS THEN

Line 2620: oe_debug_pub.add('msg data'||l_msg_data);

2616: ELSIF l_return_status = FND_API.G_RET_STS_UNEXP_ERROR THEN
2617: IF l_debug_level > 0 THEN
2618: oe_debug_pub.add('Result error code in Delete_Transaction_Extension'||l_response_code.result_code);
2619: oe_debug_pub.add('sql error'||sqlerrm);
2620: oe_debug_pub.add('msg data'||l_msg_data);
2621: END IF;
2622: RAISE FND_API.G_EXC_UNEXPECTED_ERROR;
2623: ELSIF l_return_status =FND_API.G_RET_STS_SUCCESS THEN
2624: IF l_debug_level > 0 THEN

Line 2625: oe_debug_pub.add('Delete_Transaction_Extension Successful....');

2621: END IF;
2622: RAISE FND_API.G_EXC_UNEXPECTED_ERROR;
2623: ELSIF l_return_status =FND_API.G_RET_STS_SUCCESS THEN
2624: IF l_debug_level > 0 THEN
2625: oe_debug_pub.add('Delete_Transaction_Extension Successful....');
2626: oe_debug_pub.add('After calling Delete_Transaction_Extension');
2627: oe_debug_pub.add('sql error'||sqlerrm);
2628: oe_debug_pub.add('msg data'||l_msg_data);
2629: END IF;

Line 2626: oe_debug_pub.add('After calling Delete_Transaction_Extension');

2622: RAISE FND_API.G_EXC_UNEXPECTED_ERROR;
2623: ELSIF l_return_status =FND_API.G_RET_STS_SUCCESS THEN
2624: IF l_debug_level > 0 THEN
2625: oe_debug_pub.add('Delete_Transaction_Extension Successful....');
2626: oe_debug_pub.add('After calling Delete_Transaction_Extension');
2627: oe_debug_pub.add('sql error'||sqlerrm);
2628: oe_debug_pub.add('msg data'||l_msg_data);
2629: END IF;
2630: x_return_status := FND_API.G_RET_STS_SUCCESS;

Line 2627: oe_debug_pub.add('sql error'||sqlerrm);

2623: ELSIF l_return_status =FND_API.G_RET_STS_SUCCESS THEN
2624: IF l_debug_level > 0 THEN
2625: oe_debug_pub.add('Delete_Transaction_Extension Successful....');
2626: oe_debug_pub.add('After calling Delete_Transaction_Extension');
2627: oe_debug_pub.add('sql error'||sqlerrm);
2628: oe_debug_pub.add('msg data'||l_msg_data);
2629: END IF;
2630: x_return_status := FND_API.G_RET_STS_SUCCESS;
2631: END IF;

Line 2628: oe_debug_pub.add('msg data'||l_msg_data);

2624: IF l_debug_level > 0 THEN
2625: oe_debug_pub.add('Delete_Transaction_Extension Successful....');
2626: oe_debug_pub.add('After calling Delete_Transaction_Extension');
2627: oe_debug_pub.add('sql error'||sqlerrm);
2628: oe_debug_pub.add('msg data'||l_msg_data);
2629: END IF;
2630: x_return_status := FND_API.G_RET_STS_SUCCESS;
2631: END IF;
2632: END IF;

Line 2646: oe_debug_pub.add('Reverse_CreditCard_Auth error....exc',5);

2642: p_return_status => l_return_status
2643: );
2644: IF l_return_status = FND_API.G_RET_STS_ERROR THEN
2645: IF l_debug_level > 0 THEN
2646: oe_debug_pub.add('Reverse_CreditCard_Auth error....exc',5);
2647: oe_debug_pub.add('After call to Reverse_CreditCard_Auth'||l_return_status,5);
2648: oe_debug_pub.add('Error'||sqlerrm,5);
2649: END IF;
2650: RAISE FND_API.G_EXC_ERROR;

Line 2647: oe_debug_pub.add('After call to Reverse_CreditCard_Auth'||l_return_status,5);

2643: );
2644: IF l_return_status = FND_API.G_RET_STS_ERROR THEN
2645: IF l_debug_level > 0 THEN
2646: oe_debug_pub.add('Reverse_CreditCard_Auth error....exc',5);
2647: oe_debug_pub.add('After call to Reverse_CreditCard_Auth'||l_return_status,5);
2648: oe_debug_pub.add('Error'||sqlerrm,5);
2649: END IF;
2650: RAISE FND_API.G_EXC_ERROR;
2651: ELSIF l_return_status= FND_API.G_RET_STS_UNEXP_ERROR Then

Line 2648: oe_debug_pub.add('Error'||sqlerrm,5);

2644: IF l_return_status = FND_API.G_RET_STS_ERROR THEN
2645: IF l_debug_level > 0 THEN
2646: oe_debug_pub.add('Reverse_CreditCard_Auth error....exc',5);
2647: oe_debug_pub.add('After call to Reverse_CreditCard_Auth'||l_return_status,5);
2648: oe_debug_pub.add('Error'||sqlerrm,5);
2649: END IF;
2650: RAISE FND_API.G_EXC_ERROR;
2651: ELSIF l_return_status= FND_API.G_RET_STS_UNEXP_ERROR Then
2652: IF l_debug_level > 0 THEN

Line 2653: oe_debug_pub.add('After call to Reverse_CreditCard_Auth --> Unexpected error',5);

2649: END IF;
2650: RAISE FND_API.G_EXC_ERROR;
2651: ELSIF l_return_status= FND_API.G_RET_STS_UNEXP_ERROR Then
2652: IF l_debug_level > 0 THEN
2653: oe_debug_pub.add('After call to Reverse_CreditCard_Auth --> Unexpected error',5);
2654: oe_debug_pub.add('Error message '||sqlerrm,5);
2655: END IF;
2656: RAISE FND_API.G_EXC_UNEXPECTED_ERROR;
2657: ELSIF l_return_status=FND_API.G_RET_STS_SUCCESS Then

Line 2654: oe_debug_pub.add('Error message '||sqlerrm,5);

2650: RAISE FND_API.G_EXC_ERROR;
2651: ELSIF l_return_status= FND_API.G_RET_STS_UNEXP_ERROR Then
2652: IF l_debug_level > 0 THEN
2653: oe_debug_pub.add('After call to Reverse_CreditCard_Auth --> Unexpected error',5);
2654: oe_debug_pub.add('Error message '||sqlerrm,5);
2655: END IF;
2656: RAISE FND_API.G_EXC_UNEXPECTED_ERROR;
2657: ELSIF l_return_status=FND_API.G_RET_STS_SUCCESS Then
2658: IF l_debug_level > 0 THEN

Line 2659: oe_debug_pub.add('Call to Reverse_CreditCard_Auth --> Success',5);

2655: END IF;
2656: RAISE FND_API.G_EXC_UNEXPECTED_ERROR;
2657: ELSIF l_return_status=FND_API.G_RET_STS_SUCCESS Then
2658: IF l_debug_level > 0 THEN
2659: oe_debug_pub.add('Call to Reverse_CreditCard_Auth --> Success',5);
2660: end if;
2661: --need to evaluate again
2662: IF p_line_id IS NOT NULL THEN
2663: /* DELETE oe_payments

Line 2724: oe_debug_pub.add('Delete_Payment_Trxn error....exc');

2720:
2721: WHEN FND_API.G_EXC_ERROR THEN
2722: l_err_message := SQLERRM;
2723: IF l_debug_level > 0 THEN
2724: oe_debug_pub.add('Delete_Payment_Trxn error....exc');
2725: oe_debug_pub.add('After call to Delete_Payment_Trxn'||l_return_status);
2726: oe_debug_pub.add('Result code'||l_response_code.result_code);
2727: oe_debug_pub.add('Error'||l_err_message);
2728: END IF;

Line 2725: oe_debug_pub.add('After call to Delete_Payment_Trxn'||l_return_status);

2721: WHEN FND_API.G_EXC_ERROR THEN
2722: l_err_message := SQLERRM;
2723: IF l_debug_level > 0 THEN
2724: oe_debug_pub.add('Delete_Payment_Trxn error....exc');
2725: oe_debug_pub.add('After call to Delete_Payment_Trxn'||l_return_status);
2726: oe_debug_pub.add('Result code'||l_response_code.result_code);
2727: oe_debug_pub.add('Error'||l_err_message);
2728: END IF;
2729:

Line 2726: oe_debug_pub.add('Result code'||l_response_code.result_code);

2722: l_err_message := SQLERRM;
2723: IF l_debug_level > 0 THEN
2724: oe_debug_pub.add('Delete_Payment_Trxn error....exc');
2725: oe_debug_pub.add('After call to Delete_Payment_Trxn'||l_return_status);
2726: oe_debug_pub.add('Result code'||l_response_code.result_code);
2727: oe_debug_pub.add('Error'||l_err_message);
2728: END IF;
2729:
2730: X_return_status := FND_API.G_RET_STS_ERROR;

Line 2727: oe_debug_pub.add('Error'||l_err_message);

2723: IF l_debug_level > 0 THEN
2724: oe_debug_pub.add('Delete_Payment_Trxn error....exc');
2725: oe_debug_pub.add('After call to Delete_Payment_Trxn'||l_return_status);
2726: oe_debug_pub.add('Result code'||l_response_code.result_code);
2727: oe_debug_pub.add('Error'||l_err_message);
2728: END IF;
2729:
2730: X_return_status := FND_API.G_RET_STS_ERROR;
2731: OE_MSG_PUB.Count_And_Get

Line 2740: oe_debug_pub.add('Delete_Payment_Trxn error....unxc');

2736:
2737: WHEN FND_API.G_EXC_UNEXPECTED_ERROR THEN
2738: l_err_message := SQLERRM;
2739: IF l_debug_level > 0 THEN
2740: oe_debug_pub.add('Delete_Payment_Trxn error....unxc');
2741: oe_debug_pub.add('After call to Delete_Payment_Trxn'||l_return_status);
2742: oe_debug_pub.add('Result code'||l_response_code.result_code);
2743: oe_debug_pub.add('f Error'||l_err_message);
2744: END IF;

Line 2741: oe_debug_pub.add('After call to Delete_Payment_Trxn'||l_return_status);

2737: WHEN FND_API.G_EXC_UNEXPECTED_ERROR THEN
2738: l_err_message := SQLERRM;
2739: IF l_debug_level > 0 THEN
2740: oe_debug_pub.add('Delete_Payment_Trxn error....unxc');
2741: oe_debug_pub.add('After call to Delete_Payment_Trxn'||l_return_status);
2742: oe_debug_pub.add('Result code'||l_response_code.result_code);
2743: oe_debug_pub.add('f Error'||l_err_message);
2744: END IF;
2745:

Line 2742: oe_debug_pub.add('Result code'||l_response_code.result_code);

2738: l_err_message := SQLERRM;
2739: IF l_debug_level > 0 THEN
2740: oe_debug_pub.add('Delete_Payment_Trxn error....unxc');
2741: oe_debug_pub.add('After call to Delete_Payment_Trxn'||l_return_status);
2742: oe_debug_pub.add('Result code'||l_response_code.result_code);
2743: oe_debug_pub.add('f Error'||l_err_message);
2744: END IF;
2745:
2746: X_return_status := FND_API.G_RET_STS_UNEXP_ERROR;

Line 2743: oe_debug_pub.add('f Error'||l_err_message);

2739: IF l_debug_level > 0 THEN
2740: oe_debug_pub.add('Delete_Payment_Trxn error....unxc');
2741: oe_debug_pub.add('After call to Delete_Payment_Trxn'||l_return_status);
2742: oe_debug_pub.add('Result code'||l_response_code.result_code);
2743: oe_debug_pub.add('f Error'||l_err_message);
2744: END IF;
2745:
2746: X_return_status := FND_API.G_RET_STS_UNEXP_ERROR;
2747: OE_MSG_PUB.Count_And_Get

Line 2756: oe_debug_pub.add('Delete_Payment_Trxn error....others');

2752:
2753: WHEN OTHERS THEN
2754: l_err_message := SQLERRM;
2755: IF l_debug_level > 0 THEN
2756: oe_debug_pub.add('Delete_Payment_Trxn error....others');
2757: oe_debug_pub.add('After call to Delete_Payment_Trxn'||l_return_status);
2758: oe_debug_pub.add('Result code'||l_response_code.result_code);
2759: oe_debug_pub.add('trx Error'||l_err_message);
2760: END IF;

Line 2757: oe_debug_pub.add('After call to Delete_Payment_Trxn'||l_return_status);

2753: WHEN OTHERS THEN
2754: l_err_message := SQLERRM;
2755: IF l_debug_level > 0 THEN
2756: oe_debug_pub.add('Delete_Payment_Trxn error....others');
2757: oe_debug_pub.add('After call to Delete_Payment_Trxn'||l_return_status);
2758: oe_debug_pub.add('Result code'||l_response_code.result_code);
2759: oe_debug_pub.add('trx Error'||l_err_message);
2760: END IF;
2761:

Line 2758: oe_debug_pub.add('Result code'||l_response_code.result_code);

2754: l_err_message := SQLERRM;
2755: IF l_debug_level > 0 THEN
2756: oe_debug_pub.add('Delete_Payment_Trxn error....others');
2757: oe_debug_pub.add('After call to Delete_Payment_Trxn'||l_return_status);
2758: oe_debug_pub.add('Result code'||l_response_code.result_code);
2759: oe_debug_pub.add('trx Error'||l_err_message);
2760: END IF;
2761:
2762: X_return_status := FND_API.G_RET_STS_UNEXP_ERROR;

Line 2759: oe_debug_pub.add('trx Error'||l_err_message);

2755: IF l_debug_level > 0 THEN
2756: oe_debug_pub.add('Delete_Payment_Trxn error....others');
2757: oe_debug_pub.add('After call to Delete_Payment_Trxn'||l_return_status);
2758: oe_debug_pub.add('Result code'||l_response_code.result_code);
2759: oe_debug_pub.add('trx Error'||l_err_message);
2760: END IF;
2761:
2762: X_return_status := FND_API.G_RET_STS_UNEXP_ERROR;
2763: IF FND_MSG_PUB.Check_Msg_Level(FND_MSG_PUB.G_MSG_LVL_UNEXP_ERROR)

Line 2785: l_debug_level CONSTANT NUMBER := oe_debug_pub.g_debug_level;

2781: FUNCTION Get_Settled_Flag(p_Trxn_Extension_Id Number)
2782: RETURN VARCHAR2
2783: IS
2784: l_settled_flag VARCHAR2(1) := 'N';
2785: l_debug_level CONSTANT NUMBER := oe_debug_pub.g_debug_level;
2786: BEGIN
2787: IF l_debug_level > 0 THEN
2788: oe_debug_pub.add('Entering Get_Settled_Flag Function....');
2789: oe_debug_pub.add('Trxn extension id ---> '||p_Trxn_Extension_id);

Line 2788: oe_debug_pub.add('Entering Get_Settled_Flag Function....');

2784: l_settled_flag VARCHAR2(1) := 'N';
2785: l_debug_level CONSTANT NUMBER := oe_debug_pub.g_debug_level;
2786: BEGIN
2787: IF l_debug_level > 0 THEN
2788: oe_debug_pub.add('Entering Get_Settled_Flag Function....');
2789: oe_debug_pub.add('Trxn extension id ---> '||p_Trxn_Extension_id);
2790: END IF;
2791:
2792: BEGIN

Line 2789: oe_debug_pub.add('Trxn extension id ---> '||p_Trxn_Extension_id);

2785: l_debug_level CONSTANT NUMBER := oe_debug_pub.g_debug_level;
2786: BEGIN
2787: IF l_debug_level > 0 THEN
2788: oe_debug_pub.add('Entering Get_Settled_Flag Function....');
2789: oe_debug_pub.add('Trxn extension id ---> '||p_Trxn_Extension_id);
2790: END IF;
2791:
2792: BEGIN
2793: IF p_trxn_extension_id IS NOT NULL AND

Line 2802: oe_debug_pub.add('Settled flag retrieved successfully...');

2798: from IBY_EXTN_SETTLEMENTS_V
2799: where trxn_Extension_id = p_trxn_extension_id;
2800: END IF;
2801: IF l_debug_level > 0 THEN
2802: oe_debug_pub.add('Settled flag retrieved successfully...');
2803: oe_debug_pub.add('Value of settled flag ----> '||l_settled_flag);
2804: END IF;
2805: EXCEPTION
2806: WHEN NO_DATA_FOUND THEN

Line 2803: oe_debug_pub.add('Value of settled flag ----> '||l_settled_flag);

2799: where trxn_Extension_id = p_trxn_extension_id;
2800: END IF;
2801: IF l_debug_level > 0 THEN
2802: oe_debug_pub.add('Settled flag retrieved successfully...');
2803: oe_debug_pub.add('Value of settled flag ----> '||l_settled_flag);
2804: END IF;
2805: EXCEPTION
2806: WHEN NO_DATA_FOUND THEN
2807: l_settled_flag := 'N';

Line 2809: oe_debug_pub.add('The transaction extension not found in IBY Table...');

2805: EXCEPTION
2806: WHEN NO_DATA_FOUND THEN
2807: l_settled_flag := 'N';
2808: IF l_debug_level > 0 THEN
2809: oe_debug_pub.add('The transaction extension not found in IBY Table...');
2810: END IF;
2811: WHEN OTHERS THEN
2812: NULL;
2813: END;

Line 2837: l_debug_level CONSTANT NUMBER := oe_debug_pub.g_debug_level;

2833: l_msg_data VARCHAR2(2000) := NULL ;
2834: L_response_code IBY_FNDCPT_COMMON_PUB.Result_rec_type;
2835: l_channel_attrib_uses IBY_FNDCPT_SETUP_PUB.PmtChannel_AttribUses_rec_type;
2836:
2837: l_debug_level CONSTANT NUMBER := oe_debug_pub.g_debug_level;
2838:
2839: BEGIN
2840: IF l_debug_level > 0 THEN
2841: oe_debug_pub.add('Before calling Get_Payment_Channel_Attribs API...');

Line 2841: oe_debug_pub.add('Before calling Get_Payment_Channel_Attribs API...');

2837: l_debug_level CONSTANT NUMBER := oe_debug_pub.g_debug_level;
2838:
2839: BEGIN
2840: IF l_debug_level > 0 THEN
2841: oe_debug_pub.add('Before calling Get_Payment_Channel_Attribs API...');
2842: oe_debug_pub.add('Payment channel ---> CREDIT_CARD');
2843: END IF;
2844:
2845: IBY_FNDCPT_SETUP_PUB.Get_Payment_Channel_Attribs

Line 2842: oe_debug_pub.add('Payment channel ---> CREDIT_CARD');

2838:
2839: BEGIN
2840: IF l_debug_level > 0 THEN
2841: oe_debug_pub.add('Before calling Get_Payment_Channel_Attribs API...');
2842: oe_debug_pub.add('Payment channel ---> CREDIT_CARD');
2843: END IF;
2844:
2845: IBY_FNDCPT_SETUP_PUB.Get_Payment_Channel_Attribs
2846: (p_api_version => 1.0,

Line 2858: oe_debug_pub.add('Return Status --> '||l_return_status);

2854: G_CC_Security_Code_Use := l_channel_attrib_uses.Instr_SecCode_Use;
2855: --G_CC_Security_Code_Use := 'OPTIONAL';
2856:
2857: IF l_debug_level > 0 then
2858: oe_debug_pub.add('Return Status --> '||l_return_status);
2859: oe_debug_pub.add('Response code --> '||l_response_code.result_code);
2860: oe_debug_pub.add('Security code use ---> '||G_CC_Security_Code_Use);
2861: oe_debug_pub.add('Statement Billing Address Use ----> '|| l_channel_attrib_uses.Instr_Billing_Address);
2862: oe_debug_pub.add('Exiting OE_PAYMENT_TRXN_UTIL.Get_CC_Security_Code_Use: '||l_return_status, 1);

Line 2859: oe_debug_pub.add('Response code --> '||l_response_code.result_code);

2855: --G_CC_Security_Code_Use := 'OPTIONAL';
2856:
2857: IF l_debug_level > 0 then
2858: oe_debug_pub.add('Return Status --> '||l_return_status);
2859: oe_debug_pub.add('Response code --> '||l_response_code.result_code);
2860: oe_debug_pub.add('Security code use ---> '||G_CC_Security_Code_Use);
2861: oe_debug_pub.add('Statement Billing Address Use ----> '|| l_channel_attrib_uses.Instr_Billing_Address);
2862: oe_debug_pub.add('Exiting OE_PAYMENT_TRXN_UTIL.Get_CC_Security_Code_Use: '||l_return_status, 1);
2863: END IF;

Line 2860: oe_debug_pub.add('Security code use ---> '||G_CC_Security_Code_Use);

2856:
2857: IF l_debug_level > 0 then
2858: oe_debug_pub.add('Return Status --> '||l_return_status);
2859: oe_debug_pub.add('Response code --> '||l_response_code.result_code);
2860: oe_debug_pub.add('Security code use ---> '||G_CC_Security_Code_Use);
2861: oe_debug_pub.add('Statement Billing Address Use ----> '|| l_channel_attrib_uses.Instr_Billing_Address);
2862: oe_debug_pub.add('Exiting OE_PAYMENT_TRXN_UTIL.Get_CC_Security_Code_Use: '||l_return_status, 1);
2863: END IF;
2864:

Line 2861: oe_debug_pub.add('Statement Billing Address Use ----> '|| l_channel_attrib_uses.Instr_Billing_Address);

2857: IF l_debug_level > 0 then
2858: oe_debug_pub.add('Return Status --> '||l_return_status);
2859: oe_debug_pub.add('Response code --> '||l_response_code.result_code);
2860: oe_debug_pub.add('Security code use ---> '||G_CC_Security_Code_Use);
2861: oe_debug_pub.add('Statement Billing Address Use ----> '|| l_channel_attrib_uses.Instr_Billing_Address);
2862: oe_debug_pub.add('Exiting OE_PAYMENT_TRXN_UTIL.Get_CC_Security_Code_Use: '||l_return_status, 1);
2863: END IF;
2864:
2865: RETURN G_CC_Security_Code_Use;

Line 2862: oe_debug_pub.add('Exiting OE_PAYMENT_TRXN_UTIL.Get_CC_Security_Code_Use: '||l_return_status, 1);

2858: oe_debug_pub.add('Return Status --> '||l_return_status);
2859: oe_debug_pub.add('Response code --> '||l_response_code.result_code);
2860: oe_debug_pub.add('Security code use ---> '||G_CC_Security_Code_Use);
2861: oe_debug_pub.add('Statement Billing Address Use ----> '|| l_channel_attrib_uses.Instr_Billing_Address);
2862: oe_debug_pub.add('Exiting OE_PAYMENT_TRXN_UTIL.Get_CC_Security_Code_Use: '||l_return_status, 1);
2863: END IF;
2864:
2865: RETURN G_CC_Security_Code_Use;
2866:

Line 2920: l_debug_level CONSTANT NUMBER := oe_debug_pub.g_debug_level;

2916: l_settled_flag VARCHAR2(1) := 'N';
2917: l_currency_code VARCHAR2(20);
2918: l_format_mask VARCHAR2(500);
2919:
2920: l_debug_level CONSTANT NUMBER := oe_debug_pub.g_debug_level;
2921: l_old_invoice_to_org_id NUMBER :=NULL;
2922: l_header_rec OE_Order_PUB.Header_Rec_Type;
2923: l_result_out VARCHAR2(30);
2924:

Line 2930: oe_debug_pub.add( 'OEXPVPMB: Entering CREDIT CARD AUTHORIZATION REVERSAL',5 ) ;

2926: --p_result_out := 'PASS' ;
2927: p_return_status := FND_API.G_RET_STS_SUCCESS;
2928:
2929: IF l_debug_level > 0 THEN
2930: oe_debug_pub.add( 'OEXPVPMB: Entering CREDIT CARD AUTHORIZATION REVERSAL',5 ) ;
2931: oe_debug_pub.add('p_header_id :'||p_header_id);
2932: oe_debug_pub.add('p_line_id : '||p_line_id);
2933: END IF;
2934:

Line 2931: oe_debug_pub.add('p_header_id :'||p_header_id);

2927: p_return_status := FND_API.G_RET_STS_SUCCESS;
2928:
2929: IF l_debug_level > 0 THEN
2930: oe_debug_pub.add( 'OEXPVPMB: Entering CREDIT CARD AUTHORIZATION REVERSAL',5 ) ;
2931: oe_debug_pub.add('p_header_id :'||p_header_id);
2932: oe_debug_pub.add('p_line_id : '||p_line_id);
2933: END IF;
2934:
2935: l_cc_rev_reauth_code := OE_VERIFY_PAYMENT_PUB.Get_CC_Rev_Reauth_Code(p_header_id);

Line 2932: oe_debug_pub.add('p_line_id : '||p_line_id);

2928:
2929: IF l_debug_level > 0 THEN
2930: oe_debug_pub.add( 'OEXPVPMB: Entering CREDIT CARD AUTHORIZATION REVERSAL',5 ) ;
2931: oe_debug_pub.add('p_header_id :'||p_header_id);
2932: oe_debug_pub.add('p_line_id : '||p_line_id);
2933: END IF;
2934:
2935: l_cc_rev_reauth_code := OE_VERIFY_PAYMENT_PUB.Get_CC_Rev_Reauth_Code(p_header_id);
2936:

Line 2939: oe_debug_pub.add( 'OEXPVPMB: Reversal code '||l_cc_rev_reauth_code,5 ) ;

2935: l_cc_rev_reauth_code := OE_VERIFY_PAYMENT_PUB.Get_CC_Rev_Reauth_Code(p_header_id);
2936:
2937: IF l_cc_rev_reauth_code is not null THEN
2938: IF l_debug_level > 0 THEN
2939: oe_debug_pub.add( 'OEXPVPMB: Reversal code '||l_cc_rev_reauth_code,5 ) ;
2940: END IF;
2941: IF p_line_id IS NOT NULL THEN
2942: IF l_debug_level > 0 THEN
2943: oe_debug_pub.add( 'processing for Line id: '||p_line_id,5 ) ;

Line 2943: oe_debug_pub.add( 'processing for Line id: '||p_line_id,5 ) ;

2939: oe_debug_pub.add( 'OEXPVPMB: Reversal code '||l_cc_rev_reauth_code,5 ) ;
2940: END IF;
2941: IF p_line_id IS NOT NULL THEN
2942: IF l_debug_level > 0 THEN
2943: oe_debug_pub.add( 'processing for Line id: '||p_line_id,5 ) ;
2944: END IF;
2945: BEGIN
2946: SELECT invoice_to_org_id, org_id
2947: INTO l_invoice_to_org_id,l_org_id

Line 2952: oe_debug_pub.add('Invoice to Org id is null.....',5);

2948: FROM oe_order_lines_all
2949: WHERE line_id = p_line_id;
2950: EXCEPTION WHEN NO_DATA_FOUND THEN
2951: IF l_debug_level > 0 THEN
2952: oe_debug_pub.add('Invoice to Org id is null.....',5);
2953: END IF;
2954: END;
2955: ELSE
2956: IF l_debug_level > 0 THEN

Line 2957: oe_debug_pub.add( 'processing for header ',5 ) ;

2953: END IF;
2954: END;
2955: ELSE
2956: IF l_debug_level > 0 THEN
2957: oe_debug_pub.add( 'processing for header ',5 ) ;
2958: END IF;
2959: BEGIN
2960: SELECT invoice_to_org_id, org_id
2961: INTO l_invoice_to_org_id,l_org_id

Line 2966: oe_debug_pub.add('Invoice to Org id is null.....',5);

2962: FROM oe_order_headers_all
2963: WHERE header_id = p_header_id;
2964: EXCEPTION WHEN NO_DATA_FOUND THEN
2965: IF l_debug_level > 0 THEN
2966: oe_debug_pub.add('Invoice to Org id is null.....',5);
2967: END IF;
2968: END;
2969: END IF;
2970: IF l_debug_level > 0 THEN

Line 2971: oe_debug_pub.add('invoice_to_org_id.....'||l_invoice_to_org_id,5);

2967: END IF;
2968: END;
2969: END IF;
2970: IF l_debug_level > 0 THEN
2971: oe_debug_pub.add('invoice_to_org_id.....'||l_invoice_to_org_id,5);
2972: END IF;
2973:
2974: Begin
2975: SELECT hca.party_id,acctsite.cust_account_id

Line 2984: oe_debug_pub.add('Party id and Cust_account_id is null.....',5);

2980: AND ACCTSITE.cust_account_id = HCA.cust_account_id
2981: AND SITE.SITE_USE_ID = l_invoice_to_org_id;
2982: Exception When No_Data_Found THEN
2983: IF l_debug_level > 0 THEN
2984: oe_debug_pub.add('Party id and Cust_account_id is null.....',5);
2985: END IF;
2986: End;
2987: IF l_debug_level > 0 THEN
2988: oe_debug_pub.add('l_party_id '||l_party_id||'l_cust_account_id '||l_cust_account_id ,5);

Line 2988: oe_debug_pub.add('l_party_id '||l_party_id||'l_cust_account_id '||l_cust_account_id ,5);

2984: oe_debug_pub.add('Party id and Cust_account_id is null.....',5);
2985: END IF;
2986: End;
2987: IF l_debug_level > 0 THEN
2988: oe_debug_pub.add('l_party_id '||l_party_id||'l_cust_account_id '||l_cust_account_id ,5);
2989: END IF;
2990:
2991: BEGIN
2992: SELECT transactional_curr_code

Line 2998: oe_debug_pub.add('Currency code is null.....',5);

2994: FROM oe_order_headers_all
2995: WHERE header_id = p_header_id;
2996: EXCEPTION WHEN NO_DATA_FOUND THEN
2997: IF l_debug_level > 0 THEN
2998: oe_debug_pub.add('Currency code is null.....',5);
2999: END IF;
3000: END;
3001: IF l_debug_level > 0 THEN
3002: oe_debug_pub.add('l_currency_code '||l_currency_code ,5);

Line 3002: oe_debug_pub.add('l_currency_code '||l_currency_code ,5);

2998: oe_debug_pub.add('Currency code is null.....',5);
2999: END IF;
3000: END;
3001: IF l_debug_level > 0 THEN
3002: oe_debug_pub.add('l_currency_code '||l_currency_code ,5);
3003: END IF;
3004:
3005: IF p_line_id IS NULL THEN
3006: IF l_debug_level > 0 THEN

Line 3007: oe_debug_pub.add('Before getting trxn id for header: '||p_header_id,5);

3003: END IF;
3004:
3005: IF p_line_id IS NULL THEN
3006: IF l_debug_level > 0 THEN
3007: oe_debug_pub.add('Before getting trxn id for header: '||p_header_id,5);
3008: END IF;
3009: BEGIN
3010: SELECT trxn_extension_id
3011: INTO l_trxn_extension_id

Line 3017: oe_debug_pub.add('Trxn extension id is null.....',5);

3013: WHERE HEADER_ID = p_header_id and line_id is null
3014: AND nvl(payment_collection_event,'PREPAY') = 'INVOICE';
3015: EXCEPTION WHEN NO_DATA_FOUND THEN
3016: IF l_debug_level > 0 THEN
3017: oe_debug_pub.add('Trxn extension id is null.....',5);
3018: END IF;
3019: END;
3020: ELSE
3021: BEGIN

Line 3023: oe_debug_pub.add('Before getting trxn id line_id '||p_line_id||' and header_id '||p_header_id,5);

3019: END;
3020: ELSE
3021: BEGIN
3022: IF l_debug_level > 0 THEN
3023: oe_debug_pub.add('Before getting trxn id line_id '||p_line_id||' and header_id '||p_header_id,5);
3024: END IF;
3025: SELECT trxn_extension_id
3026: INTO l_trxn_extension_id
3027: FROM OE_PAYMENTS

Line 3033: oe_debug_pub.add('Trxn extension id....'||nvl(l_trxn_extension_id,'0'),5);

3029: AND header_id = p_header_id
3030: AND payment_type_code <> 'COMMITMENT';
3031: EXCEPTION WHEN NO_DATA_FOUND THEN
3032: IF l_debug_level > 0 THEN
3033: oe_debug_pub.add('Trxn extension id....'||nvl(l_trxn_extension_id,'0'),5);
3034: END IF;
3035: END;
3036: END IF;
3037: IF l_debug_level > 0 THEN

Line 3038: oe_debug_pub.add('Trxn extension id....'||nvl(l_trxn_extension_id,'0'),5);

3034: END IF;
3035: END;
3036: END IF;
3037: IF l_debug_level > 0 THEN
3038: oe_debug_pub.add('Trxn extension id....'||nvl(l_trxn_extension_id,'0'),5);
3039: END IF;
3040: Begin
3041: SELECT nvl(REVERSAL_ALLOWED,'N'), nvl(AUTHORIZATION_AMOUNT,0)
3042: INTO l_reversal_allowed, l_authorized_amt

Line 3050: oe_debug_pub.add('Unable to query for authorization flag of Trxn extension id....'||nvl(l_trxn_extension_id,'0')|| SQLERRM,5);

3046: AND authorization_status=0;
3047: exception
3048: when others then
3049: IF l_debug_level > 0 then
3050: oe_debug_pub.add('Unable to query for authorization flag of Trxn extension id....'||nvl(l_trxn_extension_id,'0')|| SQLERRM,5);
3051: END IF;
3052: end;
3053: IF l_debug_level > 0 THEN
3054: oe_debug_pub.add('l_reversal_allowed '||l_reversal_allowed||' l_authorized_amt '||l_authorized_amt ,5);

Line 3054: oe_debug_pub.add('l_reversal_allowed '||l_reversal_allowed||' l_authorized_amt '||l_authorized_amt ,5);

3050: oe_debug_pub.add('Unable to query for authorization flag of Trxn extension id....'||nvl(l_trxn_extension_id,'0')|| SQLERRM,5);
3051: END IF;
3052: end;
3053: IF l_debug_level > 0 THEN
3054: oe_debug_pub.add('l_reversal_allowed '||l_reversal_allowed||' l_authorized_amt '||l_authorized_amt ,5);
3055: END IF;
3056:
3057: BEGIN
3058: SELECT ACCT_SITE_USE_ID

Line 3074: oe_debug_pub.add('l_old_invoice_to_org_id :'||l_old_invoice_to_org_id,5);

3070: WHEN OTHERS THEN
3071: l_old_invoice_to_org_id :=null;
3072: END;
3073: IF l_debug_level > 0 THEN
3074: oe_debug_pub.add('l_old_invoice_to_org_id :'||l_old_invoice_to_org_id,5);
3075: END IF;
3076: BEGIN
3077: SELECT nvl(VOICE_AUTHORIZATION_FLAG,'N')
3078: INTO l_voice_auth

Line 3085: oe_debug_pub.add('Voice authorization: '||l_voice_auth,5);

3081: EXCEPTION WHEN NO_DATA_FOUND THEN
3082: l_voice_auth :='N';
3083: END;
3084: IF l_debug_level > 0 THEN
3085: oe_debug_pub.add('Voice authorization: '||l_voice_auth,5);
3086: END IF;
3087: IF l_voice_auth = 'Y' THEN
3088: IF l_debug_level > 0 THEN
3089: oe_debug_pub.add('This is Voice authorization, No Reversal/Re-authorization is allowed',5);

Line 3089: oe_debug_pub.add('This is Voice authorization, No Reversal/Re-authorization is allowed',5);

3085: oe_debug_pub.add('Voice authorization: '||l_voice_auth,5);
3086: END IF;
3087: IF l_voice_auth = 'Y' THEN
3088: IF l_debug_level > 0 THEN
3089: oe_debug_pub.add('This is Voice authorization, No Reversal/Re-authorization is allowed',5);
3090: END IF;
3091: RETURN;
3092: END IF;
3093:

Line 3103: oe_debug_pub.add('Unable to query for settlement flag of Trxn extension id....'||nvl(l_trxn_extension_id,'0')|| SQLERRM,5);

3099: EXCEPTION WHEN NO_DATA_FOUND THEN
3100: l_settled_flag := 'N';
3101: WHEN OTHERS then
3102: IF l_debug_level > 0 then
3103: oe_debug_pub.add('Unable to query for settlement flag of Trxn extension id....'||nvl(l_trxn_extension_id,'0')|| SQLERRM,5);
3104: END IF;
3105: END;
3106:
3107: IF l_debug_level > 0 THEN

Line 3108: oe_debug_pub.add('settled_flag '||l_settled_flag,5);

3104: END IF;
3105: END;
3106:
3107: IF l_debug_level > 0 THEN
3108: oe_debug_pub.add('settled_flag '||l_settled_flag,5);
3109: END IF;
3110: IF l_settled_flag='N' and l_reversal_allowed ='Y' and l_authorized_amt > 0 then
3111: l_payer.payment_function := l_payment_function ;
3112: l_payer.party_id := l_party_id;

Line 3123: oe_debug_pub.add('Calling IBY Create Reversal',5);

3119: l_reauth_amount.currency_code := l_currency_code;
3120: l_format_mask := OE_VERIFY_PAYMENT_PUB.get_format_mask(l_currency_code);
3121: l_rev_attribs.Revised_amount := l_reauth_amount;
3122: IF l_debug_level > 0 THEN
3123: oe_debug_pub.add('Calling IBY Create Reversal',5);
3124: END IF;
3125: IBY_Fndcpt_Trxn_Pub.Create_Reversal
3126: (p_api_version => 1.0,
3127: p_init_msg_list => FND_API.G_FALSE,

Line 3140: oe_debug_pub.add('Return Status after call to Create_Reversal'||l_return_status,5);

3136: x_reauth_response => l_reauth_response,
3137: x_reauth_result => l_reauth_result
3138: );
3139: IF l_debug_level > 0 then
3140: oe_debug_pub.add('Return Status after call to Create_Reversal'||l_return_status,5);
3141: OE_DEBUG_PUB.ADD('l_reversal_response.Result_Code: '||l_reversal_response.result_code,5);
3142: OE_DEBUG_PUB.ADD('l_reauth_response.result_code: '||l_reauth_response.result_code,5 );
3143: END IF;
3144: IF (l_return_status = FND_API.G_RET_STS_SUCCESS AND

Line 3141: OE_DEBUG_PUB.ADD('l_reversal_response.Result_Code: '||l_reversal_response.result_code,5);

3137: x_reauth_result => l_reauth_result
3138: );
3139: IF l_debug_level > 0 then
3140: oe_debug_pub.add('Return Status after call to Create_Reversal'||l_return_status,5);
3141: OE_DEBUG_PUB.ADD('l_reversal_response.Result_Code: '||l_reversal_response.result_code,5);
3142: OE_DEBUG_PUB.ADD('l_reauth_response.result_code: '||l_reauth_response.result_code,5 );
3143: END IF;
3144: IF (l_return_status = FND_API.G_RET_STS_SUCCESS AND
3145: l_reversal_response.result_code = IBY_FNDCPT_TRXN_PUB.G_RC_REVERSAL_SUCCESS ) THEN

Line 3142: OE_DEBUG_PUB.ADD('l_reauth_response.result_code: '||l_reauth_response.result_code,5 );

3138: );
3139: IF l_debug_level > 0 then
3140: oe_debug_pub.add('Return Status after call to Create_Reversal'||l_return_status,5);
3141: OE_DEBUG_PUB.ADD('l_reversal_response.Result_Code: '||l_reversal_response.result_code,5);
3142: OE_DEBUG_PUB.ADD('l_reauth_response.result_code: '||l_reauth_response.result_code,5 );
3143: END IF;
3144: IF (l_return_status = FND_API.G_RET_STS_SUCCESS AND
3145: l_reversal_response.result_code = IBY_FNDCPT_TRXN_PUB.G_RC_REVERSAL_SUCCESS ) THEN
3146: IF l_debug_level > 0 THEN

Line 3147: oe_debug_pub.add('Reversal successful....',5);

3143: END IF;
3144: IF (l_return_status = FND_API.G_RET_STS_SUCCESS AND
3145: l_reversal_response.result_code = IBY_FNDCPT_TRXN_PUB.G_RC_REVERSAL_SUCCESS ) THEN
3146: IF l_debug_level > 0 THEN
3147: oe_debug_pub.add('Reversal successful....',5);
3148: END IF; --16594955 setting message token outside of l_debug_level condition
3149: FND_MESSAGE.SET_NAME('ONT','ONT_PAYMENT_REV_SUCCESS');
3150: FND_MESSAGE.SET_TOKEN('AMOUNT',TO_CHAR(l_authorized_amt,l_format_mask));
3151: OE_MSG_PUB.ADD;

Line 3171: oe_debug_pub.ADD('kadiraju new trx '||oe_verify_payment_pub.G_CC_Change_Flag);

3167: END IF;
3168:
3169: IF p_new_trxn_extension_id is not null THEN
3170: IF l_debug_level > 0 THEN
3171: oe_debug_pub.ADD('kadiraju new trx '||oe_verify_payment_pub.G_CC_Change_Flag);
3172: END IF;
3173: oe_verify_payment_pub.G_CC_Change_Flag := 'Y';
3174: /* UPDATE oe_payments
3175: SET trxn_extension_id = p_new_trxn_extension_id

Line 3203: oe_debug_pub.add('Reversal failure...!'||l_return_status,5);

3199:
3200: END IF;
3201: ELSE
3202: IF l_debug_level >0 THEN
3203: oe_debug_pub.add('Reversal failure...!'||l_return_status,5);
3204: oe_debug_pub.add('l_reversal_response.result_code'||l_reversal_response.result_code,5);
3205: oe_debug_pub.add('Message....'||l_reversal_response.result_message,5);
3206: oe_debug_pub.add('SQLERRM '||sqlerrm,5);
3207: END IF;

Line 3204: oe_debug_pub.add('l_reversal_response.result_code'||l_reversal_response.result_code,5);

3200: END IF;
3201: ELSE
3202: IF l_debug_level >0 THEN
3203: oe_debug_pub.add('Reversal failure...!'||l_return_status,5);
3204: oe_debug_pub.add('l_reversal_response.result_code'||l_reversal_response.result_code,5);
3205: oe_debug_pub.add('Message....'||l_reversal_response.result_message,5);
3206: oe_debug_pub.add('SQLERRM '||sqlerrm,5);
3207: END IF;
3208: IF p_line_id is NULL THEN

Line 3205: oe_debug_pub.add('Message....'||l_reversal_response.result_message,5);

3201: ELSE
3202: IF l_debug_level >0 THEN
3203: oe_debug_pub.add('Reversal failure...!'||l_return_status,5);
3204: oe_debug_pub.add('l_reversal_response.result_code'||l_reversal_response.result_code,5);
3205: oe_debug_pub.add('Message....'||l_reversal_response.result_message,5);
3206: oe_debug_pub.add('SQLERRM '||sqlerrm,5);
3207: END IF;
3208: IF p_line_id is NULL THEN
3209: OE_Verify_Payment_PUB.Apply_Verify_Hold

Line 3206: oe_debug_pub.add('SQLERRM '||sqlerrm,5);

3202: IF l_debug_level >0 THEN
3203: oe_debug_pub.add('Reversal failure...!'||l_return_status,5);
3204: oe_debug_pub.add('l_reversal_response.result_code'||l_reversal_response.result_code,5);
3205: oe_debug_pub.add('Message....'||l_reversal_response.result_message,5);
3206: oe_debug_pub.add('SQLERRM '||sqlerrm,5);
3207: END IF;
3208: IF p_line_id is NULL THEN
3209: OE_Verify_Payment_PUB.Apply_Verify_Hold
3210: ( p_header_id => p_header_id

Line 3235: oe_debug_pub.add( 'OEXPVPMB: Reversal code '||l_cc_rev_reauth_code,5 ) ;

3231: END IF;--end if of l_return_status
3232: END IF;-- reversal, settlement flag if condition
3233: ELSE
3234: IF l_debug_level > 0 THEN
3235: oe_debug_pub.add( 'OEXPVPMB: Reversal code '||l_cc_rev_reauth_code,5 ) ;
3236: END IF;
3237: END IF;
3238: IF l_debug_level > 0 THEN
3239: oe_debug_pub.add( 'OEXPVPMB: Exiting CREDIT CARD AUTHORIZATION REVERSAL',1 ) ;

Line 3239: oe_debug_pub.add( 'OEXPVPMB: Exiting CREDIT CARD AUTHORIZATION REVERSAL',1 ) ;

3235: oe_debug_pub.add( 'OEXPVPMB: Reversal code '||l_cc_rev_reauth_code,5 ) ;
3236: END IF;
3237: END IF;
3238: IF l_debug_level > 0 THEN
3239: oe_debug_pub.add( 'OEXPVPMB: Exiting CREDIT CARD AUTHORIZATION REVERSAL',1 ) ;
3240: END IF;
3241: EXCEPTION
3242: WHEN FND_API.G_EXC_ERROR THEN
3243: l_err_message := SQLERRM;

Line 3246: oe_debug_pub.add('Create_Reversal error....exc',5);

3242: WHEN FND_API.G_EXC_ERROR THEN
3243: l_err_message := SQLERRM;
3244:
3245: IF l_debug_level > 0 THEN
3246: oe_debug_pub.add('Create_Reversal error....exc',5);
3247: oe_debug_pub.add('After call to Create_Reversal error'||l_return_status,5);
3248: oe_debug_pub.add('Result code'||l_reversal_response.result_code,5);
3249: oe_debug_pub.add('Error'||l_err_message,5);
3250: END IF;

Line 3247: oe_debug_pub.add('After call to Create_Reversal error'||l_return_status,5);

3243: l_err_message := SQLERRM;
3244:
3245: IF l_debug_level > 0 THEN
3246: oe_debug_pub.add('Create_Reversal error....exc',5);
3247: oe_debug_pub.add('After call to Create_Reversal error'||l_return_status,5);
3248: oe_debug_pub.add('Result code'||l_reversal_response.result_code,5);
3249: oe_debug_pub.add('Error'||l_err_message,5);
3250: END IF;
3251:

Line 3248: oe_debug_pub.add('Result code'||l_reversal_response.result_code,5);

3244:
3245: IF l_debug_level > 0 THEN
3246: oe_debug_pub.add('Create_Reversal error....exc',5);
3247: oe_debug_pub.add('After call to Create_Reversal error'||l_return_status,5);
3248: oe_debug_pub.add('Result code'||l_reversal_response.result_code,5);
3249: oe_debug_pub.add('Error'||l_err_message,5);
3250: END IF;
3251:
3252: p_return_status := FND_API.G_RET_STS_ERROR;

Line 3249: oe_debug_pub.add('Error'||l_err_message,5);

3245: IF l_debug_level > 0 THEN
3246: oe_debug_pub.add('Create_Reversal error....exc',5);
3247: oe_debug_pub.add('After call to Create_Reversal error'||l_return_status,5);
3248: oe_debug_pub.add('Result code'||l_reversal_response.result_code,5);
3249: oe_debug_pub.add('Error'||l_err_message,5);
3250: END IF;
3251:
3252: p_return_status := FND_API.G_RET_STS_ERROR;
3253: OE_MSG_PUB.Count_And_Get

Line 3262: oe_debug_pub.add('Create_Reversal error....unxc',5);

3258: WHEN FND_API.G_EXC_UNEXPECTED_ERROR THEN
3259: l_err_message := SQLERRM;
3260:
3261: IF l_debug_level > 0 THEN
3262: oe_debug_pub.add('Create_Reversal error....unxc',5);
3263: oe_debug_pub.add('After call to Create_Reversal error'||l_return_status,5);
3264: oe_debug_pub.add('Result code'||l_reversal_response.result_code,5);
3265: oe_debug_pub.add('f Error'||l_err_message,5);
3266: END IF;

Line 3263: oe_debug_pub.add('After call to Create_Reversal error'||l_return_status,5);

3259: l_err_message := SQLERRM;
3260:
3261: IF l_debug_level > 0 THEN
3262: oe_debug_pub.add('Create_Reversal error....unxc',5);
3263: oe_debug_pub.add('After call to Create_Reversal error'||l_return_status,5);
3264: oe_debug_pub.add('Result code'||l_reversal_response.result_code,5);
3265: oe_debug_pub.add('f Error'||l_err_message,5);
3266: END IF;
3267:

Line 3264: oe_debug_pub.add('Result code'||l_reversal_response.result_code,5);

3260:
3261: IF l_debug_level > 0 THEN
3262: oe_debug_pub.add('Create_Reversal error....unxc',5);
3263: oe_debug_pub.add('After call to Create_Reversal error'||l_return_status,5);
3264: oe_debug_pub.add('Result code'||l_reversal_response.result_code,5);
3265: oe_debug_pub.add('f Error'||l_err_message,5);
3266: END IF;
3267:
3268: p_return_status := FND_API.G_RET_STS_UNEXP_ERROR;

Line 3265: oe_debug_pub.add('f Error'||l_err_message,5);

3261: IF l_debug_level > 0 THEN
3262: oe_debug_pub.add('Create_Reversal error....unxc',5);
3263: oe_debug_pub.add('After call to Create_Reversal error'||l_return_status,5);
3264: oe_debug_pub.add('Result code'||l_reversal_response.result_code,5);
3265: oe_debug_pub.add('f Error'||l_err_message,5);
3266: END IF;
3267:
3268: p_return_status := FND_API.G_RET_STS_UNEXP_ERROR;
3269: OE_MSG_PUB.Count_And_Get

Line 3277: oe_debug_pub.add('Returned error others part in Reverse_CreditCard_Auth...'||l_err_message,5);

3273:
3274: WHEN OTHERS THEN
3275: l_err_message := SQLERRM;
3276: IF l_debug_level > 0 THEN
3277: oe_debug_pub.add('Returned error others part in Reverse_CreditCard_Auth...'||l_err_message,5);
3278: END IF;
3279: p_return_status := FND_API.G_RET_STS_UNEXP_ERROR;
3280:
3281: IF FND_MSG_PUB.Check_Msg_Level(FND_MSG_PUB.G_MSG_LVL_UNEXP_ERROR)