How to show Workflow details like workflow timeline, workflow comments in business object (e.g Employee Onboarding) detail page?

1
I am exploring workflows in v9.12.2 and trying to show workflow related details like workflow timeline, workflow comments and attachments in the business object detail page but could not find a way because of implementation change of workflow context concept from previous versions. How to get workflow related information from the business object/workflow context to be shown on business object detail page?  
asked
2 answers
1

There is a new microflow action called retrieve workflow context, that probably does what you need

answered
0

Hi,

Download Workflow commons module (https://marketplace.mendix.com/link/component/117066) from Mendix Marketplace

Use the ‘UserTask_Extended’ template where workflow timeline, workflow comments and attachements are available. Customize it according to the usecase.

or

Add the below snippet from Workflow commons module to the page 

  1. Snip_UserTask_TaskTimeline
  2. Snip_Workflow_Comments
  3. Snip_Workflow_Attachment

Hope it helps!!!

answered