DBA Data[Home] [Help]

APPS.AR_ECAPP_PKG dependencies on ARP_CORRECT_CC_ERRORS

Line 263: /* Now call ARP_CORRECT_CC_ERRORS code to correct predefined errors */

259: fnd_file.put_line(FND_FILE.LOG,'No receipts in Error for reverting remittance');
260: RETURN;
261: END IF;
262:
263: /* Now call ARP_CORRECT_CC_ERRORS code to correct predefined errors */
264: /* This routine takes Request_Id as a parameter. Here request ID need to be gathered.*/
265:
266: BEGIN
267:

Line 269: fnd_file.put_line(FND_FILE.LOG,'Call ARP_CORRECT_CC_ERRORS.cc_auto_correct_cover()+');

265:
266: BEGIN
267:
268: IF PG_DEBUG in ('Y', 'C') THEN
269: fnd_file.put_line(FND_FILE.LOG,'Call ARP_CORRECT_CC_ERRORS.cc_auto_correct_cover()+');
270: END IF;
271:
272:
273: SELECT DISTINCT cr.request_id , cr.org_id

Line 296: ARP_CORRECT_CC_ERRORS.cc_auto_correct(

292: END IF;
293:
294: mo_global.set_policy_context('S', l_cc_org_id(i));
295:
296: ARP_CORRECT_CC_ERRORS.cc_auto_correct(
297: errbuf => l_error_buf,
298: retcode => l_ret_code,
299: p_request_id => l_request_id(i),
300: p_mode => 'REMITTANCE' );

Line 308: fnd_file.put_line(FND_FILE.LOG,'Exception inner ARP_CORRECT_CC_ERRORS.cc_auto_correct ' || sqlerrm);

304: END IF;
305:
306: EXCEPTION
307: WHEN OTHERS THEN
308: fnd_file.put_line(FND_FILE.LOG,'Exception inner ARP_CORRECT_CC_ERRORS.cc_auto_correct ' || sqlerrm);
309: RAISE;
310: END;
311: END LOOP;
312: END IF;

Line 315: fnd_file.put_line(FND_FILE.LOG,'Call ARP_CORRECT_CC_ERRORS.cc_auto_correct_cover()-');

311: END LOOP;
312: END IF;
313:
314: IF PG_DEBUG in ('Y', 'C') THEN
315: fnd_file.put_line(FND_FILE.LOG,'Call ARP_CORRECT_CC_ERRORS.cc_auto_correct_cover()-');
316: END IF;
317:
318: EXCEPTION
319: WHEN NO_DATA_FOUND THEN

Line 323: fnd_file.put_line(FND_FILE.LOG,'Exception outer ARP_CORRECT_CC_ERRORS.cc_auto_correct ' || sqlerrm);

319: WHEN NO_DATA_FOUND THEN
320: fnd_file.put_line(FND_FILE.LOG,'No receipt fetched for Credit Card Error Correction');
321:
322: WHEN OTHERS THEN
323: fnd_file.put_line(FND_FILE.LOG,'Exception outer ARP_CORRECT_CC_ERRORS.cc_auto_correct ' || sqlerrm);
324: RAISE;
325: END;
326: /* ARP_CORRECT_CC_ERRORS code ends here */
327:

Line 326: /* ARP_CORRECT_CC_ERRORS code ends here */

322: WHEN OTHERS THEN
323: fnd_file.put_line(FND_FILE.LOG,'Exception outer ARP_CORRECT_CC_ERRORS.cc_auto_correct ' || sqlerrm);
324: RAISE;
325: END;
326: /* ARP_CORRECT_CC_ERRORS code ends here */
327:
328:
329: IF PG_DEBUG in ('Y', 'C') THEN
330: fnd_file.put_line(FND_FILE.LOG,'AR_ECAPP_PKG.correct_settlement_error()-');