Revert approvals status to pending state when work items in RTC are re-opened
3 answers
There is no out of the box option for the requirement in RTC.
Regarding the customization, this cannot be achieved using dojo script based operations advisor as there is no way to access the work item Approvals from the script.
The below article has the list of work item attributes that can be accessed via the dojo script:
https://jazz.net/wiki/bin/view/Main/AttributeCustomization#Accessing_built_in_attributes_of
However, you could try to develop a java based operations advisor using PlainJavaClientLibraries to perform the below steps:
a. Get the Approvers list when the work item is reopened
b. Delete and Create Approvals for the Approvers with the Initial (pending) state on work item save
For more details you could review the below link: