My Stuff
Nominate Your Peers for NetSuite Support Community's Choice of the Quarter! Submit your nomination today.
Intelligent Payment Automation version 1.0.3 is now available in the SuiteApp Marketplace. The SuiteApp, powered by BILL, lets you automate payments, manage vendor details, and bank account information within NetSuite. Learn more
No Limits. Just possibilities.
Join us for complimentary one-day events around the world and step into a future fueled by AI and limitless potential. Explore new breakthroughs, sharpen your skills, and connect with experts who are shaping what’s next. Experience bold keynotes, interactive learning, and connections that span the global NetSuite community. Discover what's next at SuiteConnect Tour 2026.
Join us for complimentary one-day events around the world and step into a future fueled by AI and limitless potential. Explore new breakthroughs, sharpen your skills, and connect with experts who are shaping what’s next. Experience bold keynotes, interactive learning, and connections that span the global NetSuite community. Discover what's next at SuiteConnect Tour 2026.
Comments
-
This is what I have to update this custom line field, but it's not being populated by anything. /** * @NApiVersion 2.x * @NScriptType UserEventScript */ define(['N/record'], function(record) { function afterSubmit(context) { var salesOrderRecord = context.newRecord; var recordId = context.newRecord.id; var objRecord =…
-
Do you know coding-wise, how would I best go about doing that? I know the lines have an Order Line or Line ID I can probably use
-
This works beautifully! I want to modify it slightly. How can I make it only work when the "createdfrom" record type is a Sales Order? Thank you for all your help!!
-
I implemented it, but it's returning the error "cannot read properties of (reading 'get_value')". the following is my code. Also, how do I include an If statement that only makes the script run if the "createdfrom" record is Sales Order type and not empty? /** *@NApiVersion 2.x *@NScriptType ClientScript *@NModuleScope…