cancel
Showing results for 
Search instead for 
Did you mean: 

Attach Document to Workflow in user task form

yash_patel_c2
Star Contributor
Star Contributor

Hello everyone,

I want to start workflow without any document. Once user starts the workflow task will be assigned to another user where he/she can attach document to the workflow.

Form when user starts the workflow..

In this form we have option to add the document.. 

Form when task goes to another user..

In this form Add button is not available.

How can we add document to this form?

Thanks 

1 ACCEPTED ANSWER

roberto_gamiz
Star Contributor
Star Contributor

Hello,

In your workflow model defnition for this task try to override the property bpmSmiley TongueackageActionGroup with value add_package_item_actions.

<type name="mynamespace:taskname">
<parent>bpm:workflowTask</parent>
<overrides>
<property name="bpm:packageActionGroup">
<default>add_package_item_actions</default>
</property>
</overrides>
</type>

Regards

View answer in original post

2 REPLIES 2

roberto_gamiz
Star Contributor
Star Contributor

Hello,

In your workflow model defnition for this task try to override the property bpmSmiley TongueackageActionGroup with value add_package_item_actions.

<type name="mynamespace:taskname">
<parent>bpm:workflowTask</parent>
<overrides>
<property name="bpm:packageActionGroup">
<default>add_package_item_actions</default>
</property>
</overrides>
</type>

Regards

Issue resolved.

Thanks for the help.