プロフィール
On Friday, October 10, 2025, at 8:00 PM Pacific Time, our Case Management System will undergo a scheduled maintenance for approximately 4 hours. During this time, case creation via SuiteAnswers will be unavailable and inbound calls will be routed to Customer Service.
Share Your SuiteWorld Experience & Earn a Special Badge!
コメント
-
Hello @Meherin, Good day and thank you for posting this new thread! Hello everyone! We'd greatly appreciate your support in this matter.
-
Hello @Vernita, That's correct. the client script's saveRecord function fires when saving the record. It is very commonly used for final checks like yours. You can do something like: if(subsidiaryValue === 'XXX'){ alert('Please choose another subsidiary'); return false; } I hope this helps! If you find this reply to your…
-
Hello @MTL_MIA, 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.
-
Hello @Gia My "Mei" Luc, Thank you for your question. I could not find a documentation nor related cases filed that specifies the number of values present in a custom segment before they encountered performance issues. I think it would be best to ask our fellow community members if they have any ideas. Tagging here some of…
-
Hello @User_XOL0X, Good day! This is expected. The ability to do inline editing for custom sublists from saved searches is currently filed as an enhancement request under Enh# 131256 Direct List Editing: Please allow DLE on sublist view. To support this Enhancement, you can cast your vote on the SuiteIdeas page by…
-
Hello @Wei Tat, I'm circling back to ensure you saw my previous communication. Should you require any additional support, please don't hesitate to contact us.
-
Hello @Dwight Schrute, Good day and thank you for posting this new thread! Hello everyone! We'd greatly appreciate your support in this matter.
-
Hello @Wei Tat, REST API currently does not have a native way to do it. But it could be possible with SOAP and RESTlets. For RESTlets, you will need to use the file.create() function. You can upload content via POST call, the content needs to be encoded as Base64, after this you can save the file in the File Cabinet.…
-
Hi @User_JPTT1, I'm circling back to ensure you saw my previous communication. Should you require any additional support, please don't hesitate to contact us.
-
Hi @User_ZBIQA, I'm touching base to confirm that you didn't miss my previous message. If you find yourself in need of further assistance, please don't hesitate to get in touch.
-
Hello @User_JPTT1, I'm just checking in to make sure you didn't overlook my prior message. If there's anything else we can do to assist you, please feel free to reach out.
-
Hello @Paul Salkeld, Just a quick follow-up to ensure you didn't overlook my earlier message. If there's anything more, please don't hesitate to inform us. Appreciate it!
-
Hello @HertsChris, 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.
-
Hi @Buckeye1497, 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.
-
Hello @eleran, Good day and thank you for posting this new thread! Hello everyone! We'd greatly appreciate your support in this matter.
-
Hi @Paul Salkeld, Apologies for the delay. I was able to link a User Event and a Client Script successfully using this script: Client Script /** * @NApiVersion 2.x * @NScriptType ClientScript * @NModuleScope SameAccount */ define(["N/record","N/email"], function(record,email) { /** * Function to be executed after page is…
-
Hi @User_JPTT1, Upon checking, the User Notes record used to be a Beta record in REST but is now pulled out in the NetSuite version 2024.1. There is no guarantee if this feature will be available again in the future. We apologize for this limitation. But for your reference, a simple call like this used to work: POST…
-
Hi @User_ZBIQA, Can you please check the permissions assigned to the role you're using for your integration? (Navigate to Setup > Users/Roles > Manage Roles) Here are some of the permissions I have in my test role that can view custom item fields in the item table. I hope this helps! If you find this reply to your question…
-
Hello @User_JPTT1 The ability to link standalone vendor bills to purchase orders is currently tagged as an Enhancement under 97075 Bills>Enter bills manually and link them to purchase orders. Its current status is "Future Enhancement", therefore it could be updated on any NetSuite release in the future. The ability to link…
-
Hello @User_JPTT1, It should be enclosed in an "items" tag. Here is a sample data that I confirmed to work: { "entity": 315, "expense": { "items": [{ "account" : 42, "amount" : 100 }] } } 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…
-
Hello @Ivan Babiichuk, Good day. Per checking similar cases raised with NetSuite Support, the Last Inventory Count Date is not supposed to be modifiable via Script and even if you are able to modify it, it could be subject to change and stop working anytime. In this case, you will be advised to use a workaround which would…
-
Hello @User_BMXRG, Good day and thank you for posting this new thread! Hello everyone! We'd greatly appreciate your support in this matter.
-
Hello @Dext3r, The parseFloat(1) sets the value of the adjustqtyby to 1. the parseFloat() method ensures it is setting a number. More info on parseFloat() can be found here (not official NetSuite documentation): rec.setCurrentSublistValue({ sublistId: 'inventory', fieldId: 'adjustqtyby', value: parseFloat(1) }); Per my…
-
Hello @User_ZBIQA, Is this happening to all custom fields or only to a specific field?
-
Hello @Dext3r, This is possible with scripting. You can use the code we worked with in the discussion thread below as your reference. 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, you’ll be able to help the…
-
Hello @Ken Davies, I'm sorry to hear that. This is the only workaround I could think of right now. Seems like it would ultimately come down to scripting.
-
Hi @Benjamin Paul - USA, This is expected behavior because purchase orders are considered expenses.
-
Hello @Ken Davies, The field type I used is a free-form text. Long text won't work on the Saved Search. is it still feasible for you to change it?
-
Hello @Ken Davies, Glad to hear you found it. May I know if it is working now?
-
Hi @Ken Davies, Can you provide a screenshot of the configuration of your custom body field for custbody17 so that I can replicate it on my account? As for the created from field, here is how I was able to get the Create From : Internal ID.