Hi,
You can use scripted filter.
Follow the steps below:
1. write a script include and write the code there.
2. In your UI Policy's condition part call the script include.
Eg:-
javascript:function_name()
Please mark reply as Helpful/Correct, if appli...
Hi shahebaz,
Refer the below code.
In Client Script:
var sysID=g_form.getUniqueValue();
In Business Rule:
var sysID=current.getUniqueValue();
Please mark reply as Helpful/Correct, if applicable. Thanks!Warm Regards,Akshay Punekar
www.dxsherpa...
Hi Puru,
Refer the code below:
for(var i=0;i<str.length;i++)
{
var rec = new GlideRecord('core_country');
rec.addQuery('sys_id','IN',str[i]);
rec.query();
while(rec.next())
{
// perform action
}
}
Let me know the change in behavior o...