My Stuff
New AI Community Guidelines. Please review and follow them to ensure AI use stays safe, accurate, and compliant.
Keep an eye out for upcoming NetSuite events, including meetups, workshops, and webinars. These sessions are a great way to connect with peers, learn from experts, and stay current on the latest NetSuite updates and best practices. Registration links are provided in each event.
Comments
-
Yes, in a non-multicurrency environment it does not work and the formula column will show an error.
-
I ended up creating a bundle installation script and just dynamically modifying the search columns after install and update and that seems to be working great. Thanks for your help, David!
-
This is for a bundle that will be installed in multiple accounts. The saved search is used as a sublist on a custom record. Is is possible through an installation script to dynamically change the sublist search on a custom record?
-
I have been trying to get this working myself with no luck. Try adding dataType:'jsonp' to your ajax request. Without it I get the same error that you mention.
-
Its not documented yet, but apparently you can access the page values using the currentRecord module. /** *@NApiVersion 2.0 *@NScriptType ClientScript */ define(["N/currentRecord"], function(currentRecord){ var pageInit = function(context) { } //just to add an entry point var copyDateToTextField= function(context) { var…