Sagar Hiray
11/25/2024, 11:25 AMvar supportcaseSearchObj = search.create({
type: "supportcase",
filters:
[
["employee.internalid","anyof",[219,8,10]]
],
columns:
[
search.createColumn({
name: "internalid",
join: "employee",
summary: "GROUP",
label: "Internal ID"
}),
search.createColumn({
name: "internalid",
summary: "COUNT",
label: "Internal ID"
})
]
});
I want support case count assigned on employees and it's working fine,
But I also want the employees with count '0' if it is not assigned to any but I passed in the filter. How can I achieve this?Marvin
11/25/2024, 2:08 PM[
["employee.internalid","anyof",[219,8,10,"@NONE@"]]
]
borncorp
11/25/2024, 4:10 PMborncorp
11/25/2024, 4:11 PMSagar Hiray
11/26/2024, 4:42 AMSagar Hiray
11/26/2024, 4:43 AMerictgrubaugh
11/26/2024, 4:21 PMerictgrubaugh
11/26/2024, 4:25 PM