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.
Celebrate Your 2025 Community Recap & Achievements!
We’re excited to announce that the 2025 Community Recap is now available! This special recap highlights the amazing contributions and achievements of our members over the year and celebrates the collective success of our community.
Check your personalized recap to see the impact you made in 2025 and how your efforts helped shape our community’s growth and success.
View Your 2025 Community Recap
Thank you to everyone for your passion, collaboration, and support. Here’s to building an even stronger community together in the year ahead!
We’re excited to announce that the 2025 Community Recap is now available! This special recap highlights the amazing contributions and achievements of our members over the year and celebrates the collective success of our community.
Check your personalized recap to see the impact you made in 2025 and how your efforts helped shape our community’s growth and success.
View Your 2025 Community Recap
Thank you to everyone for your passion, collaboration, and support. Here’s to building an even stronger community together in the year ahead!
Please note that on Friday, January 9, 2026, at 8:00 PM Pacific time, our Case Management System will undergo a scheduled maintenance for approximately 60 minutes. During this time, case creation via SuiteAnswers will be unavailable and inbound calls will be routed to Customer Service.
Comments
-
Thanks! I am getting the following error: org.mozilla.javascript.EcmaError: TypeError: Cannot find function setValueInPage in object Mon Nov 13 2023 06:35:33 GMT-0800 (PST). (/SuiteBundles/Bundle 490515/src/Restlets/Custom Restlets/mobile_postlastlotcode.js#22) I don't need to set up an Input/Output parameter on the…
-
I get: Syntax error: missing } after function body
-
I am approaching this issue differently and trying to directly set the value in the mobile page. However, I have been unsuccessful. See code below. Can you please take a look and tell me what I am doing wrong? /** * @NApiVersion 2.x * @NScriptType Restlet * @NModuleScope SameAccount */ define([ 'N/record','N/format' ],…
-
I checked the execution log. It does not have a record Do I need to use: getValueFromPage() setRecordInState() In order to store the data in the mobile state?
-
/** * @NApiVersion 2.x * @NScriptType restlet * @NModuleScope SameAccount */ define(['N/record'], (record) => { const post = (requestBody) => { var recType = requestBody.recordType; var recId = requestBody.recordId; if (recType && recId) { var testRec = record.load({ type: recType, id: recId }); // Set the custom column…
-
Thoughts on mobile element/state API?
-
I made the changes and double checked code but it is still not working. Am I using the correct function to work with the mobile page element data? As per suiteanswers: https://suiteanswers.custhelp.com/app/answers/detail/a_id/102798 https://suiteanswers.custhelp.com/app/answers/detail/a_id/102800/loc/en_US Thanks for your…
-
I would like the restlet to store data from the custom column so I can use the state path to populate this lot code field by default, etc
-
Attached are screenshots of my current setup and app
-
Is there a different way of finding state path of custom columns?
-
I got it to work by changing to NApiVersion 2.1 but its not saving in state path...so, I still don't know what is going on.
-
Below is edited. When I try to upload the script file I get the following error: Fail to evaluate script: {"type":"error.SuiteScriptModuleLoaderError","name":"UNEXPECTED_ERROR","message":"syntax error (SS_SCRIPT_FOR_METADATA#5)","stack":[]} /** * @NApiVersion 2.x * @NScriptType Restlet */ define(['N/record'], (record) => {…
-
/** * @NApiVersion 2.x * @NScriptType Restlet */ define(['N/record'], (record) => { const post = (requestBody) => { var recType = requestBody.recordType; var recId = requestBody.recordId; if (recType && recId) { var testRec = record.load({ type: recType, id: recId }); // Set the custom column value to the custom column you…
-
Here is what I have so far. What am I missing? It isn't working, etc. /** * @NApiVersion 2.x * @NScriptType Restlet */ const post = (requestBody) => { var recType = requestBody.recordType; var recId = requestBody.recordId; if (recType && recId) { var testRec = record.load({ type: recType, id: recId }); // Set the custom…