TaskObject.<Task name>.ExecuteTask
ExecuteTask()
Executes the task. The task property Executed is set to
True and it is recorded. When this method is executed, the business process that has generated the task receives a corresponding notification and passes to the next point of the business process route. When executing this method, calling
BeforeExecute and
OnExecute event occurs at the task and corresponding route point.
Server, thick client, external connection.
If CurTask.CheckExecution() Then CurTask.ExecuteTask(); EndIf
|