Minha área
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!
Comentários
-
Hello @User_K51C7, This can be done by either a workflow or a script, depending on the field. Can you share what field you'd like to reference? If it is a custom field, please provide a screenshot of the custom field page that shows its configurations.
-
Hello @Eunice_Rep, 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 @User_K51C7, Good day and thank you for posting this new thread! Hello everyone! We'd greatly appreciate your support in this matter.
-
Hello @Philly_NS, Understood. I can't find any other related case/issue/documentation about this so it would be best to wait and see with support.
-
Hello @User_K51C7, Can you try this formula instead? CONCAT({customfieldid1}|| ' ', {customfieldid2}) I tested this on my end and it kind of worked. However, I noticed that it only included the first entry of the multi-select field. Reference: Ability to Concatenate Two Field Values And Assign the New Value to Another…
-
No worries! Thank you for letting me know. I looked into the case you created. You mentioned that the "Commit" field is also missing from the NetSuite UI. I found a similar case raised last month where the root cause was that the Supply Allocation Feature was enabled. Might be worth checking out. 😊
-
Hello @Philly_NS, I tested this but could not replicate the error on my end. It would be best to reach out to support so that they can check further. It would be important to let them know if there were any recent changes in your account that could have caused this error. i.e. 2024.1 upgrade. If you need assistance in…
-
Hello @Martha Hakes, Good day and thank you for posting this new thread! Can you share the error messages you receive? Hello everyone! We'd greatly appreciate your support in this matter.
-
Hi @User_EIB67, 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 @User_L8T63, Good day and thank you for posting this new thread! Hello everyone! We'd greatly appreciate your support in this matter.
-
Hello @Dext3r, 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. If not, please let us know by clicking the “Yes” button for “Did this answer the question?” below, you’ll be able to help the community members who might have a similar…
-
Hi @Ben H, I'm circling back to ensure you saw my previous communication. Should you require any additional support, please don't hesitate to contact us. If not, please let us know by clicking the “Yes” button for “Did this answer the question?” below, you’ll be able to help the community members who might have a similar…
-
Hello @ABDUL HANNAN, I wanted to check in to make sure you didn't miss my previous message. If you require any more help, please don't hesitate to reach out. If not, please let us know by clicking the “Yes” button for “Did this answer the question?” below, you’ll be able to help the community members who might have a…
-
Hi @Philly_NS, May I know what record type this is?
-
Hi @Philly_NS, Good day and thank you for posting this new thread! Hello everyone! We'd greatly appreciate your support in this matter.
-
Hello @User_6YNLG, 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 @ImeldaSanchez, Good day and thank you for posting this new thread! Hello everyone! We'd greatly appreciate your support in this matter.
-
Hello @Dext3r, Just to confirm, yes, inventorydetail.inventorynumber is the right filter to use. I was able to verify this on my end. Here is a sample saved search that works on my end. var transactionSearchObj = search.create({ type: "transaction", filters: [ ["inventorydetail.inventorynumber","noneof","@NONE@"] ],…
-
Hello @ABDUL HANNAN, Dissolving bundles would keep the bundle components in your production account but would no longer be associated with the bundle. For more information, you can visit SuiteAnswers: Dissolving Bundles Created in Sandbox. I hope this helps! If you find this reply to your question useful, others might as…
-
Hi @Ben H, Understood. I did a little digging and found that customers who previously reported this behavior found the cause to be: The one in the script must match the one used in the template. Columns are not declared in the template/XML part of the script. I don't have the visibility over your saved search but since you…
-
Hello @User_K51C7, Can you please confirm the field types of the custom fields?
-
Hi @oliver zheng, 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 @User_DL1Z1, I wanted to check in to make sure you didn't miss my previous message. If you require any more help, please don't hesitate to reach out.
-
Hello @William5-Oracle, Following up on this thread in case you missed my previous comment. Thanks!
-
We are now closing today’s session. We hope to see you in the next #AskAGuruLive! I hope the tips I provided will be helpful for you. 😊 Be sure to follow the AskAGuruLive tag for updates. To help us improve this program, feel free to share your feedback with us.
-
Tip #3: There are three ways to create Custom Buttons for standard records in NetSuite: Via User Event Script - Users can use Form.addButton(options) to add buttons. This works for Suitelet Scripts and beforeLoad function of User Event Scripts. Via Client Script Record - the Buttons sublist is available in the Client…
-
Tip #2: Are you troubleshooting a client script? Add breakpoints by adding debugger; in your client script and opening the console of the target record's page.
-
Tip #1: Did you know that you can add a link to your Suitelet in the navigational paths? Open your Suitelet Deployment record by going to Customizations > Scripting > Scripts > Your Suitelet Record 2. Under Deployments Tab > Click the Deployment Record 3. Click Edit on the Script Deployment Record 4. Under the Links…
-
Hello @User_DL1Z1, You can use record.load to load email templates. Samples: Email Template Use Email Template and Edit Value Using Keywords for Script Send Email Body I believe it is not possible to get the advanced PDF template via script but you can print PDFs with XMLs. A sample is provided in SuiteAnswers: N/render…
-
Hi @KennyT, Here's a sample code from another thread. I added the setValue for the entity field, which is the customer field in the UI. var rec = record.create({ type: record.Type.SALES_ORDER, isDynamic: true }); rec.setValue({ fieldId: 'entity', value: '111' }) rec.selectNewLine({ sublistId: 'item' });…