Hi All,
We have a few scripts that use the “function” column on search results to do things like group dates by month/quarter/etc. We were calling these searches and processing the results in SS2. We would typically do something like:
result.getValue({ name: ‘trandate’, summary: ‘group’ });
And life was grand. That was until about a week ago, when all of these calls started to fail. Using the above would return null.
After some digging in the browser, the API now takes 4 parameters – name, join, summary, and func. If you do not specify the func options, you get null. So our new call is:
result.getValue({ name: ‘trandate’, summary: ‘group’, func: ‘month’ });
This new call returns the value as expected.
This is a cached copy. Click here to see the original post.