1.

How To Make Concurrent Program End With Warning?

Answer»

If the concurrent program is of TYPE PL/SQL, you can assign a value of 1 to the “retcode” OUT PARAMETER.

For a Java Concurrent program, USE the code similar to below
ReqCompletion lRC;
//get handle on request COMPLETION object for reporting status
lRC = pCpContext.getReqCompletion();
lRC.setCompletion(ReqCompletion.WARNING, “WARNING”);

If the concurrent program is of type PL/SQL, you can assign a value of 1 to the “retcode” OUT Parameter.

For a Java Concurrent program, use the code similar to below
ReqCompletion lRC;
//get handle on request completion object for reporting status
lRC = pCpContext.getReqCompletion();
lRC.setCompletion(ReqCompletion.WARNING, “WARNING”);



Discussion

No Comment Found