Activity Chaining

1. I have a record type of vanpool that has a related action to terminate a vanpool 

2. When I execute the action from tempo, it says "action completed". Then the task shows up.

3. We need to change the behavior to open the interface/task upon executing the action

  a. Terminate Vanpool process kicks off and contains a sub process , which is the main process for termination

4. Once in the main process, we have used activity chaining (we are not close to the threshold of 50)

The problem:

One of the sub processes before the task did not have activity chaining so I went ahead and added the activity chaining into this sub process and the activity chaining is still not working when this sub completes and goes back into the main process. 

Troubleshooting:

After the first test, it seemed the activity chaining was not working, so I did some research, compared other sub processes within the main process and changed this sub process to run "Synchronously", then saved and published. This still did not work... in that when I invoked the action, I got the same "action completed". What else do I need to check or configure?

Thank you

  Discussion posts and replies are publicly visible

Parents Reply
  • 0
    Certified Lead Developer
    in reply to beHumble

    No worries, I was able to download the image and zoom in - the "call trip recording sync" subprocess is asynchronous so chaining inside it is irrelevant.  You need to make sure chaining is enabled all throughout the two synchronous subprocesses (highlighted), as well as making sure the steps they contain don't push you over the 50-node chaining limit.

    Also: can the task be moved earlier in this process flow by any means?  Or does it completely rely on the processing done in all of these nodes?  Usually the best answer in cases like this is to reevaluate the process flow and move certain operations to run in parallel with the task, instead of before it.

Children