Can I use a Custom Field with Values Derived from ...
# suitescript
j
Can I use a Custom Field with Values Derived from Summary Search as a filter for a search used in a Map Reduce script? Summary: Trying to timestamp customers when they surpass $2,000 in payments. I have a Custom Field with SUM for all payments derived from a summary search. I do know these values Custom field values from a summary search results are never stored and the field values are always calculated dynamically at runtime. Just wondering if my mapreduce script will be able to reference the value of the custom field, or if it would be better to calculate the total SUM of payments directly in my mapreduce script.
k
Run the mapreduce and use the saved search in the getinput data phase to pass to the map phase
🙏 1
j
Working on it now, thank you