ASP page in Workflow Transition Rule

In a workflow rule I have used an asp file to perform some data processing then redirected back to the Case Summary screen. That all works fine.

I understand that when an asp file is used in a transition rule the rule actions are ignored. I haven't added any actions.

However, after the transition rule has executed, the workflow state is not updated. I would expect, as this is a transition rule between two workflow states, that the workflow state would be updated to the destination state in the workflow.

  • 0

    So, do I need to do the workflow state updates in the asp page code? I have run a sql trace of the process going from one state to another (without the asp page) and the pertinent sql seems to be:

    INSERT INTO WorkflowHistory

    UPDATE WorkflowInstance

    Which I can do in the asp page. Or is there a more formal way to do this?

    Thanks