Accessing Predecessors and/or successors through Fusion
Hello,
We are facing a challenge around the complexity of work and as we were working through this problem, I thought that asking the phenomenal brain power in this group could also shed some light or thoughts on this problem. It is also a good Friday-style thinking problem (maybe that is just me).
The problem statement is seemingly simple on the surface: Generate a list of tasks with cross-project predecessors and determine the impact of changes when one or more tasks change across projects.
Now, it does not appear that you can access the predecessor tables directly in fusion or in a custom API call as they are linked to tasks themselves. And when you are building a report in standard Workfront, this is a perfect use case for the EXISTS filter whereby you can at least get a list of tasks that have a cross-project predecessor relationship. The challenge with that is that EXISTS filters are not available in the API.
For clarification of thought, here is the textmode filter to get the data we are looking for:
EXISTS:a:$$OBJCODE=PRED
EXISTS:a:isCP=true
EXISTS:a:successorID=FIELD:ID
project:status=DED CLD
project:status_Mod=notin
status=CPL
status_Mod=notin
Does anyone have any thoughts on potential solutions to find these predecessor tasks?