[ 1829867 ] Error in BP GardenWorld Workflow

This commit is contained in:
Heng Sin Low 2007-11-11 17:09:10 +00:00
parent ad914c6bbe
commit 1e4442c3c8
1 changed files with 4 additions and 2 deletions

View File

@ -442,7 +442,7 @@ public class MWFProcess extends X_AD_WF_Process
} // perform
/**
* Start WF Execution async
* Start WF Execution
* @return true if success
*/
public boolean startWork()
@ -459,7 +459,9 @@ public class MWFProcess extends X_AD_WF_Process
{
// Start first Activity with first Node
MWFActivity activity = new MWFActivity (this, AD_WF_Node_ID);
new Thread(activity).start();
//async execution cause problem with transaction
//new Thread(activity).start();
activity.run();
}
catch (Exception e)
{