Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-01-2022 02:59 PM
Hi Prakash,
Please find that UI action and add this line and try
action.setRedirectURL(url);
As part of a UI action, you may want to redirect a user to a URL. For example, you might add links to a form or open a new record after it is created from a UI action.
To redirect a user to a URL from a UI action, use this syntax to define the redirect link:
action.setRedirectURL('http://www.mysite.com/mypage.htm');
To direct a user to a record, use this syntax, where new_record is the variable name for the GlideRecord:action.setRedirectURL(new_record);
Mark Correct or Helpful if it helps.
***Mark Correct or Helpful if it helps.***