Skip to main content

Links from the email notification to the relevant SR


I'd like to be able to click on a link in the notification email I get for a new SR, and have it open up the SR page for that request. I figured I'd actually already be able to do that manually in the custom notifications area, but couldn't find the variable name for the SR number and also didn't know whether the URL was built using the SR name, so I couldn't build the URL. Thanks Dev

26 replies

techguy
Active talker
Forum|alt.badge.img+1
  • Active talker
  • 1229 replies
  • June 16, 2008
if you have enabled html based email just put in <a href="https://YOURSERVERNAME:8080/SREdit.jsp?id={$ID}">click here to go to the request</a> Haven't tried it but it should work.

  • Author
  • New SysMate
  • 9 replies
  • June 17, 2008
That's exactly what I was looking for but didn't know the variable name for the ID. Thanks for your help! If you need to enable HTML email, anyone, the full answer is available on the forum in a how-to but it's in Preferences/Integration; change the Content-Type to text/HTML (this is assuming not using particular unicode encoding). Thanks Dev

  • 0 replies
  • June 17, 2008
Hi I have tried it and it worked a treat. I also put a tag line in it. "Click here to see the status of your call, add notes and even close the call!"

CliGil
Active talker
  • Active talker
  • 34 replies
  • June 21, 2008
I was also looking for this, great tip! Thanks

Oded  M
SysAider
Forum|alt.badge.img+1
  • SysAider
  • 756 replies
  • June 29, 2008
This Post has been moved from the Feature Request forum as it is not a Feature Request and it is available today - see details.

  • New SysMate
  • 2 replies
  • July 10, 2008
I did this but the link takes me to the end user portal, not the service request. How do I make it take me directly to the service request?

Apolas
  • New SysMate
  • 6 replies
  • July 24, 2008
This link works for administrator for open "Edit SR" page directly from e-mail. I tried to make the same for end-users to go directly to "View SR" page. I used this link <a href="https://server_url/EndUserSRView.jsp?id=$ID">click here for bla bla</a> This link also works, but both links (admin´s edit SR and end user´s view SR) need to logon. That is problem for my end-users, because they are using deployed shortcut, which log them on automatically. They are not using login and password, they even don´t know any logon details. Is there any possibility to redirect end-user directly to View SR page without need to logon, or better said, with automatic logon? Martin

Forum|alt.badge.img
  • Active talker
  • 2082 replies
  • July 24, 2008
Apolas
This link works for administrator for open "Edit SR" page directly from e-mail. I tried to make the same for end-users to go directly to "View SR" page. I used this link <a href="https://server_url/EndUserSRView.jsp?id=$ID">click here for bla bla</a> This link also works, but both links (admin´s edit SR and end user´s view SR) need to logon. That is problem for my end-users, because they are using deployed shortcut, which log them on automatically. They are not using login and password, they even don´t know any logon details. Is there any possibility to redirect end-user directly to View SR page without need to logon, or better said, with automatic logon? Martin
Hello Martin. You can set up SSO (single sign on) integration in SysAid that will prevent from the users to need to login. SSO can be set up in SysAid full edition, and you can contact us at helpdesk@sysaid.com for additional instructions. Best regards. Haim

  • New SysMate
  • 6 replies
  • August 1, 2008
Haim
Hello Martin. You can set up SSO (single sign on) integration in SysAid that will prevent from the users to need to login. SSO can be set up in SysAid full edition, and you can contact us at helpdesk@sysaid.com for additional instructions. Best regards. Haim
FYI - the single-sign on doesn't work with Firefox 3... It asks for the same information in a pop-up window to login.

EbroIN
Active talker
  • Active talker
  • 146 replies
  • June 29, 2009
techguy
if you have enabled html based email just put in <a href="https://YOURSERVERNAME:8080/SREdit.jsp?id={$ID}">click here to go to the request</a> Haven't tried it but it should work.
Hi there, I don't think that this will do 100% correctly! I had to modify the line to read like this: <a href="https://YOURSERVERNAME:8080/SREdit.jsp?id=${ID}">click here to go to the request</a> Using your link, will result in strage URL when the browser tries to open it (lets assume my server is called myserver.local and the SR Number is 1234): https://myserver.local:8080/SREdit.jsp?id=%7b1234%7b Using the code I've posted here (just set the $ before the curly braces) will just work fine (SysAid 6.0.07)... CU

  • Active talker
  • 104 replies
  • January 12, 2010
We have noticed that when an admin clicks on the link to view the SR from their email they first have to login and are then taken directly to the SR (which is how we would want and expect it to work). However, when an end user clicks the link, from their email, to view the SR they first have to login but then are taken to the end user portal main screen and not the SR itself. Is there a way that we can conifgure Sysaid so that the end-user will be taken directly to the SR in the same way the administrators do. It would need to check that the end-user has access to this SR first (they submitted the request themselves). regards, tex

Adam Racer
Active talker
Forum|alt.badge.img
  • Active talker
  • 142 replies
  • January 14, 2010
In this case, did you insert the link as https://SERVER:8080/EndUserSRView.jsp?id=123&EndUserLink=YES ?

  • Active talker
  • 104 replies
  • January 14, 2010
That solved the problem. Thanks Adam Racer Tex

  • Community Enthusiast
  • 10 replies
  • August 12, 2010
Hy guys, My scenario is just a little bit different. I want to provide the link for survey, but my survey will be external to SysAid, I mean, I want to provide a URL link that will send the service request ID and service request title to the survey. To pass that info to the survey, I need send it via URL parameters. When Title has blank spaces, the URL will be broken, because there is no replacement to %20. How can I achieve that? Thanks

  • New SysMate
  • 8 replies
  • October 21, 2011
where this line set up :? <a href="https://YOURSERVERNAME:8080/SREdit.jsp?id={$ID}">click here to go to the request</a>

  • New SysMate
  • 8 replies
  • October 21, 2011
where this line set up :? <a href="https://YOURSERVERNAME:8080/SREdit.jsp?id={$ID}">click here to go to the request</a>

  • New SysMate
  • 8 replies
  • October 21, 2011
where this line set up :? <a href="https://YOURSERVERNAME:8080/SREdit.jsp?id={$ID}">click here to go to the request</a>

pineapple
Community Enthusiast
  • Community Enthusiast
  • 10 replies
  • August 2, 2012
Hello dear SysAiders I also tried to put a link in email-notifications for end-users to go directly to "View SR" page. I used this link <a href="https://server_url/EndUserSRView.jsp?id=$ID">click here for bla bla</a> This link also works, but they need to logon. That is a problem for my end-users, because they are using deployed shortcut, which log them on automatically. They are not using login and password, they even don´t know any logon details. Now i read about SSO and tried it with editing the following file: serverConf.xml file located at ...\SysAidServer\root\WEB-INF\conf. See here: /Sysforums/posts/list/30/277.page After these changes I tried to restart the service „SysAid Server“. It stops, then it starts and stops again immediately and nothing works. Whats the problem? Thank you

This no longer works for me in the current version sysaid cloud: <a href="https://server.url/SREdit.jsp?id=$ID">Click here to access your ticket</a> Is there a new URL for this version of sysaid?

  • Community Enthusiast
  • 25 replies
  • February 23, 2016
Hi All, Sofia from SysAid support solved this excellently. You only need change link to "<a href="https://servicedesk.yourdomain.com:443/EndUserSRView.jsp?id=${ID}&EndUserLink=YES">Link to SR ${ID}.</a>" It works for End Users with SSO. It may be useful for new SysAiders. Karel

  • Community Enthusiast
  • 13 replies
  • December 17, 2020
Does "EndUserLink=YES" still work with v20 in the cloud? I am not having luck with getting end users to see the SR. When an admin clicks it the page loads as it should to the ticket, but when an end user clicks it they see a lock and "You do not have permission to perform this operation."

alefabian
Active talker
Forum|alt.badge.img
  • Active talker
  • 162 replies
  • December 22, 2020
byransays
Does "EndUserLink=YES" still work with v20 in the cloud? I am not having luck with getting end users to see the SR. When an admin clicks it the page loads as it should to the ticket, but when an end user clicks it they see a lock and "You do not have permission to perform this operation."
If you are using the self-service portal, the link for end user must be composed in this way: ${SelfServicePortalURL}/servicePortal/SRview/${ID} or [your-SysAid-URL]/servicePortal/SRview/${ID} If you are still using the end user portal, the link is: [your-SysAid-URL]/EndUserSRView.jsp?id=${ID}

  • Community Enthusiast
  • 13 replies
  • December 22, 2020
Thank you! I was unaware there was the ability to do it with the Self Service portal so that is cool. Unfortunately I am getting permission issues as well so I have a ticket in for help with that.

  • Active talker
  • 25 replies
  • October 5, 2021
I know this is a bit older but was there any resolution to the permissions error? I got the link to work in version 20 but am also getting the permission error.

  • Community Enthusiast
  • 13 replies
  • October 5, 2021
Still waiting on my ticket to be resolved. I will update if/when it does.

Reply


Want Some cookies?

No, literally. We have some. 😉 By continuing browsing on our site you agree to our cookie policy.

 
Cookie settings