DBA Data[Home] [Help]

APPS.INV_RESERVATIONS_INTERFACE dependencies on FND_CONCURRENT

Line 313: l_conc_status := fnd_concurrent.set_completion_status('NORMAL','NORMAL');

309: , x_msg_count => l_msg_count
310: , x_msg_data => l_msg_data);
311: end if;
312:
313: l_conc_status := fnd_concurrent.set_completion_status('NORMAL','NORMAL');
314:
315: exception
316: when fnd_api.g_exc_error then
317: l_return_status := fnd_api.g_ret_sts_error;

Line 328: l_conc_status := fnd_concurrent.set_completion_status('ERROR','ERROR');

324: if (p_form_mode in ('N','n')) then
325: print_error(l_msg_count);
326: end if;
327:
328: l_conc_status := fnd_concurrent.set_completion_status('ERROR','ERROR');
329:
330: when fnd_api.g_exc_unexpected_error then
331: l_return_status := fnd_api.g_ret_sts_unexp_error;
332:

Line 342: l_conc_status := fnd_concurrent.set_completion_status('ERROR','ERROR');

338: if (p_form_mode in ('N','n')) then
339: print_error(l_msg_count);
340: end if;
341:
342: l_conc_status := fnd_concurrent.set_completion_status('ERROR','ERROR');
343:
344: when others then
345: l_return_status := fnd_api.g_ret_sts_unexp_error;
346:

Line 361: l_conc_status := fnd_concurrent.set_completion_status('ERROR','ERROR');

357: if (p_form_mode in ('N','n')) then
358: print_error(l_msg_count);
359: end if;
360:
361: l_conc_status := fnd_concurrent.set_completion_status('ERROR','ERROR');
362:
363: end rsv_interface_manager;
364:
365: /*

Line 633: -- l_conc_status := fnd_concurrent.set_completion_status('NORMAL','NORMAL');

629:
630: end if; /* (SQL%ROWCOUNT <> 0) */
631: end loop;
632:
633: -- l_conc_status := fnd_concurrent.set_completion_status('NORMAL','NORMAL');
634:
635: exception
636: when fnd_api.g_exc_error then
637: x_return_status := fnd_api.g_ret_sts_error;

Line 648: --l_conc_status := fnd_concurrent.set_completion_status('ERROR','ERROR');

644: if (p_form_mode in ('N','n')) then
645: print_error(x_msg_count);
646: end if;
647:
648: --l_conc_status := fnd_concurrent.set_completion_status('ERROR','ERROR');
649:
650: when fnd_api.g_exc_unexpected_error then
651: x_return_status := fnd_api.g_ret_sts_unexp_error;
652:

Line 662: --l_conc_status := fnd_concurrent.set_completion_status('ERROR','ERROR');

658: if (p_form_mode in ('N','n')) then
659: print_error(x_msg_count);
660: end if;
661:
662: --l_conc_status := fnd_concurrent.set_completion_status('ERROR','ERROR');
663:
664: when others then
665: x_return_status := fnd_api.g_ret_sts_unexp_error;
666:

Line 681: --l_conc_status := fnd_concurrent.set_completion_status('ERROR','ERROR');

677: if (p_form_mode in ('N','n')) then
678: print_error(x_msg_count);
679: end if;
680:
681: --l_conc_status := fnd_concurrent.set_completion_status('ERROR','ERROR');
682: end rsv_interface_batch_processor;
683:
684: /*
685: ** ===========================================================================