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
13 replies
Subscribers
6 subscribers
Views
3592 views
Users
0 members are here
Share
More
Cancel
Related Discussions
Home
»
Discussions
»
Process
We are on 7.8 Cloud. We have Tempo Task Report which has a Task Name
aksharc
over 10 years ago
We are on 7.8 Cloud.
We have Tempo Task Report which has a Task Name column with the link clicking on which will open the task form.
Now, when I click on a task form it always open in the Portal environment with the message "This form must be viewed in Tempo". The link appears correct when I hover over the task link (
snldev.appiancloud.com/.../537139208)
, but when I click on that, instead of opening task form in the tempo, it takes me to the portal environment
Any idea why this is happening?
Note: We are in process of migrating to tempo, so there are still several portal tasks available in the environment.
Thanks!...
OriginalPostID-136968
OriginalPostID-136968
Discussion posts and replies are publicly visible
0
Michael Tan
Appian Employee
over 10 years ago
Hi Akshar, can you provide your sail expression for defining this column?
Cancel
Vote Up
0
Vote Down
Sign in to reply
Verify Answer
Cancel
0
aksharc
over 10 years ago
a!gridTextColumn(
label: "Current Task",
field: "c4",
data: index(ri!Datasubset.data, "c4", {}),
links: if(
ri!Datasubset.totalCount = 0,
{},
apply(
a!processTaskLink(
task: _
),
index(ri!Datasubset.data, "c16", {})
)
)
)
Note: I have used queryProcessAnalytics to get the data from the portal report. c4 is the Task Name, and c16 is the Task ID.
Cancel
Vote Up
0
Vote Down
Sign in to reply
Verify Answer
Cancel
0
Michael Tan
Appian Employee
over 10 years ago
Can you try this?
a!gridLinkColumn(
label: "Task Name",
field: "c4",
data: if(
ri!Datasubset.totalCount = 0,
{},
apply(
a!processTaskLink(label: _, task: _),
merge(
index(ri!Datasubset.data, "c4", {}),
index(ri!Datasubset.data, "c16", {})
)
)
)
)
Cancel
Vote Up
0
Vote Down
Sign in to reply
Verify Answer
Cancel
0
aksharc
over 10 years ago
Same behavior after I modified the column with the one you provided.
I also noticed one thing, When I am on Tempo Task Form, from there when I refresh the page (browser refresh), it redirects me to portal environment!
This is weird.
Cancel
Vote Up
0
Vote Down
Sign in to reply
Verify Answer
Cancel
0
Michael Tan
Appian Employee
over 10 years ago
Hmmm, also the gridLinkColumn is deprecated, but I wanted to see if it worked with that and wasn't something with the base product. It looks like you are using the id from a specific column. Can you use the drill down portion of the query analytics return? It will be one of the dp fields.
Cancel
Vote Up
0
Vote Down
Sign in to reply
Verify Answer
Cancel
0
aksharc
over 10 years ago
Yes. I am using the tp!id to populate the column. Let me try to link the Task Name column to TaskID and see what happens.
Cancel
Vote Up
0
Vote Down
Sign in to reply
Verify Answer
Cancel
0
aksharc
over 10 years ago
Using the drill down portion doesn't work as well. It opens in the portal always.
Cancel
Vote Up
0
Vote Down
Sign in to reply
Verify Answer
Cancel
0
Michael Tan
Appian Employee
over 10 years ago
If you use the task report tutorial for 7.8, then does it yield the same issue on your environment?
forum.appian.com/.../Task_Report_Tutorial.html
If it does, then I suggest working with Appian Technical support directly.
Cancel
Vote Up
0
Vote Down
Sign in to reply
Verify Answer
Cancel
0
aksharc
over 10 years ago
Thanks Michael for the assistance. I have opened a support case for this.
Cancel
Vote Up
0
Vote Down
Sign in to reply
Verify Answer
Cancel
0
Lakshmi Meyyappan
over 9 years ago
Were you able to resolve this issue? We are seeing a similar problem, but some links in the report open in Tempo and some links (from a specific process model) open in Portal.
Cancel
Vote Up
0
Vote Down
Sign in to reply
Verify Answer
Cancel
>