Teamcenter Perform Action

0
Hello Everyone,   I need some help in Mendix with the Teamcenter connector. I need to Approve & Reject a Teamcenter workflow task assigned to the logged-in user. I create a microflow to perform Do & Review Tasks. My Do Task gets completed, in the same way I have built for Review Task but while approving the following errors were returned from the Teamcenter server: "Given User when expecting Signoff". I have attached the input arguments passed to the Perform Action.     
asked
2 answers
0

To sign off a review task, you need to provide the Signoff object as supporting object rather than the user.

You need to create the Signoff entity like so:

image.png

 

This allows you to get the list of signoffs for the EPMTask

Then you need to go through the list of signoffs and find the assignee which matches the current user - this is your signoff

Change the signoff to give a decision:

image.png

 

Then the PerfomActionInput looks like this:

image.png

answered
0

Can you provide a flow for completing review task.

 

answered