DBA Data[Home] [Help]

APPS.PO_UDA_TEMPLATES_UTIL dependencies on FND_CONCURRENT

Line 611: conc_status := FND_CONCURRENT.SET_COMPLETION_STATUS('NORMAL',Current_Error_Code);

607: IF l_retcode = 0 THEN
608: errbuf := 'Compiled all the templates successfully';
609: d_progress := 160;
610:
611: conc_status := FND_CONCURRENT.SET_COMPLETION_STATUS('NORMAL',Current_Error_Code);
612:
613: ELSE
614: errbuf := 'One or More templates have failed to compile';
615: d_progress := 170;

Line 617: conc_status := FND_CONCURRENT.SET_COMPLETION_STATUS('WARNING',Current_Error_Code);

613: ELSE
614: errbuf := 'One or More templates have failed to compile';
615: d_progress := 170;
616:
617: conc_status := FND_CONCURRENT.SET_COMPLETION_STATUS('WARNING',Current_Error_Code);
618:
619: END IF;
620:
621: END IF;

Line 627: conc_status := FND_CONCURRENT.SET_COMPLETION_STATUS('ERROR',Current_Error_Code);

623: EXCEPTION
624: WHEN OTHERS THEN
625: fnd_file.put(fnd_file.log, 'Exception in COMPILE_TEMPLATES after progress number : ' || d_progress);
626: errbuf := 'Unexpected error';
627: conc_status := FND_CONCURRENT.SET_COMPLETION_STATUS('ERROR',Current_Error_Code);
628:
629: END COMPILE_TEMPLATES;
630:
631: -------------------------------------------------------------------------------