Minha área
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.
Comentários
-
Hello @User_32GQL, lineInit always triggers first. You can double-check this by writing debugger; in each functions. My test shows that validateLine comes first. I hope this helps! If you find this reply to your question useful, others might as well. By clicking the “Yes” button for “Did this answer the question?” below,…
-
Hello @Thomas UPF, The cause of the unexpected error varies greatly. Since your code does not seem to contain any issue on its own, it would be best to have our support team have a look into this. Please file a case or let me know if you need assistance in creating one. Thank you!
-
Hello @Mike Begalle, Were you able to check the Map/Reduce Status Page? Let me know if you still need assistance. Thanks!
-
Hello @Dext3r, Let me know if you still need assistance. Thanks!
-
Hello @Bart Jonk, As of now, OFFSET and LIMIT are still not supported but a suggested workaround aside from using TOP would be to use something like: SELECT * FROM TRANSACTIONS WHERE RowNum >= 1 AND RowNum < 100 ORDER BY RowNum I hope this helps! If you find this reply to your question useful, others might as well. By…
-
I used a scheduled script for this, @Vernita. 😊
-
Hello @Gab JS, Good day and thank you for posting this new thread! Hello everyone! We'd greatly appreciate your support in this matter. Your willingness to assist a fellow member doesn't go unnoticed and is sincerely valued.
-
Hello @Jovan, Thank you for posting in the NetSuite Support Community! Hello everyone! Your expertise and knowledge are greatly appreciated, and we ask that you kindly offer your support. Your participation and willingness to assist a fellow member are sincerely appreciated.
-
Hello @Vernita, Yes, it is scriptable. I verified it using this script: var recordIF = record.load({ id: 62, type: record.Type.ITEM_FULFILLMENT }); recordIF.setSublistValue({ sublistId: 'package', fieldId: 'packageweight', value: '1.1', line: 0 }); recordIF.save(); You can view the field IDs of the package sublist when you…
-
Hello @Mike Begalle, Good day! I'm Nicole and I'm with the SuiteCloud team. I suggest checking Customizations > Scripting > Map/Reduce Script Status then filter it by the date when the change occurred. I hope this helps! If you find this reply to your question useful, others might as well. By clicking the “Yes” button for…
-
Hello @Dext3r, You can simply add "&xml=t" to the end of the URL and it would show you the page in XML form. Just look for the appropriate sublist and it should show you the fields in it. I hope this helps!
-
Hello @User_V5KBL, Good day and thank you for posting this new thread! Hello everyone! Recognizing your expertise and knowledge, we kindly seek your support. Your active participation in aiding a fellow member is genuinely appreciated.
-
Thanks for providing an answer to this, @Angela Bayliss!
-
Okay. Thank you!
-
Hello @Kaden B, Following up on this in case you missed my previous comment. Thank you!
-
Hello @Laura Giuffre, Were you able to get it to work?
-
Hello @Kaden B, Can you add a line with log.debug("test","postSourcing initiated"); above the var currentRecord = context.currentRecord;? This is just to check if it is initiated at all.
-
Hi @Jeff Perotti, Good day and thank you for posting this new thread! Hello everyone! We'd greatly appreciate your support in this matter. Your willingness to assist a fellow member doesn't go unnoticed and is sincerely valued.
-
Hello @Laura Giuffre, Good day! You can create the certificate by downloading OpenSSL Application and running the sample code from the documentation from there. As for the signature, you have to include the following headers in your request:
-
Hello @Andri2, Let's hear from some of our fellow community members about their experience. Hi @Tigran Shahnazaryan @Brian Stisser @Tiru Chembeti @GauravAgrawal @Miguel Ariza - Sol4IT @John Griffin @Dinesh Babu Gadhamsetty, what do you think?
-
Hello @Gab JS, Thank you for posting in the NetSuite Support Community! Hello everyone! Your expertise and knowledge are greatly appreciated, and we ask that you kindly offer your support. Your participation and willingness to assist a fellow member are sincerely appreciated.
-
Hello @Kaden B, May I know how exactly is the script not working? Do you encounter any error message?
-
Alrighty! I hope this gets resolved soon.
-
Hello @Bart Jonk, Good day! This is a gentle follow up to my previous comment. Let me know if you still need assistance. Thank you!
-
Hi @Laura Giuffre, Did the documentation give you the expected results?
-
Hello @JPrice, How did it go? 😊
-
Hi @Thomas UPF, Do you still need help regarding this concern?
-
Happy to help! It was mentioned in The Scripted Records Page but it's easy to miss with all the information in the article. 😅 If you find this reply to your question useful, others might as well. By clicking the “Yes” button for “Did this answer the question?” below, you’ll be able to help the community members who might…
-
Hi @Jason_Moore, If you are using client scripts, we have a maximum limit of 10 client scripts per record type. Scripts deployed beyond will not be triggered. To check which ones are expected to work, you can head to Customization / Scripting / Scripted Records. I hope this helps! If you find this reply to your question…
-
Hello @JPrice, It is expected. The N/ui/message module only works for client scripts. You can bypass this with a similar approach as the sample code in SuiteAnswers: Pass URL from a User Event Script to a Client Script via Button Click In this sample, a User Event accessed the Client Script formObj.clientScriptModulePath.