- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-05-2022 03:41 AM
Hi All,
On clicking the button in ATM Card table(table 1) form the page should redirect to another new form from table 2. I used the below code but it is not working.
function createSSGDUser() {
var url = 'x_751152_my_custom_ssgd_bank_user_registration.do?sys_id=-1';
action.setRedirectURL(url);
}
Thanks in Advance!
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-05-2022 03:47 AM
You can try below instead,
function createSSGDUser() {
var url = 'x_751152_my_custom_ssgd_bank_user_registration.do?sys_id=-1';
top.window.location=url;
}
Let me know if you have any further queries.
Please mark this as Correct or Helpful if it helps.
Thanks and Regards,
Abhijit
Community Rising Star 2022
Regards,
Abhijit
ServiceNow MVP
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-05-2022 03:47 AM
You can try below instead,
function createSSGDUser() {
var url = 'x_751152_my_custom_ssgd_bank_user_registration.do?sys_id=-1';
top.window.location=url;
}
Let me know if you have any further queries.
Please mark this as Correct or Helpful if it helps.
Thanks and Regards,
Abhijit
Community Rising Star 2022
Regards,
Abhijit
ServiceNow MVP