netsuite report doubles the result; any idea or so...
# general
a
netsuite report doubles the result; any idea or solution?
l
more context mate
d
More context indeed. But I'll toss in, a few weeks back, I was using a redirect in a Suitelet to redirect to search results. Say my search results had columns
A, B, C
. If accessed via the Suitelet redirect, I saw
A,B,C,A,B,C
. But if I went back and accessed the search results from the UI, just normal
A,B,C
as expected. Later realized that
redirect.toSavedSearchResult()
by the documentation is only supported in afterSubmit UE's. Go figure. Definitely a weird "double result" behavior though.
l
wow!