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
5224 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
Parents
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
Reply
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
Children
No Data