I have problem with passing property values between tasks. For example, i have in start task model defined property:

<type name="mcwm:submitStart">
        <parent>bpm:startTask</parent>
        <properties>
            <property name="mcwm:projectName">
                <title>Naziv projekta</title>
                <type>d:text</type>
                <mandatory>true</mandatory>
            </property>

in share-config-custom.xml i show that property on start page and that's ok.

...
<show id="mcwm:projectName"/>
...
<field id="mcwm:projectName" set="general" />
...

Now on my second form i want to show the same field with value that is entered on start form. In model i didn't specify again this property for second task, i just wrote:

...
<type name="mcwm:preparationOfProjectCharter">
   <parent>bpm:workflowTask</parent>
</type>
...

and in share-config-custom.xml copied first form configuration for second form with one little change in force="true" attribute:

...
<show id="mcwm:projectName" force="true"/>
...
<field id="mcwm:projectName" set="general" />
...

Now field is there on my second form but value that is entered on my first form isn't, do i have to do something else to succeed that and pass property values between forms?

Regards, Aleksadnar

link|improve this question

62% accept rate
feedback

1 Answer

up vote 2 down vote accepted

Yes of course you need to do something extra. Read the Workflowadministration Wiki.

You need to pass variables through the workflow-context, either via mapping like shown in the Wiki or through the context itself. (atleast this is for JBPM and probably also applicable for Activity)

link|improve this answer
Thanks man on your help. :) I read that wiki but wasn't so clear to me so i posted here. Anyway i gained to pass values between tasks, i put on task complete task properties on my process and now they are available to all tasks. – Aleksandar Feb 8 at 9:46
Cool, glad to be of any help! – Tahir Malik Feb 8 at 16:26
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.