Jon Hodge - Tuesday, January 2, 2007 3:00 PM:
Workflows have escalations and reminders and there is a soap action:
Case "executeescalations"
soap_action = "ExecuteEscalations"
CCO.Workflow.ExecuteEscalations(inDom, outDom)
How do you call this from a server method which can be run on a schedule using the Innovator Service?
Jon
RobMcAveney - Tuesday, January 2, 2007 3:25 PM:
Here is some VB code that can be used. The inDom for ExecuteEscalations can be empty and the outDom contains only a result of "Ok". There is not currently an IOM way to do this.
Dim inn As Innovator = Me.newInnovator()
Dim inDom As XMLDocument = inn.newXMLDocument()
Dim outDom As XMLDocument = inn.newXMLDocument()
CCO.Workflow.ExecuteEscalations(inDom,outDom)