DBA Data[Home] [Help]

APPS.INV_SERIAL_NUMBER_PUB dependencies on FND_CONCURRENT

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

3433: , x_proc_msg => v_mesg
3434: );
3435:
3436: IF (v_retval = 1) THEN
3437: ret := fnd_concurrent.set_completion_status('ERROR', v_mesg);
3438: x_retcode := 2;
3439: x_errbuf := v_mesg;
3440: ELSIF(v_retval = 2) THEN
3441: ret := fnd_concurrent.set_completion_status('WARNING', v_mesg);

Line 3441: ret := fnd_concurrent.set_completion_status('WARNING', v_mesg);

3437: ret := fnd_concurrent.set_completion_status('ERROR', v_mesg);
3438: x_retcode := 2;
3439: x_errbuf := v_mesg;
3440: ELSIF(v_retval = 2) THEN
3441: ret := fnd_concurrent.set_completion_status('WARNING', v_mesg);
3442: x_retcode := 0;
3443: ELSE
3444: ret := fnd_concurrent.set_completion_status('NORMAL', v_mesg);
3445: x_retcode := 0;

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

3440: ELSIF(v_retval = 2) THEN
3441: ret := fnd_concurrent.set_completion_status('WARNING', v_mesg);
3442: x_retcode := 0;
3443: ELSE
3444: ret := fnd_concurrent.set_completion_status('NORMAL', v_mesg);
3445: x_retcode := 0;
3446: END IF;
3447:
3448: COMMIT;

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

3449: EXCEPTION
3450: WHEN OTHERS THEN
3451: x_retcode := 2;
3452: x_errbuf := SUBSTR(fnd_msg_pub.get(p_encoded => fnd_api.g_false), 1, 250);
3453: ret := fnd_concurrent.set_completion_status('ERROR', v_mesg);
3454: RAISE;
3455: END generate_serials;
3456:
3457: /*-------------------------------------------------------------------------------