display results (erroneous or successful) at the end of a workflow
Hi, we have several custom workflows each of which has 2-3 approval steps and resource account updates at the end.
On the administrator interface, and administrator can see results of any change he makes on a taskResults page.
I need to add a similar step to our workflows, in order to let the last approvers see the result of the workflow, at least if it ended successfully or not.
I tried to use ADD_RESULT application but even if I see its' results in a trace, no error is displayed on the last approval form.
Does anyone have an idea about how to display task results at the end of a workflow? How to display an html page instead of calling another form may help too...
Regards,
Mehtap.
# 1
Is this the one you are looking for?
To add message to tasks page, we use action result
Sample code:
<ActionResult name='processStatus'>
//Put accordingly the text you need to see in the task results page
<concat>
<s>Access review completed by </s>
<ref>xyz</ref>
</concat>
</ActionResult>
Thanks.
Swatza at 2007-7-29 16:35:04 >

# 2
Hi Swatz,
Actually my workflow ends with a checkin operation after an approval page.
What I need is to display a page showing errors that may have been encountered during checkin operation.
Yet I do not have any results page but I'd like to add one and do not know how to add a page that shows results after submitting an approval form.
I think your sample code shows how to add new info to an already existing taskResults page, as I mentioned yet I don't know how to create/display such a page/report and show it to the user.
# 4
These workflows are called from the end user interface.
Just after the checkin step I'd like the workflow to display an html page/report/whatever showing task results to the last approvers.
A taskresults page is displayed by default after any task in the Administrator interface and I'd like to add a similar facility to my custom end user workflows.