DBA Data[Home] [Help]

APPS.INV_TRX_MGR_CP dependencies on FND_CONCURRENT

Line 30: ret := fnd_concurrent.set_completion_status('ERROR', v_mesg);

26: p_commit =>v_commit,
27: x_proc_msg => v_mesg,
28: p_proc_mode => 1 ); -- Online when called from Conc manager
29: if (v_retval = 1) then
30: ret := fnd_concurrent.set_completion_status('ERROR', v_mesg);
31: x_retcode := 2;
32: x_errbuf := v_mesg;
33: else
34: ret := fnd_concurrent.set_completion_status('NORMAL', v_mesg);

Line 34: ret := fnd_concurrent.set_completion_status('NORMAL', v_mesg);

30: ret := fnd_concurrent.set_completion_status('ERROR', v_mesg);
31: x_retcode := 2;
32: x_errbuf := v_mesg;
33: else
34: ret := fnd_concurrent.set_completion_status('NORMAL', v_mesg);
35: x_retcode := 0;
36: end if;
37:
38: END;