DBA Data[Home] [Help]

APPS.INV_SERIAL_NUMBER_PUB dependencies on FND_CONCURRENT

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

3102: , x_proc_msg => v_mesg
3103: );
3104:
3105: IF (v_retval = 1) THEN
3106: ret := fnd_concurrent.set_completion_status('ERROR', v_mesg);
3107: x_retcode := 2;
3108: x_errbuf := v_mesg;
3109: ELSIF(v_retval = 2) THEN
3110: ret := fnd_concurrent.set_completion_status('WARNING', v_mesg);

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

3106: ret := fnd_concurrent.set_completion_status('ERROR', v_mesg);
3107: x_retcode := 2;
3108: x_errbuf := v_mesg;
3109: ELSIF(v_retval = 2) THEN
3110: ret := fnd_concurrent.set_completion_status('WARNING', v_mesg);
3111: x_retcode := 0;
3112: ELSE
3113: ret := fnd_concurrent.set_completion_status('NORMAL', v_mesg);
3114: x_retcode := 0;

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

3109: ELSIF(v_retval = 2) THEN
3110: ret := fnd_concurrent.set_completion_status('WARNING', v_mesg);
3111: x_retcode := 0;
3112: ELSE
3113: ret := fnd_concurrent.set_completion_status('NORMAL', v_mesg);
3114: x_retcode := 0;
3115: END IF;
3116:
3117: COMMIT;

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

3118: EXCEPTION
3119: WHEN OTHERS THEN
3120: x_retcode := 2;
3121: x_errbuf := SUBSTR(fnd_msg_pub.get(p_encoded => fnd_api.g_false), 1, 250);
3122: ret := fnd_concurrent.set_completion_status('ERROR', v_mesg);
3123: RAISE;
3124: END generate_serials;
3125:
3126: /*-------------------------------------------------------------------------------