cancel
Showing results for 
Search instead for 
Did you mean: 

How to change the description of a workflow

anfy2002us
Champ in-the-making
Champ in-the-making
How can I change the description of a workflow in a flight, or is it possible to do this
3 REPLIES 3

davidc
Star Contributor
Star Contributor
Something like:

<script>
   <variable name="bpm_workflowDescription" access="read,write"/>
   <expression>bpm_workflowDescription = "new description";</expression>
</script>

seshu
Champ in-the-making
Champ in-the-making
Hi David,

Continuing this post

Is there any way to assign script variable in expression instead of string and workflow model variables. I am getting error if assign to script variable also the below code is giving error
<variable name="pwf_docType" access="write"/>
<expression>
    docType= bpm_package.children[0].type;
</expression>
Its not recognising bpm_package.children. Appreciate your suggestion

davidc
Star Contributor
Star Contributor
Can you post your complete process definition?

bpm_package is not available until after the start task has completed.