Appian Community
Site
Search
Sign In/Register
Site
Search
User
DISCUSS
LEARN
SUCCESS
SUPPORT
Documentation
AppMarket
More
Cancel
I'm looking for ...
State
Not Answered
Replies
4 replies
Subscribers
4 subscribers
Views
5222 views
Users
0 members are here
Share
More
Cancel
Related Discussions
Home
»
Discussions
»
Reports
To get URL of a single process instance(Open Process instance from Tempo)
best
Certified Senior Developer
over 7 years ago
Hi All,
I have a portal report which has all process details like process name, process id etc,
Using queryProcessAnalytics, i am able to display all active process instances in Tempo UI.
Now i want to navigate to the particular process instance in a new tab if the user selects the link in grid.
Is there any we can get the URL of a process instance ?
This is required so that the Admin User can navigate to particular instance to monitor it.
Thanks in Advance.
OriginalPostID-264632
Discussion posts and replies are publicly visible
0
aloks0189
Certified Lead Developer
over 7 years ago
@bestlinl i think you can do something as below:
a!gridTextColumn(
label: "Tasks",
field: "c0",
data: index(local!datasubset.data, "c0", {}),
links:
apply(
a!processTaskLink(
task: _
),
index(local!datasubset.data, "c3", {})
)
)
Here c0 will have Task name and c3 will be having taskID
Cancel
Vote Up
0
Vote Down
Sign in to reply
Verify Answer
Cancel
0
best
Certified Senior Developer
over 7 years ago
Hi Alok,
I don't want to navigate to the active task and this is not a task report.
I need to open the "Monitor Process", for a particular instance which is active via Tempo.
This is a Admin Activity where he can directly goto the particular instance of a process, instead of searching in the "process" tab of designer.
Cancel
Vote Up
0
Vote Down
Sign in to reply
Verify Answer
Cancel
0
Josh
Certified Lead Developer
over 7 years ago
If you can grab the process id through analytics you might have some luck constructing the process monitoring url manually.
forum.appian.com/.../e-251341
Cancel
Vote Up
0
Vote Down
Sign in to reply
Verify Answer
Cancel
0
best
Certified Senior Developer
over 7 years ago
Thanks Josh for the link
Cancel
Vote Up
0
Vote Down
Sign in to reply
Verify Answer
Cancel