megaphone
Update your Profile with your Support type to get your Support Type badge.
Nominate Your Peers for NetSuite Support Community's Choice of the Quarter! Submit your nomination today.
Stay in the know of how NetSuite can help grow your business with our guides, webinars, and events. Subscribe Here
What Topic Should We Cover Next? Your idea could be our next feature—drop your suggestion now!
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. Discover what's next at SuiteConnect Tour 2026.
Try Intelligent Payment Automation – Fee Free For Your First Month For more information, visit this thread.
New AI Community Guidelines. Please review and follow them to ensure AI use stays safe, accurate, and compliant.
Expand your NetSuite knowledge by joining our Ask A Guru Live sessions. RSVP on this event now.
Don't miss out on our Question of the Week! You only have until tomorrow, April 2, 2026, 2:00PM ET to comment your answers.

My Stuff

New AI Community Guidelines. Please review and follow them to ensure AI use stays safe, accurate, and compliant.

3955398 Newbie

Comments

  • SuiteFlow is a graphical implementation of SuiteScript and is a powerful tool for the non-programmer to implement some kind of customization without actually having to know how to write code. As the only official NetSuite admin for a decent sized company and the only one that knows how to write code, I find it helpful to…
  • This might be a silly question but did you verify that the "Make Inventory Available" check box is checked for the location that your inventory is in? ~nick
  • Hello ialan, I am trying to do something similar. What tags did you use to get this to work? Thanks, Nick
  • Hey JocelynM, Did you ever find a solution for this. I currently have the same question. Thanks, Nicholas M. Schultz Feeney Wireless
  • I don't see a way around it either. I have decided to go with a free form text field on the custom record to track the serial number and we are beginning to talk about doing away with the use of serial numbers in NetSuite altogether. Using NetSuite's serial number system seems to be hurting us more than helping us right…
  • Peter, My company is heavy into manufacturing with a need for tracking the 1 to 1 relationship between Assemblies and Components (for support purposes) after the initial assembly build completion. Through a combination of SuiteScript, SuiteFlows, SuiteTalk, and custom records, I can create a solution to fit our needs.…
  • Anyone here find a solution for this? Seems like this should be basic stuff for NetSuite since they already provide the functionality in other places such as Cases and Transactions. Thanks! ~n
  • Has anyone made any progress on this. Its almost 6 years later and I am trying to do this same thing while still running into the same issues. Any help or insights would be appreciated. Thanks! ~n
  • I don't feel as though I can do any more effective troubleshooting without seeing your request sent and response received. There are many ways to get your requests and responses but I found the easiest and most non-technical way to view them is as I stated previously: If you don't receive any information after performing a…
  • There must have been some kind of miscommunication because I still have not received your SOAP request and response. Did you provide me those in a private message? If so, can you please resend?
  • What is the response you receive? Can you paste it here? If you don't receive any information after performing a var_dump of your response then you can view your request and response through the UI at Setup > Integration > Web Services Usage Log. Also, what version of the toolkit are you using? ~nick
  • What version of the toolkit are you using? I believe this line ... [PHP]$contactSearch->setFields(array("recordType" => array("operator" => "contains", "searchValue" => 'invoice')));[/PHP] should be written this way ... [PHP]$contactSearch->setFields(array("type" => array("operator" => "anyOf", "searchValue" =>…
  • What version of the PHPToolkit are you using? Can you post a copy of your result so we can see the messages you are getting? For 2013 toolkit your code could look like this: [PHP]$tsb = new TransactionSearchBasic(); $tsb->type = new SearchEnumMultiSelectCustomField(); $tsb->type->operator = 'anyOf'; $tsb->type->searchValue…
  • I didn't have any employees reporting troubles with NetSuite. Did any one on the west coast (United States) experience these outages. Most of the posts I see here are from outside the US. I really just need to know if I have to manually verify that scripts and workflows were working in our account during this time or if I…
  • You can find more information about the schema - field id's, correct syntax, search operators, etc. - by going to https://system.netsuite.com/help/helpcenter/en_US/SchemaBrowser/indexv2013_2_0.html and viewing the online schema browser. The above link is for the 2013.2 release. ~nick
  • Hey Guys, Did anything ever come of this. I am currently having the exact same issue, without a webstore, where I have 10 items, 11 sales orders are created, and all 11 sales orders say committed with no backorder. The last or newest order is not fulfillable but still displays incorrect information.
  • I am not aware of any straight forward way to do this. I cannot find a nice and easy transaction field you can choose when creating your email template nor a CRMSDK tag you can insert. Here's the 2 options I can think of. 1. Create a custom field on the sales order that is populated with the PO# once its created. Then pull…