Discussions
Stay up-to-date with the latest news from NetSuite. You’ll be in the know about how to connect with peers and take your business to new heights at our virtual, in-person, on demand events, and much more.
New AI Community Guidelines. Please review and follow them to ensure AI use stays safe, accurate, and compliant.
Update: Narrative Insights has been restored and is now available.
Narrative Insights is Temporarily Unavailable due to an Infrastructure Issue. Learn how This Impacts Your Account and What to Expect While the Feature is Disabled.
Narrative Insights is Temporarily Unavailable due to an Infrastructure Issue. Learn how This Impacts Your Account and What to Expect While the Feature is Disabled.
script: write column value of saved search to item record
Loving the automation possible with scheduled scripts, but having trouble:
- I have a custom saved search: ID 1177
- It sums all sales made over the previous 30 days to the parent record: custom column label 30daysales (albeit it is displayed as 'Sum of 30daysales' in the UI)
- I want to submit that sum-value to a custom field in the parent record: custitem30daysales
I cannot find any documentation on how to do this, but put together NS guidance and User Group posts to make this script:
// call the search
var swritebestseller = nlapiSearchRecord('inventoryitem', 'customsearch1177');
// Set up a function
function s30daybestseller () {
0