- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-06-2014 11:26 PM
Hello,
I have included CMS link in Notification which redirects me to a public page.
Below is the line included in my Notification Message.
${CMS_URI+armspublic/UserCreation2nSignupPublicPage}
where "armspublic" is my site name and "UserCreation2nSignupPublicPage"
It is displaying as LINK in my Email Content.
I have a requirement to change this text "LINK" to "Click here".
How can we change this?
Can any one help me on this.
Thanks,
Pavan.
Solved! Go to Solution.

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-07-2014 01:11 AM
var instanceURL = gs.getProperty("glide.servlet.uri");
instanceURL = instanceURL + "armspublic/";
var ui_pagename = 'Your ui page name';
var cmspage = encodeURIComponent(ui_pagename);
var url = instanceURL + cmspage+'.do?sysparm_document_key=' +u_user_information+'sys_id='+current.sys_id;
Regards,
Harish.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-07-2014 12:53 AM
Hello Harish,
Thanks for your reply,
Can we change this to generate CMS URL as my Link has to redirect to a public CMS site(armspublic)/ page.
is there any method to generate URL for CMS page link like gs.generateURL(strTableName, strSysID) method?
or we have to build the URL manually?
For more information my link should be as below.
Can you please help me on this
Thanks,
Pavan.

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-07-2014 12:58 AM
check this ...
gs.getProperty('glide.servlet.uri')+'/armspublic/UserCreation2nSignupPublicPage.do?'

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-07-2014 01:11 AM
var instanceURL = gs.getProperty("glide.servlet.uri");
instanceURL = instanceURL + "armspublic/";
var ui_pagename = 'Your ui page name';
var cmspage = encodeURIComponent(ui_pagename);
var url = instanceURL + cmspage+'.do?sysparm_document_key=' +u_user_information+'sys_id='+current.sys_id;
Regards,
Harish.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-07-2014 01:42 AM
Hello Harish,
Thanks for your guidance.
have done some changes in URL. its working fine now. Thanks
Regards,
Pavan.

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-07-2014 01:51 AM
Great Pavan . Your welcome.
Regards,
Harish.