Discussions
Check out Oracle NetSuite upcoming events and conferences here
Now is the time to ask your NetSuite-savvy friends and colleagues to join the NetSuite Support Community! Refer now! Click here to watch and learn more!
Update your Profile with your Support type to get your Support Type badge.
Expand your NetSuite knowledge by joining our Ask A Guru Live sessions. RSVP on this event now.
Make Your Voice Heard: What Tech & ERP Topics Should We Explore in our Next Webinar?? We’re all ears! Vote now, and the poll runs until January. Poll for ERP | Poll for Tech.
Our service partner for bank feeds integration in U.S. and Canada will undergo four (4) hours of planned maintenance on December 7 - 8, 2024.
Please be advised that our authorized Account Integration Service Provider for the NetSuite Bank Feeds SuiteApp will undergo approximately four hours planned outage. Standard maintenance will take place to perform a database upgrade.
The schedule of the planned outage is on Saturday, 7 December 2024, from 10:00 p.m. Pacific Time to 2:00 a.m. Pacific Time, Sunday, 8 December 2024.
During the maintenance window, all connections and import requests to your financial institutions in the United States and Canada through the Bank Feeds SuiteApp will be unavailable. If you try to connect a new U.S. or Canada financial institution to NetSuite or manually initiate an import request, you will receive an error message.
To view the most recent bank feeds maintenance schedule, see Bank Feeds SuiteApp Maintenance Schedule, SuiteAnswers ID 94347.
Please be advised that our authorized Account Integration Service Provider for the NetSuite Bank Feeds SuiteApp will undergo approximately four hours planned outage. Standard maintenance will take place to perform a database upgrade.
The schedule of the planned outage is on Saturday, 7 December 2024, from 10:00 p.m. Pacific Time to 2:00 a.m. Pacific Time, Sunday, 8 December 2024.
During the maintenance window, all connections and import requests to your financial institutions in the United States and Canada through the Bank Feeds SuiteApp will be unavailable. If you try to connect a new U.S. or Canada financial institution to NetSuite or manually initiate an import request, you will receive an error message.
To view the most recent bank feeds maintenance schedule, see Bank Feeds SuiteApp Maintenance Schedule, SuiteAnswers ID 94347.
NetSuite Support Community Holiday Schedule
It’s that time of the year again! As we embrace the holiday cheer, we want to share an important announcement regarding our holiday schedule. Our dedicated team of NetSuite Support Gurus will be taking a short break to recharge during the holidays, from December 24, 2024, to January 1, 2025. We’ll be back in full swing, ready to assist you on January 2nd. During the break, feel free to explore the wealth of NetSuite resources on our platform.
As we celebrate the season's joys, we are incredibly grateful for your ongoing support and engagement. Have a fantastic holiday break, and let's gear up for an incredible 2025!
It’s that time of the year again! As we embrace the holiday cheer, we want to share an important announcement regarding our holiday schedule. Our dedicated team of NetSuite Support Gurus will be taking a short break to recharge during the holidays, from December 24, 2024, to January 1, 2025. We’ll be back in full swing, ready to assist you on January 2nd. During the break, feel free to explore the wealth of NetSuite resources on our platform.
As we celebrate the season's joys, we are incredibly grateful for your ongoing support and engagement. Have a fantastic holiday break, and let's gear up for an incredible 2025!
Uncover the power of data with the Analytics Hub —your ultimate guide to mastering NetSuite Saved Searches and Reports. Simplify the complex and unlock your organization's true potential. Dive into the Analytics Hub now and soar to new heights!
Why is inventory location field not being set?
Hi There
I have cross subsidiary fulfilment enabled in NetSuite.
I am trying to set the field value for the item sublist field id: inventorylocation
However, it cannot be set. No error is returned but this field remains unchanged while all the other fields in the item sublist can be set using the same client script.
The script
/** * @NApiVersion 2.x * @NScriptType ClientScript */ // Define the dependencies required for the client script define(['N/currentRecord'], function (currentRecord) { // Function triggered when a field is changed function fieldChanged(context) { // Get the current record object var currentRecordObj = currentRecord.get(); log.debug('currentRecordObj',currentRecordObj) // Get the sublist ID that triggered the event var sublistId = context.sublistId; // Get the ID of the field that triggered the event var fieldId = context.fieldId; // Log the sublist ID and field ID for debugging log.debug({ title: 'Sublist ID', details: sublistId }); console.log(sublistId) log.debug({ title: 'Field ID', details: fieldId }); if (fieldId == 'item') { // Get the line number of the currently selected line in the 'item' sublist var lineNumber = currentRecordObj.getCurrentSublistIndex({ sublistId: 'item' }); log.debug('lineNumber', lineNumber); console.log(lineNumber) Set the value of the 'itemlocation'
Tagged:
0