Using Teamsite 7.4
We are trying to allow users to enter text on the custom instantiation screen which can then be included in an custom email task that we have coded.
In the workflow properties I added a job variable and set it as CONFIGURABLE
Name, ID and label are all "AttachBrief"
It is not hidden and not read-only
In custom_instantiation allow this to be edited on screen
<
item pathid="AttachBrief" name="AttachBrief">
<label>AttachBrief</label>
<description>Please add brief location if known</description>
<text required="f"/>
</item>
Workflow user is able to enter a value into instantiation screen.
In custom workflow java added the code
currentTask.getWorkflow().getVariable("AttachBrief");
but it never has the value which the user enters.
Are these configurable variables only for values which can be set prior to the workflow being invoked?
TIA.