Attach Document to Workflow in user task form

cancel
Showing results for 
Search instead for 
Did you mean: 
yash_patel_c2
Established Member

Attach Document to Workflow in user task form

Jump to solution

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 Solution

Accepted Solutions
roberto_gamiz
Established Member II

Re: Attach Document to Workflow in user task form

Jump to solution

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 solution in original post

2 Replies
roberto_gamiz
Established Member II

Re: Attach Document to Workflow in user task form

Jump to solution

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

yash_patel_c2
Established Member

Re: Attach Document to Workflow in user task form

Jump to solution

Issue resolved.

Thanks for the help.