The CreatorCon Call for Content is officially open! Get started here.

Getting '414 Request-URI Too Large' due to long URL

Kishore32
Tera Contributor

Hello,

I've created a custom button UI action and added some script to filter some records from a table. I'm preparing url with all the employee ids from the table and opening that url in different browser using 'g_navigation.openPopup' in UI action script. Here is the script include screenshot attached.

Challenge: Here url is going bigger because lot of employees. Its browser returning "414 Request-URI Too Large"

Can anyone please help me here to get resolve this or please share your valuable suggestions or any other solution for this scenario.

find_real_file.png

Thanks

 

6 REPLIES 6

Hi Kishore,

Yes, every time you need to update the group based on your result set.

Here is example to invoke g_navigation.openPopup with group id.

var url = "/sys_user_grmember_list.do?sysparm_query=group.sys_id%3D<group_sysId>&sysparm_view=";

g_navigation.openPopup(url);

Thanks,

Srinivasulu Laggala

Instead of sys_user_grmember_list, I have to show my custom tale result. How to filter and display the custom table result. using sys_user_grmember table?

Thanks