miftikhar20
Kilo Patron

@vidishaagarwal5 ,

  // Get sys_id of the current record
    var sysId = current.getUniqueValue();
	var tableName = current.getTableName(); 

	// Get the current view name
    var viewName = action.getGlideURI().get("sysparm_view");
    if (!viewName) {
        viewName = "default"; // fallback if no view specified
    }

    // Build Service Portal URL (use your page ID: test)
    var portalPage = gs.getProperty('glide.servlet.uri') + 'sp?id=test&table=' + tableName + '&sys_id=' + sysId + '&view=' + viewName;

    // Redirect user to Service Portal page
    action.setRedirectURL(portalPage);

 

Above UI action script redirects with sys_id, table, view of record - update it for your use case, place this code under script section of your UI action.

Thanks & Regards,
Muhammad Iftikhar

If my response helped, please mark it as the accepted solution so others can benefit as well.

@miftikhar20 it didn't work for me

Yes, it won't. This script works when you want to send data from a record via UI action to the portal page, not the system UI pages.

Anyways, glad you got the required solution.

Thanks & Regards,
Muhammad Iftikhar

If my response helped, please mark it as the accepted solution so others can benefit as well.

Ravi Gaurav
Giga Sage

Hi @vidishaagarwal5 

There are another methods..

 

Method 2: Access parameter in UI Page client script.

Access parameter in UI Page Client Script Code as shown below:

RaviGaurav_2-1760075028178.png

Note: remember to always use variable name starting with sysparm_xxxxx

 

--------------------------------------------------------------------------------------------------------------------------


If you found my response helpful, I would greatly appreciate it if you could mark it as "Accepted Solution" and "Helpful."
Your support not only benefits the community but also encourages me to continue assisting. Thank you so much!

Thanks and Regards
Ravi Gaurav | ServiceNow MVP 2025,2024 | ServiceNow Practice Lead | Solution Architect
CGI
M.Tech in Data Science & AI

 YouTube: https://www.youtube.com/@learnservicenowwithravi
 LinkedIn: https://www.linkedin.com/in/ravi-gaurav-a67542aa/

View solution in original post

vidishaagarwal5
Tera Expert

Thanks @Ravi Gaurav The above code snippet worked for me exactly