DBA Data[Home] [Help]

APPS.INV_RESERVATIONS_INTERFACE dependencies on FND_CONCURRENT

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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