Getting '414 Request-URI Too Large' due to long URL
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎07-20-2022 05:26 AM
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.
Thanks
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎07-21-2022 04:20 AM
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
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎07-21-2022 05:36 AM
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