Appian Community
Site
Search
Sign In/Register
Site
Search
User
DISCUSS
LEARN
SUCCESS
SUPPORT
Documentation
AppMarket
More
Cancel
I'm looking for ...
State
Suggested Answer
+1
person also asked this
people also asked this
Replies
15 replies
Answers
1 answer
Subscribers
5 subscribers
Views
10743 views
Users
0 members are here
Share
More
Cancel
Related Discussions
Home
»
Discussions
»
Process
Is there a way to use a!recordLink in a process model, to display a link to a re
ryant122
over 9 years ago
Is there a way to use a!recordLink in a process model, to display a link to a record when setting up an email? Or should I be using a different function?
OriginalPostID-196831
OriginalPostID-196831
Discussion posts and replies are publicly visible
0
PhilB
A Score Level 1
over 9 years ago
A plugin for this seems over-the-top; surely it's possible to build this OOTB by plugging into bitly's web API?
Cancel
Vote Up
0
Vote Down
Sign in to reply
Verify Answer
Cancel
0
Mike Cichy
Appian Employee
over 9 years ago
The plugin was made before we had OOTB functionality for calling REST APIs so I would try it with the httpquery function.
Cancel
Vote Up
0
Vote Down
Sign in to reply
Verify Answer
Cancel
0
Sikandar Dadan
over 7 years ago
I have an use case where we need to have a link in the mail Notification for a "Sites" Record Link.
Has anyone had a similar use case, please share how was it achieved. urlforrecord only works for tempo Record Link.
Cancel
Vote Up
0
Vote Down
Sign in to reply
Verify Answer
Cancel
0
vijayana
over 7 years ago
in reply to
Sikandar Dadan
with(
local!recordRef: a!recordLink(
recordType: <your constant which refer record>,
identifier: <your identifier. It is a PK ID for your record>
).@attributes.@anyAttribute._recordRef,
concat(
"<your url>/suite/sites/<site url>/page/<ur sute page web address identifier>/record/",
local!recordRef,
"/view/summary"
)
)
Cancel
Vote Up
0
Vote Down
Sign in to reply
Verify Answer
Reject Answer
Cancel
0
Sikandar Dadan
over 7 years ago
in reply to
vijayana
We had the above code working prior to 17.2, once we upgraded to 17.2, a!recordLink error-ed "Could not find variable 'env!clientMode'" as this was used in Process Model...
After further analysis we found that the web address identifier returned from urlforrecord was the same that was returned by a!recordLink which was not the case for 16.2 or earlier....
We would be updating the a!recordLink to urlforrecord and use the substitute to generate the URL for the Sites.
thank you
Cancel
Vote Up
0
Vote Down
Sign in to reply
Verify Answer
Cancel
<