Calling workflow from a form
I need to call a workflow in the QuestionLibrary form so that I can save the question and answer in another external resource, after the user modifies the answer to the question.
Other option is to create a complete workflow to replace the change question answer link and manipulate the custom-form.
How do I call a workflow in a form.
Any help is appreciated.
[386 byte] By [
_raj] at [2007-11-26 10:48:10]

# 3
Well, I was thinking of using the out-of-the box functionality, just insert a work-flow call into the form so that I can do additional things. It is just like the changeuserpassword work flow which is called by the IDM (can be configured in the Process/Form mapping), You can use this work-flow as hook to add additional code. But QuestionLogin form does not have this kind of built-in hook. That is why I am looking for ways to somehow kicking off a work flow.
_raj at 2007-7-7 3:00:32 >

# 6
Using the button approach, you can pass simple values to the workflow through the URL string. If you need to pass objects though, then it won't work
# 7
Hi,
<Field name='formButton'>
<Display class='Button'>
<Property name='value' value='Save'/>
<Property name='postURL' value='user/processLaunch.jsp?id=FirstTestWorkFlow'/>
<Property name='command' value='Save'/>
</Display>
</Field>
if I save it, it is giving this error "View access denied to 9999121 on process FirstTestWorkFlow".
how i have to fix error. Please tell me.